Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5624 | 83 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
TransparentUpgradeableProxy
Compiler Version
v0.7.4+commit.3f05b770
ZkSolc Version
v1.3.13
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./UpgradeableProxy.sol"; /** * @dev This contract implements a proxy that is upgradeable by an admin. * * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector * clashing], which can potentially be used in an attack, this contract uses the * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two * things that go hand in hand: * * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if * that call matches one of the admin functions exposed by the proxy itself. * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the * implementation. If the admin tries to call a function on the implementation it will fail with an error that says * "admin cannot fallback to proxy target". * * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due * to sudden errors when trying to call a function from the proxy implementation. * * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy. */ contract TransparentUpgradeableProxy is UpgradeableProxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {UpgradeableProxy-constructor}. */ constructor(address _logic, address admin_, bytes memory _data) payable UpgradeableProxy(_logic, _data) { assert(_ADMIN_SLOT == bytes32(uint256(keccak256("eip1967.proxy.admin")) - 1)); _setAdmin(admin_); } /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 private constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _admin()) { _; } else { _fallback(); } } /** * @dev Returns the current admin. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { admin_ = _admin(); } /** * @dev Returns the current implementation. * * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) { implementation_ = _implementation(); } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. * * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}. */ function changeAdmin(address newAdmin) external virtual ifAdmin { require(newAdmin != address(0), "TransparentUpgradeableProxy: new admin is the zero address"); emit AdminChanged(_admin(), newAdmin); _setAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external virtual ifAdmin { _upgradeTo(newImplementation); } /** * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the * proxied contract. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}. */ function upgradeToAndCall(address newImplementation, bytes calldata data) external payable virtual ifAdmin { _upgradeTo(newImplementation); Address.functionDelegateCall(newImplementation, data); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address adm) { bytes32 slot = _ADMIN_SLOT; // solhint-disable-next-line no-inline-assembly assembly { adm := sload(slot) } } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { bytes32 slot = _ADMIN_SLOT; // solhint-disable-next-line no-inline-assembly assembly { sstore(slot, newAdmin) } } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _admin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./Proxy.sol"; import "../utils/Address.sol"; /** * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an * implementation address that can be changed. This address is stored in storage in the location specified by * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the * implementation behind the proxy. * * Upgradeability is only provided internally through {_upgradeTo}. For an externally upgradeable proxy see * {TransparentUpgradeableProxy}. */ contract UpgradeableProxy is Proxy { /** * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`. * * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded * function call, and allows initializating the storage of the proxy like a Solidity constructor. */ constructor(address _logic, bytes memory _data) payable { assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256("eip1967.proxy.implementation")) - 1)); _setImplementation(_logic); if(_data.length > 0) { Address.functionDelegateCall(_logic, _data); } } /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 private constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { bytes32 slot = _IMPLEMENTATION_SLOT; // solhint-disable-next-line no-inline-assembly assembly { impl := sload(slot) } } /** * @dev Upgrades the proxy to a new implementation. * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal virtual { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "UpgradeableProxy: new implementation is not a contract"); bytes32 slot = _IMPLEMENTATION_SLOT; // solhint-disable-next-line no-inline-assembly assembly { sstore(slot, newImplementation) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { // solhint-disable-next-line no-inline-assembly assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internall call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback () external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive () external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overriden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual { } }
{ "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "isSystem": false, "forceEvmla": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"address","name":"admin_","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"admin_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
3cda3351000000000000000000000000000000000000000000000000000000000000000101000181d313507329ccbfd9c9411e2866f62d529bbc5b9999549a28e10e0cd000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000b9f2d038150e296cdacf489813ce2bbe976a4c6200000000000000000000000076d539e3c8bc2a565d22de95b0671a963667c4ad00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x0004000000000002000600000000000200000000030100190000006003300270000001630430019700030000004103550002000000010355000001630030019d000100000000001f0000008001000039000000400010043f000000000100003100000001022001900000002d0000c13d000000040210008c000000a20000813d0000016e02000041000000000202041a0000000003000411000000000223013f0000016a02200198000000e50000c13d0000016b01000041000000800010043f0000002001000039000000840010043f0000004201000039000000a40010043f0000017c01000041000000c40010043f0000017b01000041000000e40010043f0000017a01000041000001040010043f0000016301000041000000400200043d0000012403200089000001630430009c0000000003018019000001630420009c000000000102401900000040011002100000006002300210000000000112019f0000058a0001043000000002020003670000001f0310018f00000005041002720000003a0000613d00000000050000190000000506500210000000000762034f000000000707043b000000800660003900000000007604350000000105500039000000000645004b000000320000413d000000000503004b000000490000613d0000000504400210000000000242034f00000003033002100000008004400039000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000008007100039000000400070043f000000600210008c0000041b0000413d000000a00600043d000000800a00043d000000c00300043d000001640230009c0000041b0000213d000000a002300039000000000472004b0000041b0000213d00000080033000390000000004030433000001640540009c0000041b0000213d0000000005240019000000000557004b0000041b0000413d000600000006001d000500000007001d0000000000470435000000a0091000390000000003030433000000000103004b0000000001090019000000800000613d000000000100001900000000049100190000000005210019000000000505043300000000005404350000002001100039000000000431004b000000650000413d00000000019300190000001f05300190000000800000613d0000010004000039000000010300003900000000025100490000002006500089000000001502043400000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000000740000213d0000000003300049000000000335016f0000000000320435000300000009001d000000400010043f000001650100004100000000001004390000000400a0044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000166011001c7000080020200003900040000000a001d0588057e0000040f00000004040000290000000102200190000000060a00002900000005020000290000041b0000613d000000000101043b000000000101004b000000ca0000613d0000016701000041000000000041041b0000000001020433000000000101004b000003770000c13d0000016e010000410000000000a1041b0000002001000039000001000010044300000120000004430000016f01000041000005890001042e0000000203000367000000000203043b000000e002200270000001700420009c000001210000c13d0000000001000416000000000101004b0000041b0000c13d0000000003000031000000240130008a000000210200008a000000000121004b0000041b0000213d0000016e01000041000000000101041a0000000002000411000000000412013f00000002010003670000000405100370000000000505043b0000016a055001970000016a04400198000002380000c13d00000165010000410000000000100439000600000005001d000000040050044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000166011001c700008002020000390588057e0000040f00000001022001900000041b0000613d000000000101043b000000000101004b000003620000c13d000000400100043d00000064021000390000017d03000041000000000032043500000044021000390000017e0300004100000000003204350000002402100039000000360300003900000000003204350000016b020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d000000000121004900000084011000390000016303000041000001630410009c0000000001038019000001630420009c000000000203801900000040022002100000006001100210000000000121019f0000058a0001043000000002030003670000001f0410018f0000016702000041000000000202041a0000000501100272000000f30000613d00000000050000190000000506500210000000000763034f000000000707043b00000000007604350000000105500039000000000615004b000000ec0000413d000000000504004b000001010000613d00000003044002100000000501100210000000000501043300000000054501cf000000000545022f000000000313034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000000010000310000000003000414000000040420008c000001c90000c13d000000030100036700000001020000310000001f0320018f0000000502200272000001120000613d00000000040000190000000505400210000000000651034f000000000606043b00000000006504350000000104400039000000000524004b0000010b0000413d000000000403004b000001f20000613d00000003033002100000000502200210000000000402043300000000043401cf000000000434022f000000000121034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000141019f0000000000120435000001f20000013d000001710420009c000001f80000c13d000000440210008a000000400400008a000000000242004b0000041b0000813d0000000402300370000000000202043b0000016a052001970000002402300370000000000202043b000001640420009c0000041b0000213d0000002407200039000000000417004b0000041b0000213d0000000402200039000000000223034f000000000602043b000001640260009c0000041b0000213d0000000002760019000000000212004b0000041b0000213d0000016e02000041000000000202041a0000000004000411000000000224013f0000016a02200198000003b20000c13d00000165010000410000000000100439000000040050044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000166011001c70000800202000039000600000005001d000500000006001d000400000007001d0588057e0000040f000000060500002900000001022001900000041b0000613d000000000101043b000000000101004b000000ca0000613d0000016701000041000000000051041b000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000175011001c70000800d0200003900000002030000390000017904000041058805790000040f00000004030000290000000509000029000000060700002900000001012001900000041b0000613d0000003f01900039000000200200008a000200000002001d000000000121016f000000400200043d0000000001120019000000400010043f0000001f0190018f000300000002001d0000000008920436000000020230036700000005039002720000017f0000613d000000000400001900000005054002100000000006580019000000000552034f000000000505043b00000000005604350000000104400039000000000534004b000001770000413d000000000401004b0000018e0000613d0000000503300210000000000232034f00000000033800190000000301100210000000000403043300000000041401cf000000000414022f000000000202043b0000010001100089000000000212022f00000000011201cf000000000141019f0000000000130435000400000008001d00000000019800190000000000010435000000400300043d0000006001300039000000400010043f00000040013000390000016802000041000000000021043500000020023000390000016901000041000100000002001d00000000001204350000002701000039000500000003001d000000000013043500000165010000410000000000100439000000040070044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000166011001c700008002020000390588057e0000040f00000001022001900000041b0000613d000000400200043d000000000101043b000000000101004b000004cb0000c13d00000064012000390000016c03000041000000000031043500000044012000390000016d0300004100000000003104350000002401200039000000260300003900000000003104350000016b010000410000000000120435000000040120003900000020030000390000000000310435000000400100043d000000000212004900000084022000390000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000040011002100000006002200210000000000112019f0000058a000104300000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058805830000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000001e20000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000001db0000413d000000000503004b000001f00000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000002850000613d00000163010000410000000102000031000001630320009c00000000010240190000006001100210000005890001042e000001720420009c000002060000c13d0000000001000416000000000101004b0000041b0000c13d0000016e01000041000000000201041a0000000001000411000000000221013f0000016a02200198000002a50000c13d0000016701000041000000000201041a000002960000013d000001730420009c0000028b0000c13d0000000001000416000000000101004b0000041b0000c13d0000000003000031000000240130008a000000210200008a000000000121004b0000041b0000213d00000002010003670000000402100370000000000202043b0000016a062001970000016e02000041000000000202041a0000016a0420019700000000020004110000016a05200197000000000545004b000002380000c13d000000400100043d000000000206004b000003fb0000c13d00000064021000390000017703000041000000000032043500000044021000390000017803000041000000000032043500000024021000390000003a0300003900000000003204350000016b020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d000000000121004900000084011000390000016303000041000001630410009c0000000001038019000001630420009c000000000203801900000040022002100000006001100210000000000121019f0000058a000104300000016e04000041000000000404041a000000000224013f0000016a02200198000002aa0000613d0000001f0430018f0000016702000041000000000202041a00000005033002720000024a0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000635004b000002430000413d000000000504004b000002580000613d00000003044002100000000503300210000000000503043300000000054501cf000000000545022f000000000131034f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000013043500000000010000310000000003000414000000040420008c000001050000613d0000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058805830000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000002750000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b0000026e0000413d000000000503004b000002830000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001f20000c13d00000163010000410000000102000031000001630320009c000000000102401900000060011002100000058a00010430000001740220009c000002c80000c13d0000000001000416000000000101004b0000041b0000c13d0000016e01000041000000000201041a0000000001000411000000000321013f0000016a03300198000002a50000c13d0000016a01200197000000400200043d0000000000120435000000400100043d000000000212004900000020022000390000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000040011002100000006002200210000000000112019f000005890001042e0000016e02000041000000000202041a000000000112013f0000016a01100198000003170000c13d000000400100043d00000084021000390000017a03000041000000000032043500000064021000390000017b03000041000000000032043500000044021000390000017c0300004100000000003204350000002402100039000000420300003900000000003204350000016b020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d0000000001210049000000a4011000390000016303000041000001630410009c0000000001038019000001630420009c000000000203801900000040022002100000006001100210000000000121019f0000058a000104300000016e02000041000000000202041a0000000004000411000000000224013f0000016a02200198000000160000613d0000001f0410018f0000016702000041000000000202041a0000000501100272000002db0000613d00000000050000190000000506500210000000000763034f000000000707043b00000000007604350000000105500039000000000615004b000002d40000413d000000000504004b000002e90000613d00000003044002100000000501100210000000000501043300000000054501cf000000000545022f000000000313034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000000010000310000000003000414000000040420008c000001050000613d0000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058805830000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000003060000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000002ff0000413d000000000503004b000003140000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001f20000c13d000002850000013d000000020100036700000000040000310000001f0340018f0000016702000041000000000202041a0000000504400272000003260000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b0000031f0000413d000000000503004b000003340000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f000000000014043500000000010000310000000003000414000000040420008c000001050000613d0000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058805830000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000003510000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b0000034a0000413d000000000503004b0000035f0000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001f20000c13d000002850000013d00000167010000410000000605000029000000000051041b000000400100043d00000163020000410000000003000414000001630430009c0000000003028019000001630410009c00000000010280190000004001100210000000c002300210000000000112019f00000175011001c70000800d0200003900000002030000390000017904000041058805790000040f0000000101200190000004190000c13d0000041b0000013d000000400300043d0000006001300039000000400010043f00000040013000390000016802000041000000000021043500000020023000390000016901000041000100000002001d00000000001204350000002701000039000200000003001d000000000013043500000165010000410000000000100439000000040040044300000163010000410000000002000414000001630320009c0000000001024019000000c00110021000000166011001c700008002020000390588057e0000040f00000004040000290000000503000029000000060a00002900000001022001900000041b0000613d000000000101043b000000000101004b0000041d0000c13d000000400100043d00000064021000390000016c03000041000000000032043500000044021000390000016d0300004100000000003204350000002402100039000000260300003900000000003204350000016b020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d000000000121004900000084011000390000016303000041000001630410009c0000000001038019000001630420009c000000000203801900000040022002100000006001100210000000000121019f0000058a000104300000001f0410018f0000016702000041000000000202041a0000000501100272000003bf0000613d00000000050000190000000506500210000000000763034f000000000707043b00000000007604350000000105500039000000000615004b000003b80000413d000000000504004b000003cd0000613d00000003044002100000000501100210000000000501043300000000054501cf000000000545022f000000000313034f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f000000000031043500000000010000310000000003000414000000040420008c000001050000613d0000016304000041000001630530009c0000000003048019000001630510009c00000000010480190000006001100210000000c003300210000000000113019f058805830000040f0003000000010355000000000301001900000060043002700000001f0340018f000101630040019d00000163044001970000000504400272000003ea0000613d00000000050000190000000506500210000000000761034f000000000707043b00000000007604350000000105500039000000000645004b000003e30000413d000000000503004b000003f80000613d00000003033002100000000504400210000000000504043300000000053501cf000000000535022f000000000141034f000000000101043b0000010003300089000000000131022f00000000013101cf000000000151019f00000000001404350000000101200190000001f20000c13d000002850000013d0000002002100039000600000006001d00000000006204350000000000410435000000400200043d00000000012100490000016303000041000001630420009c000000000203801900000040022002100000004001100039000001630410009c00000000010380190000006001100210000000000121019f0000000002000414000001630420009c0000000002038019000000c002200210000000000121019f00000175011001c70000800d0200003900000001030000390000017604000041058805790000040f00000001012001900000041b0000613d0000016e010000410000000602000029000000000021041b0000000001000019000005890001042e00000000010000190000058a00010430000000400100043d0000016a024001970000000003030433000000200430008c00000000050300190000000004010019000000030b0000290000042c0000413d0000000004010019000000000503001900000000b60b04340000000004640436000000200550008a000000200650008c000004270000813d00000100070000390000000106000039000000200550008900000001085001900000000008070019000000010800603900000000866800a9000000010850027000000000977700a9000000010550008c00000000050800190000042f0000213d00000000050b04330000000007600049000000000575016f000000010660008a0000000007040433000000000667016f000000000556019f0000000000540435000000400500043d0000000004000414000000040620008c000004470000c13d000000010200003900000001030000310000045c0000013d000000000113001900000000015100490000016303000041000001630650009c00000000050380190000004005500210000001630610009c00000000010380190000006001100210000000000151019f000001630540009c0000000003044019000000c003300210000000000131019f058805830000040f000000060a000029000000010220018f00030000000103550000006001100270000101630010019d00000163031001970000006001000039000000000403004b000004840000613d0000003f01300039000000200300008a000000000331016f000000400100043d0000000003310019000000400030043f00000001030000310000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000004750000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b0000046d0000413d000000000705004b000004840000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000202004b0000009b0000c13d0000000021010434000000000301004b000004c20000c13d000000400200043d0000016b010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000002050000290000000004050433000000000043043500000044032000390000000004050433000000000204004b0000000002000019000004b60000613d0000000002000019000000010700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b0000049a0000413d00000000023400190000001f05400190000004b70000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000004a90000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d00000000021200490000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000040011002100000006002200210000000000112019f0000058a000104300000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000060011002100000004002200210000000000121019f0000058a0001043000000003010000290000000001010433000000200310008c000000000401001900000000030200190000000409000029000004d90000413d0000000003020019000000000401001900000000950904340000000003530436000000200440008a000000200540008c000004d40000813d00000100060000390000000105000039000000200440008900000001074001900000000007060019000000010700603900000000755700a9000000010740027000000000866600a9000000010440008c0000000004070019000004dc0000213d00000000040904330000000006500049000000000464016f000000010550008a0000000006030433000000000556016f000000000445019f0000000000430435000000400400043d00000000030004140000000605000029000000040550008c000004f50000c13d000000010200003900000001030000310000050a0000013d000000000121001900000000014100490000016302000041000001630540009c00000000040280190000004004400210000001630510009c00000000010280190000006001100210000000000141019f000001630430009c0000000002034019000000c002200210000000000121019f0000000602000029058805830000040f000000010220018f00030000000103550000006001100270000101630010019d00000163031001970000006001000039000000000403004b000005320000613d0000003f013000390000000203000029000000000331016f000000400100043d0000000003310019000000400030043f00000001030000310000000003310436000000030400036700000001060000310000001f0560018f0000000506600272000005230000613d000000000700001900000005087002100000000009830019000000000884034f000000000808043b00000000008904350000000107700039000000000867004b0000051b0000413d000000000705004b000005320000613d0000000506600210000000000464034f00000000036300190000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000000202004b000004190000c13d0000000021010434000000000301004b000005700000c13d000000400200043d0000016b010000410000000000120435000000040320003900000020010000390000000000130435000000240320003900000005050000290000000004050433000000000043043500000044032000390000000004050433000000000204004b0000000002000019000005640000613d0000000002000019000000010700002900000000053200190000000006720019000000000606043300000000006504350000002002200039000000000542004b000005480000413d00000000023400190000001f05400190000005650000613d0000010004000039000000010300003900000000025200490000002006500089000000000502043300000001076001900000000007040019000000010700603900000000733700a9000000010760027000000000844400a9000000010660008c0000000006070019000005570000213d0000000003300049000000000335016f000000000032043500000000030100190000000002320019000000400100043d00000000021200490000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000040011002100000006002200210000000000112019f0000058a000104300000016303000041000001630420009c0000000002038019000001630410009c000000000103801900000060011002100000004002200210000000000121019f0000058a000104300000057c002104210000000102000039000000000001042d0000000002000019000000000001042d00000581002104230000000102000039000000000001042d0000000002000019000000000001042d00000586002104250000000102000039000000000001042d0000000002000019000000000001042d0000058800000432000005890001042e0000058a00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc206661696c656400000000000000000000000000000000000000000000000000416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c000000000000000000000000ffffffffffffffffffffffffffffffffffffffff08c379a0000000000000000000000000000000000000000000000000000000006e74726163740000000000000000000000000000000000000000000000000000416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61030000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000003659cfe6000000000000000000000000000000000000000000000000000000004f1ef286000000000000000000000000000000000000000000000000000000005c60da1b000000000000000000000000000000000000000000000000000000008f28397000000000000000000000000000000000000000000000000000000000f851a44002000000000000000000000000000000000000000000000000000000000000007e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f2061646d696e20697320746865207a65726f20616464726573730000000000005472616e73706172656e745570677261646561626c6550726f78793a206e6577bc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b6574000000000000000000000000000000000000000000000000000000000000696e2063616e6e6f742066616c6c6261636b20746f2070726f787920746172675472616e73706172656e745570677261646561626c6550726f78793a2061646d74696f6e206973206e6f74206120636f6e7472616374000000000000000000005570677261646561626c6550726f78793a206e657720696d706c656d656e74610000000000000000000000000000000000000000000000000000000000000000fa407494fd47af224de725a34cc2778dfce54ae2191ae6e0879c54e9afae101a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b9f2d038150e296cdacf489813ce2bbe976a4c6200000000000000000000000076d539e3c8bc2a565d22de95b0671a963667c4ad00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0xb9F2d038150E296CdAcF489813CE2Bbe976a4C62
Arg [1] : admin_ (address): 0x76d539e3c8bc2A565D22De95B0671A963667C4aD
Arg [2] : _data (bytes): 0x
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000b9f2d038150e296cdacf489813ce2bbe976a4c62
Arg [1] : 00000000000000000000000076d539e3c8bc2a565d22de95b0671a963667c4ad
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.