ETH Price: $2,360.18 (+7.49%)

Contract

0xb435A47eCea7F5366b2520e45B9beD7E01d2FFAe
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

TokenTracker

The Nemesis (NEMS) (@$0.005)

Multichain Info

No addresses found
Transaction Hash
Method
Block
Age
From
To
Transfer219659092025-03-03 10:58:113 hrs ago1740999491IN
The Nemesis: NEMS Token
0 ETH0.000029980.61902111
Transfer219170602025-02-24 15:24:476 days ago1740410687IN
The Nemesis: NEMS Token
0 ETH0.000324224.94460499
Approve219137282025-02-24 4:13:357 days ago1740370415IN
The Nemesis: NEMS Token
0 ETH0.000074251.38381625
Transfer218902832025-02-20 21:35:3510 days ago1740087335IN
The Nemesis: NEMS Token
0 ETH0.000146552.23544196
Transfer218447262025-02-14 12:33:2317 days ago1739536403IN
The Nemesis: NEMS Token
0 ETH0.000329287.54422606
Transfer218447172025-02-14 12:31:3517 days ago1739536295IN
The Nemesis: NEMS Token
0 ETH0.000117982.43471801
Transfer218447162025-02-14 12:31:2317 days ago1739536283IN
The Nemesis: NEMS Token
0 ETH0.000112442.32039636
Transfer218447142025-02-14 12:30:5917 days ago1739536259IN
The Nemesis: NEMS Token
0 ETH0.00014472.20725155
Transfer218371582025-02-13 11:06:5918 days ago1739444819IN
The Nemesis: NEMS Token
0 ETH0.000053631.2278689
Approve218341132025-02-13 0:53:4718 days ago1739408027IN
The Nemesis: NEMS Token
0 ETH0.000069451.29427884
Transfer218324912025-02-12 19:28:2318 days ago1739388503IN
The Nemesis: NEMS Token
0 ETH0.000194742.97005778
Transfer218305622025-02-12 13:00:1119 days ago1739365211IN
The Nemesis: NEMS Token
0 ETH0.000302066.92057459
Transfer218305352025-02-12 12:54:3519 days ago1739364875IN
The Nemesis: NEMS Token
0 ETH0.000064981.34103819
Transfer218305342025-02-12 12:54:2319 days ago1739364863IN
The Nemesis: NEMS Token
0 ETH0.000063751.31557526
Transfer218305322025-02-12 12:53:5919 days ago1739364839IN
The Nemesis: NEMS Token
0 ETH0.000086571.32055298
Transfer218154752025-02-10 10:19:1121 days ago1739182751IN
The Nemesis: NEMS Token
0 ETH0.000077111.26915721
Transfer217986492025-02-08 1:54:5923 days ago1738979699IN
The Nemesis: NEMS Token
0 ETH0.000080911.33125845
Transfer217948232025-02-07 13:07:1124 days ago1738933631IN
The Nemesis: NEMS Token
0 ETH0.000073351.51412882
Transfer217946112025-02-07 12:24:3524 days ago1738931075IN
The Nemesis: NEMS Token
0 ETH0.000320417.338944
Transfer217945712025-02-07 12:16:3524 days ago1738930595IN
The Nemesis: NEMS Token
0 ETH0.000348927.20034378
Transfer217945702025-02-07 12:16:2324 days ago1738930583IN
The Nemesis: NEMS Token
0 ETH0.000079071.6318113
Transfer217945652025-02-07 12:15:2324 days ago1738930523IN
The Nemesis: NEMS Token
0 ETH0.000083951.73259487
Transfer217945602025-02-07 12:14:2324 days ago1738930463IN
The Nemesis: NEMS Token
0 ETH0.000097231.48319363
Transfer217944272025-02-07 11:47:4724 days ago1738928867IN
The Nemesis: NEMS Token
0 ETH0.00030967.09142905
Transfer217943992025-02-07 11:42:1124 days ago1738928531IN
The Nemesis: NEMS Token
0 ETH0.000066981.10253322
View all transactions

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
File 1 of 8 : TransparentUpgradeableProxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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,
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 8 : draft-IERC1822.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 8 : IBeacon.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 8 : ERC1967Proxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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);
}
/**
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 8 : ERC1967Upgrade.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 1
bytes32 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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 8 : Proxy.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 8 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 8 : StorageSlot.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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;
* }
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

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"}]

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


Block Age Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Age Uncle Number Difficulty Gas Used Reward
View All Uncles
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.

Validator Index Block Age Amount
View All Withdrawals

Transaction Hash Block Age Value Eth2 PubKey Valid
View All Deposits
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.