Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer Ownersh... | 21009283 | 511 days ago | IN | 0 ETH | 0.00036577 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
HypernativeModule
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
import {IDiamondCut} from "./IDiamondCut.sol";
import {IDiamondLoupe} from "./IDiamondLoupe.sol";
interface ISafe {
function execTransactionFromModule(address to, uint256 value, bytes memory data, uint8 operation) external returns (bool success);
}
contract HypernativeModule is Ownable {
address public updater;
address public protectedContractAddress;
ISafe internal safe;
constructor(address multisig, address _protectedContractsAddress, address _updater) Ownable(msg.sender) {
safe = ISafe(multisig);
updater = _updater;
protectedContractAddress = _protectedContractsAddress;
}
modifier onlyUpdater() {
require(msg.sender == updater, "HypernativeModule: Only Updater");
_;
}
modifier onlyOwnerOrUpdater() {
require(msg.sender == updater || msg.sender == owner(), "HypernativeModule: Only Updater or Owner");
_;
}
function removeAllBeanstalkFunctions() public onlyOwner {
IDiamondLoupe.Facet[] memory facets = IDiamondLoupe(protectedContractAddress).facets();
uint256 counter;
uint256 facetsLength = facets.length;
bytes4[] memory _functionSelectors;
bytes4[] memory generatedFunctionSelectors;
for (uint256 i; i < facetsLength; ++i) {
_functionSelectors = facets[i].functionSelectors;
assembly {
mstore(generatedFunctionSelectors, add(mload(generatedFunctionSelectors), mload(_functionSelectors)))
}
for (uint256 j; j < _functionSelectors.length; ++j) {
if (_functionSelectors[j] == IDiamondCut.diamondCut.selector ||
_functionSelectors[j] == IDiamondLoupe.facetFunctionSelectors.selector ||
_functionSelectors[j] == IDiamondLoupe.facetAddresses.selector ||
_functionSelectors[j] == IDiamondLoupe.facetAddress.selector ||
_functionSelectors[j] == IDiamondLoupe.facets.selector
) {
assembly {
mstore(generatedFunctionSelectors, sub(mload(generatedFunctionSelectors), 1))
}
continue;
}
generatedFunctionSelectors[counter++] = _functionSelectors[j];
}
}
IDiamondCut.FacetCut[] memory diamondCutPayload = new IDiamondCut.FacetCut[](1);
diamondCutPayload[0] = IDiamondCut.FacetCut({
facetAddress: address(0),
action: IDiamondCut.FacetCutAction.Remove,
functionSelectors: generatedFunctionSelectors
});
bytes memory encodedDiamondCutPayload = abi.encodeCall(IDiamondCut.diamondCut, (diamondCutPayload, address(0), bytes("")));
safe.execTransactionFromModule(protectedContractAddress, 0, encodedDiamondCutPayload, 0);
}
function updateMultisigAddress(address newMultisig) public onlyOwner {
safe = ISafe(newMultisig);
}
function replaceProtectedContract(address _protectedContractAddress) public onlyUpdater {
protectedContractAddress = _protectedContractAddress;
}
function changeUpdater(address _updater) public onlyOwnerOrUpdater {
updater = _updater;
}
function getMultisigAddress() public view returns (address) {
return address(safe);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /******************************************************************************\ * Author: Nick Mudge <[email protected]> (https://twitter.com/mudgen) * EIP-2535 Diamonds: https://eips.ethereum.org/EIPS/eip-2535 /******************************************************************************/ interface IDiamondCut { enum FacetCutAction {Add, Replace, Remove} // Add=0, Replace=1, Remove=2 struct FacetCut { address facetAddress; FacetCutAction action; bytes4[] functionSelectors; } /// @notice Add/replace/remove any number of functions and optionally execute /// a function with delegatecall /// @param _diamondCut Contains the facet addresses and function selectors /// @param _init The address of the contract or facet to execute _calldata /// @param _calldata A function call, including function selector and arguments /// _calldata is executed with delegatecall on _init function diamondCut( FacetCut[] calldata _diamondCut, address _init, bytes calldata _calldata ) external; event DiamondCut(FacetCut[] _diamondCut, address _init, bytes _calldata); }
// SPDX-License-Identifier: MIT
pragma experimental ABIEncoderV2;
pragma solidity ^0.8.2;
// A loupe is a small magnifying glass used to look at diamonds.
// These functions look at diamonds
interface IDiamondLoupe {
/// These functions are expected to be called frequently
/// by tools.
struct Facet {
address facetAddress;
bytes4[] functionSelectors;
}
/// @notice Gets all facet addresses and their four byte function selectors.
/// @return facets_ Facet
function facets() external view returns (Facet[] memory facets_);
/// @notice Gets all the function selectors supported by a specific facet.
/// @param _facet The facet address.
/// @return facetFunctionSelectors_
function facetFunctionSelectors(address _facet) external view returns (bytes4[] memory facetFunctionSelectors_);
/// @notice Get all the facet addresses used by a diamond.
/// @return facetAddresses_
function facetAddresses() external view returns (address[] memory facetAddresses_);
/// @notice Gets the facet that supports the given selector.
/// @dev If facet is not found return address(0).
/// @param _functionSelector The function selector.
/// @return facetAddress_ The facet address.
function facetAddress(bytes4 _functionSelector) external view returns (address facetAddress_);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"@safe/=lib/safe-contracts/contracts/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"safe-contracts/=lib/safe-contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": false,
"bytecodeHash": "ipfs",
"appendCBOR": true
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "paris",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"multisig","type":"address"},{"internalType":"address","name":"_protectedContractsAddress","type":"address"},{"internalType":"address","name":"_updater","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address","name":"_updater","type":"address"}],"name":"changeUpdater","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMultisigAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protectedContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllBeanstalkFunctions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_protectedContractAddress","type":"address"}],"name":"replaceProtectedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMultisig","type":"address"}],"name":"updateMultisigAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updater","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051610cd1380380610cd183398101604081905261002f9161010d565b338061005557604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b61005e816100a1565b50600380546001600160a01b039485166001600160a01b031991821617909155600180549285169282169290921790915560028054929093169116179055610150565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80516001600160a01b038116811461010857600080fd5b919050565b60008060006060848603121561012257600080fd5b61012b846100f1565b9250610139602085016100f1565b9150610147604085016100f1565b90509250925092565b610b728061015f6000396000f3fe608060405234801561001057600080fd5b506004361061009e5760003560e01c8063921956ac11610066578063921956ac14610104578063d7c168b714610117578063df034cd014610128578063f03050d81461013b578063f2fde38b1461014e57600080fd5b80630567ff42146100a3578063326220bf146100b85780634aba6194146100cb578063715018a6146100d35780638da5cb5b146100db575b600080fd5b6100b66100b1366004610733565b610161565b005b6100b66100c6366004610733565b61018b565b6100b6610232565b6100b66105d3565b6000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b6100b6610112366004610733565b6105e7565b6003546001600160a01b03166100e8565b6001546100e8906001600160a01b031681565b6002546100e8906001600160a01b031681565b6100b661015c366004610733565b610663565b6101696106a1565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314806101ae57506000546001600160a01b031633145b6102105760405162461bcd60e51b815260206004820152602860248201527f48797065726e61746976654d6f64756c653a204f6e6c7920557064617465722060448201526737b91027bbb732b960c11b60648201526084015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61023a6106a1565b60025460408051637a0ed62760e01b815290516000926001600160a01b031691637a0ed62791600480830192869291908290030181865afa158015610283573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526102ab91908101906107eb565b8051909150600090606080835b83811015610473578581815181106102d2576102d2610959565b60200260200101516020015192508251825101825260005b835181101561046a5783516307e4c70760e21b9085908390811061031057610310610959565b60200260200101516001600160e01b031916148061035a575083516356fe50af60e11b9085908390811061034657610346610959565b60200260200101516001600160e01b031916145b80610391575083516314bbdacb60e21b9085908390811061037d5761037d610959565b60200260200101516001600160e01b031916145b806103c8575083516366ffd66360e11b908590839081106103b4576103b4610959565b60200260200101516001600160e01b031916145b806103ff57508351637a0ed62760e01b908590839081106103eb576103eb610959565b60200260200101516001600160e01b031916145b156104105760018351038352610462565b83818151811061042257610422610959565b60200260200101518387806104369061096f565b98508151811061044857610448610959565b6001600160e01b0319909216602092830291909101909101525b6001016102ea565b506001016102b8565b50604080516001808252818301909252600091816020015b6040805160608082018352600080835260208301529181019190915281526020019060019003908161048b57905050604080516060810190915260008152909150602081016002815260200183815250816000815181106104ee576104ee610959565b6020026020010181905250600081600060405180602001604052806000815250604051602401610520939291906109dc565b60408051601f198184030181529181526020820180516001600160e01b03166307e4c70760e21b179052600354600254915163468721a760e01b81529293506001600160a01b039081169263468721a79261058692169060009086908290600401610adf565b6020604051808303816000875af11580156105a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c99190610b1a565b5050505050505050565b6105db6106a1565b6105e560006106ce565b565b6001546001600160a01b031633146106415760405162461bcd60e51b815260206004820152601f60248201527f48797065726e61746976654d6f64756c653a204f6e6c792055706461746572006044820152606401610207565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61066b6106a1565b6001600160a01b03811661069557604051631e4fbdf760e01b815260006004820152602401610207565b61069e816106ce565b50565b6000546001600160a01b031633146105e55760405163118cdaa760e01b8152336004820152602401610207565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811461069e57600080fd5b60006020828403121561074557600080fd5b81356107508161071e565b9392505050565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561079057610790610757565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156107bf576107bf610757565b604052919050565b600067ffffffffffffffff8211156107e1576107e1610757565b5060051b60200190565b600060208083850312156107fe57600080fd5b825167ffffffffffffffff8082111561081657600080fd5b818501915085601f83011261082a57600080fd5b815161083d610838826107c7565b610796565b81815260059190911b8301840190848101908883111561085c57600080fd5b8585015b8381101561094c578051858111156108785760008081fd5b86016040818c03601f19018113156108905760008081fd5b61089861076d565b898301516108a58161071e565b815282820151888111156108b95760008081fd5b8084019350508c603f8401126108cf5760008081fd5b898301516108df610838826107c7565b81815260059190911b84018301908b8101908f8311156108ff5760008081fd5b948401945b8286101561093757855194506001600160e01b0319851685146109275760008081fd5b848252948c0194908c0190610904565b838d0152505085525050918601918601610860565b5098975050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161098f57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000815180845260005b818110156109bc576020818501810151868301820152016109a0565b506000602082860101526020601f19601f83011685010191505092915050565b60006060808301606084528087518083526080925060808601915060808160051b8701016020808b0160005b84811015610aaf57898403607f19018652815180516001600160a01b03168552838101518986019060038110610a4e57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b80831015610a9a5783516001600160e01b0319168252928601926001929092019190860190610a70565b50978501979550505090820190600101610a08565b50506001600160a01b038a16908801528681036040880152610ad18189610996565b9a9950505050505050505050565b60018060a01b0385168152836020820152608060408201526000610b066080830185610996565b905060ff8316606083015295945050505050565b600060208284031215610b2c57600080fd5b8151801515811461075057600080fdfea2646970667358221220b45244ae8b99143c4d1bb7cc6f08a9b9e10919dac452242b7150fc823eb2e9ef64736f6c63430008170033000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043000000000000000000000000c1e088fc1323b20bcbee9bd1b9fc9546db5624c5000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061009e5760003560e01c8063921956ac11610066578063921956ac14610104578063d7c168b714610117578063df034cd014610128578063f03050d81461013b578063f2fde38b1461014e57600080fd5b80630567ff42146100a3578063326220bf146100b85780634aba6194146100cb578063715018a6146100d35780638da5cb5b146100db575b600080fd5b6100b66100b1366004610733565b610161565b005b6100b66100c6366004610733565b61018b565b6100b6610232565b6100b66105d3565b6000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b6100b6610112366004610733565b6105e7565b6003546001600160a01b03166100e8565b6001546100e8906001600160a01b031681565b6002546100e8906001600160a01b031681565b6100b661015c366004610733565b610663565b6101696106a1565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001546001600160a01b03163314806101ae57506000546001600160a01b031633145b6102105760405162461bcd60e51b815260206004820152602860248201527f48797065726e61746976654d6f64756c653a204f6e6c7920557064617465722060448201526737b91027bbb732b960c11b60648201526084015b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b61023a6106a1565b60025460408051637a0ed62760e01b815290516000926001600160a01b031691637a0ed62791600480830192869291908290030181865afa158015610283573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526102ab91908101906107eb565b8051909150600090606080835b83811015610473578581815181106102d2576102d2610959565b60200260200101516020015192508251825101825260005b835181101561046a5783516307e4c70760e21b9085908390811061031057610310610959565b60200260200101516001600160e01b031916148061035a575083516356fe50af60e11b9085908390811061034657610346610959565b60200260200101516001600160e01b031916145b80610391575083516314bbdacb60e21b9085908390811061037d5761037d610959565b60200260200101516001600160e01b031916145b806103c8575083516366ffd66360e11b908590839081106103b4576103b4610959565b60200260200101516001600160e01b031916145b806103ff57508351637a0ed62760e01b908590839081106103eb576103eb610959565b60200260200101516001600160e01b031916145b156104105760018351038352610462565b83818151811061042257610422610959565b60200260200101518387806104369061096f565b98508151811061044857610448610959565b6001600160e01b0319909216602092830291909101909101525b6001016102ea565b506001016102b8565b50604080516001808252818301909252600091816020015b6040805160608082018352600080835260208301529181019190915281526020019060019003908161048b57905050604080516060810190915260008152909150602081016002815260200183815250816000815181106104ee576104ee610959565b6020026020010181905250600081600060405180602001604052806000815250604051602401610520939291906109dc565b60408051601f198184030181529181526020820180516001600160e01b03166307e4c70760e21b179052600354600254915163468721a760e01b81529293506001600160a01b039081169263468721a79261058692169060009086908290600401610adf565b6020604051808303816000875af11580156105a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c99190610b1a565b5050505050505050565b6105db6106a1565b6105e560006106ce565b565b6001546001600160a01b031633146106415760405162461bcd60e51b815260206004820152601f60248201527f48797065726e61746976654d6f64756c653a204f6e6c792055706461746572006044820152606401610207565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b61066b6106a1565b6001600160a01b03811661069557604051631e4fbdf760e01b815260006004820152602401610207565b61069e816106ce565b50565b6000546001600160a01b031633146105e55760405163118cdaa760e01b8152336004820152602401610207565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811461069e57600080fd5b60006020828403121561074557600080fd5b81356107508161071e565b9392505050565b634e487b7160e01b600052604160045260246000fd5b6040805190810167ffffffffffffffff8111828210171561079057610790610757565b60405290565b604051601f8201601f1916810167ffffffffffffffff811182821017156107bf576107bf610757565b604052919050565b600067ffffffffffffffff8211156107e1576107e1610757565b5060051b60200190565b600060208083850312156107fe57600080fd5b825167ffffffffffffffff8082111561081657600080fd5b818501915085601f83011261082a57600080fd5b815161083d610838826107c7565b610796565b81815260059190911b8301840190848101908883111561085c57600080fd5b8585015b8381101561094c578051858111156108785760008081fd5b86016040818c03601f19018113156108905760008081fd5b61089861076d565b898301516108a58161071e565b815282820151888111156108b95760008081fd5b8084019350508c603f8401126108cf5760008081fd5b898301516108df610838826107c7565b81815260059190911b84018301908b8101908f8311156108ff5760008081fd5b948401945b8286101561093757855194506001600160e01b0319851685146109275760008081fd5b848252948c0194908c0190610904565b838d0152505085525050918601918601610860565b5098975050505050505050565b634e487b7160e01b600052603260045260246000fd5b60006001820161098f57634e487b7160e01b600052601160045260246000fd5b5060010190565b6000815180845260005b818110156109bc576020818501810151868301820152016109a0565b506000602082860101526020601f19601f83011685010191505092915050565b60006060808301606084528087518083526080925060808601915060808160051b8701016020808b0160005b84811015610aaf57898403607f19018652815180516001600160a01b03168552838101518986019060038110610a4e57634e487b7160e01b600052602160045260246000fd5b868601526040918201519186018a905281519081905290840190600090898701905b80831015610a9a5783516001600160e01b0319168252928601926001929092019190860190610a70565b50978501979550505090820190600101610a08565b50506001600160a01b038a16908801528681036040880152610ad18189610996565b9a9950505050505050505050565b60018060a01b0385168152836020820152608060408201526000610b066080830185610996565b905060ff8316606083015295945050505050565b600060208284031215610b2c57600080fd5b8151801515811461075057600080fdfea2646970667358221220b45244ae8b99143c4d1bb7cc6f08a9b9e10919dac452242b7150fc823eb2e9ef64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043000000000000000000000000c1e088fc1323b20bcbee9bd1b9fc9546db5624c5000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043
-----Decoded View---------------
Arg [0] : multisig (address): 0xa9bA2C40b263843C04d344727b954A545c81D043
Arg [1] : _protectedContractsAddress (address): 0xC1E088fC1323b20BCBee9bd1B9fC9546db5624C5
Arg [2] : _updater (address): 0xa9bA2C40b263843C04d344727b954A545c81D043
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043
Arg [1] : 000000000000000000000000c1e088fc1323b20bcbee9bd1b9fc9546db5624c5
Arg [2] : 000000000000000000000000a9ba2c40b263843c04d344727b954a545c81d043
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.