Latest 25 from a total of 2,592 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21965909 | 3 hrs ago | IN | 0 ETH | 0.00002998 | ||||
Transfer | 21917060 | 6 days ago | IN | 0 ETH | 0.00032422 | ||||
Approve | 21913728 | 7 days ago | IN | 0 ETH | 0.00007425 | ||||
Transfer | 21890283 | 10 days ago | IN | 0 ETH | 0.00014655 | ||||
Transfer | 21844726 | 17 days ago | IN | 0 ETH | 0.00032928 | ||||
Transfer | 21844717 | 17 days ago | IN | 0 ETH | 0.00011798 | ||||
Transfer | 21844716 | 17 days ago | IN | 0 ETH | 0.00011244 | ||||
Transfer | 21844714 | 17 days ago | IN | 0 ETH | 0.0001447 | ||||
Transfer | 21837158 | 18 days ago | IN | 0 ETH | 0.00005363 | ||||
Approve | 21834113 | 18 days ago | IN | 0 ETH | 0.00006945 | ||||
Transfer | 21832491 | 18 days ago | IN | 0 ETH | 0.00019474 | ||||
Transfer | 21830562 | 19 days ago | IN | 0 ETH | 0.00030206 | ||||
Transfer | 21830535 | 19 days ago | IN | 0 ETH | 0.00006498 | ||||
Transfer | 21830534 | 19 days ago | IN | 0 ETH | 0.00006375 | ||||
Transfer | 21830532 | 19 days ago | IN | 0 ETH | 0.00008657 | ||||
Transfer | 21815475 | 21 days ago | IN | 0 ETH | 0.00007711 | ||||
Transfer | 21798649 | 23 days ago | IN | 0 ETH | 0.00008091 | ||||
Transfer | 21794823 | 24 days ago | IN | 0 ETH | 0.00007335 | ||||
Transfer | 21794611 | 24 days ago | IN | 0 ETH | 0.00032041 | ||||
Transfer | 21794571 | 24 days ago | IN | 0 ETH | 0.00034892 | ||||
Transfer | 21794570 | 24 days ago | IN | 0 ETH | 0.00007907 | ||||
Transfer | 21794565 | 24 days ago | IN | 0 ETH | 0.00008395 | ||||
Transfer | 21794560 | 24 days ago | IN | 0 ETH | 0.00009723 | ||||
Transfer | 21794427 | 24 days ago | IN | 0 ETH | 0.0003096 | ||||
Transfer | 21794399 | 24 days ago | IN | 0 ETH | 0.00006698 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
TransparentUpgradeableProxy
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (proxy/transparent/TransparentUpgradeableProxy.sol)pragma solidity ^0.8.2;import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.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,
1234567891011121314151617181920// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)pragma solidity ^0.8.0;/*** @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified* proxy whose upgrades are fully controlled by the current implementation.*/interface IERC1822Proxiable {/*** @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation* address.** IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks* bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this* function revert if invoked through a proxy.*/function proxiableUUID() external view returns (bytes32);}
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)pragma solidity ^0.8.0;/*** @dev This is the interface that {BeaconProxy} expects of its beacon.*/interface IBeacon {/*** @dev Must return an address that can be used as a delegate call target.** {BeaconProxy} will check that this address is a contract.*/function implementation() external view returns (address);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)pragma solidity ^0.8.0;import "../Proxy.sol";import "./ERC1967Upgrade.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.*/contract ERC1967Proxy is Proxy, ERC1967Upgrade {/*** @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 initializing the storage of the proxy like a Solidity constructor.*/constructor(address _logic, bytes memory _data) payable {_upgradeToAndCall(_logic, _data, false);}/**
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol)pragma solidity ^0.8.2;import "../beacon/IBeacon.sol";import "../../interfaces/draft-IERC1822.sol";import "../../utils/Address.sol";import "../../utils/StorageSlot.sol";/*** @dev This abstract contract provides getters and event emitting update functions for* https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.** _Available since v4.1._** @custom:oz-upgrades-unsafe-allow delegatecall*/abstract contract ERC1967Upgrade {// This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)pragma solidity ^0.8.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 internal call site, it will return directly to the external caller.*/function _delegate(address implementation) internal virtual {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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @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* ====*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol)pragma solidity ^0.8.0;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;* }
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"beacon","type":"address"}],"name":"BeaconUpgraded","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"changeAdmin","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"implementation_","type":"address"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"payable","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
608060405260405162000e4838038062000e48833981016040819052620000269162000497565b828162000036828260006200004d565b50620000449050826200008a565b505050620005ca565b6200005883620000e5565b600082511180620000665750805b1562000085576200008383836200012760201b6200021a1760201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f620000b562000156565b604080516001600160a01b03928316815291841660208301520160405180910390a1620000e2816200018f565b50565b620000f08162000244565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606200014f838360405180606001604052806027815260200162000e2160279139620002f8565b9392505050565b60006200018060008051602062000e0183398151915260001b6200037760201b620001c61760201c565b546001600160a01b0316919050565b6001600160a01b038116620001fa5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b806200022360008051602062000e0183398151915260001b6200037760201b620001c61760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6200025a816200037a60201b620002461760201c565b620002be5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608401620001f1565b80620002237f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200037760201b620001c61760201c565b6060600080856001600160a01b03168560405162000317919062000577565b600060405180830381855af49150503d806000811462000354576040519150601f19603f3d011682016040523d82523d6000602084013e62000359565b606091505b5090925090506200036d8683838762000389565b9695505050505050565b90565b6001600160a01b03163b151590565b60608315620003fd578251600003620003f5576001600160a01b0385163b620003f55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001f1565b508162000409565b62000409838362000411565b949350505050565b815115620004225781518083602001fd5b8060405162461bcd60e51b8152600401620001f1919062000595565b80516001600160a01b03811681146200045657600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200048e57818101518382015260200162000474565b50506000910152565b600080600060608486031215620004ad57600080fd5b620004b8846200043e565b9250620004c8602085016200043e565b60408501519092506001600160401b0380821115620004e657600080fd5b818601915086601f830112620004fb57600080fd5b8151818111156200051057620005106200045b565b604051601f8201601f19908116603f011681019083821181831017156200053b576200053b6200045b565b816040528281528960208487010111156200055557600080fd5b6200056883602083016020880162000471565b80955050505050509250925092565b600082516200058b81846020870162000471565b9190910192915050565b6020815260008251806020840152620005b681604085016020870162000471565b601f01601f19169190910160400192915050565b61082780620005da6000396000f3fe60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100785780635c60da1b1461008b5780638f283970146100af578063f851a440146100c25761005d565b3661005d5761005b6100ca565b005b61005b6100ca565b61005b6100733660046106b9565b6100e4565b61005b6100863660046106d4565b610129565b610093610190565b6040516001600160a01b03909116815260200160405180910390f35b61005b6100bd3660046106b9565b6101c9565b6100936101f1565b6100d2610255565b6100e26100dd6102ea565b6102f4565b565b6100ec610318565b6001600160a01b031633036101215761010361034b565b61011e81604051806020016040528060008152506000610356565b50565b61011e6100ca565b610131610318565b6001600160a01b03163303610188576101838383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610356915050565b505050565b6101836100ca565b600061019a610318565b6001600160a01b031633036101be576101b161034b565b6101b96102ea565b905090565b6101c66100ca565b90565b6101d1610318565b6001600160a01b03163303610121576101e861034b565b61011e81610381565b60006101fb610318565b6001600160a01b031633036101be5761021261034b565b6101b9610318565b606061023f83836040518060600160405280602781526020016107cb602791396103d5565b9392505050565b6001600160a01b03163b151590565b61025d610318565b6001600160a01b031633036100e25760405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b60006101b961044d565b3660008037600080366000845af43d6000803e808015610313573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b34156100e257600080fd5b61035f83610475565b60008251118061036c5750805b156101835761037b838361021a565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6103aa610318565b604080516001600160a01b03928316815291841660208301520160405180910390a161011e816104b5565b6060600080856001600160a01b0316856040516103f2919061077b565b600060405180830381855af49150503d806000811461042d576040519150601f19603f3d011682016040523d82523d6000602084013e610432565b606091505b50915091506104438683838761055e565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61033c565b61047e816105df565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6001600160a01b03811661051a5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e1565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b606083156105cd5782516000036105c6576001600160a01b0385163b6105c65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102e1565b50816105d7565b6105d78383610673565b949350505050565b6001600160a01b0381163b61064c5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016102e1565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61053d565b8151156106835781518083602001fd5b8060405162461bcd60e51b81526004016102e19190610797565b80356001600160a01b03811681146106b457600080fd5b919050565b6000602082840312156106cb57600080fd5b61023f8261069d565b6000806000604084860312156106e957600080fd5b6106f28461069d565b9250602084013567ffffffffffffffff8082111561070f57600080fd5b818601915086601f83011261072357600080fd5b81358181111561073257600080fd5b87602082850101111561074457600080fd5b6020830194508093505050509250925092565b60005b8381101561077257818101518382015260200161075a565b50506000910152565b6000825161078d818460208701610757565b9190910192915050565b60208152600082518060208401526107b6816040850160208701610757565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204bac02503f0838425af5f63c269edceb1f65efe585e8c7783bf431acd21d97e564736f6c63430008110033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c65640000000000000000000000005e1c4c668122151a9dda3289916f9112a2e0a2e4000000000000000000000000184c763beefdb25dbe7f4f1f75657cfcca18cb71000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000048129fc1c00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061004e5760003560e01c80633659cfe6146100655780634f1ef286146100785780635c60da1b1461008b5780638f283970146100af578063f851a440146100c25761005d565b3661005d5761005b6100ca565b005b61005b6100ca565b61005b6100733660046106b9565b6100e4565b61005b6100863660046106d4565b610129565b610093610190565b6040516001600160a01b03909116815260200160405180910390f35b61005b6100bd3660046106b9565b6101c9565b6100936101f1565b6100d2610255565b6100e26100dd6102ea565b6102f4565b565b6100ec610318565b6001600160a01b031633036101215761010361034b565b61011e81604051806020016040528060008152506000610356565b50565b61011e6100ca565b610131610318565b6001600160a01b03163303610188576101838383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610356915050565b505050565b6101836100ca565b600061019a610318565b6001600160a01b031633036101be576101b161034b565b6101b96102ea565b905090565b6101c66100ca565b90565b6101d1610318565b6001600160a01b03163303610121576101e861034b565b61011e81610381565b60006101fb610318565b6001600160a01b031633036101be5761021261034b565b6101b9610318565b606061023f83836040518060600160405280602781526020016107cb602791396103d5565b9392505050565b6001600160a01b03163b151590565b61025d610318565b6001600160a01b031633036100e25760405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267606482015261195d60f21b608482015260a4015b60405180910390fd5b60006101b961044d565b3660008037600080366000845af43d6000803e808015610313573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b34156100e257600080fd5b61035f83610475565b60008251118061036c5750805b156101835761037b838361021a565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6103aa610318565b604080516001600160a01b03928316815291841660208301520160405180910390a161011e816104b5565b6060600080856001600160a01b0316856040516103f2919061077b565b600060405180830381855af49150503d806000811461042d576040519150601f19603f3d011682016040523d82523d6000602084013e610432565b606091505b50915091506104438683838761055e565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61033c565b61047e816105df565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b6001600160a01b03811661051a5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b60648201526084016102e1565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80546001600160a01b0319166001600160a01b039290921691909117905550565b606083156105cd5782516000036105c6576001600160a01b0385163b6105c65760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102e1565b50816105d7565b6105d78383610673565b949350505050565b6001600160a01b0381163b61064c5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084016102e1565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc61053d565b8151156106835781518083602001fd5b8060405162461bcd60e51b81526004016102e19190610797565b80356001600160a01b03811681146106b457600080fd5b919050565b6000602082840312156106cb57600080fd5b61023f8261069d565b6000806000604084860312156106e957600080fd5b6106f28461069d565b9250602084013567ffffffffffffffff8082111561070f57600080fd5b818601915086601f83011261072357600080fd5b81358181111561073257600080fd5b87602082850101111561074457600080fd5b6020830194508093505050509250925092565b60005b8381101561077257818101518382015260200161075a565b50506000910152565b6000825161078d818460208701610757565b9190910192915050565b60208152600082518060208401526107b6816040850160208701610757565b601f01601f1916919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212204bac02503f0838425af5f63c269edceb1f65efe585e8c7783bf431acd21d97e564736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005e1c4c668122151a9dda3289916f9112a2e0a2e4000000000000000000000000184c763beefdb25dbe7f4f1f75657cfcca18cb71000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000048129fc1c00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0x5E1C4C668122151A9dDa3289916F9112a2E0a2E4
Arg [1] : admin_ (address): 0x184C763beeFdB25dbE7f4F1F75657CfcCa18CB71
Arg [2] : _data (bytes): 0x8129fc1c
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000005e1c4c668122151a9dda3289916f9112a2e0a2e4
Arg [1] : 000000000000000000000000184c763beefdb25dbe7f4f1f75657cfcca18cb71
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 8129fc1c00000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
OVERVIEW
NEMS is the ETH token that powers The Nemesis, the open-world Metaverse for desktop and mobile, where players are rewarded through a Play&Earn model and Creators build experiences in VR/AR. NEMS allows the cash out of COINS earned in game and the purchase of Lands, NFTs and other The Nemesis assets.Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.004966 | 147.6593 | $0.7333 |
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.