More Info
Private Name Tags
ContractCreator
GENESIS at txn GENESIS_2a3DD3EB832aF982ec71669E178424b10Dca2EDe
Latest 25 from a total of 196,870 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Bridge Asset | 18333490 | 2 hrs ago | IN | 0 ETH | 0.00031469 | ||||
Bridge Asset | 18332968 | 2 hrs ago | IN | 0.00595514 ETH | 0.00028151 | ||||
Bridge Asset | 18332561 | 3 hrs ago | IN | 0 ETH | 0.00030942 | ||||
Bridge Asset | 18332188 | 3 hrs ago | IN | 0.10901725 ETH | 0.00028229 | ||||
Bridge Asset | 18330804 | 4 hrs ago | IN | 0 ETH | 0.00030942 | ||||
Bridge Asset | 18328697 | 6 hrs ago | IN | 0.95360648 ETH | 0.00002866 | ||||
Bridge Asset | 18328010 | 7 hrs ago | IN | 0 ETH | 0.00030407 | ||||
Bridge Asset | 18327133 | 7 hrs ago | IN | 0.03417003 ETH | 0.00028301 | ||||
Bridge Asset | 18326622 | 8 hrs ago | IN | 0 ETH | 0.0003468 | ||||
Bridge Asset | 18326590 | 8 hrs ago | IN | 0 ETH | 0.00034756 | ||||
Bridge Asset | 18321880 | 12 hrs ago | IN | 0.07563291 ETH | 0.00027007 | ||||
Bridge Asset | 18320557 | 14 hrs ago | IN | 0.01758527 ETH | 0.00002874 | ||||
Bridge Asset | 18319737 | 14 hrs ago | IN | 0 ETH | 0.00029496 | ||||
Bridge Asset | 18315813 | 18 hrs ago | IN | 0 ETH | 0.00002424 | ||||
Bridge Asset | 18310850 | 22 hrs ago | IN | 0.05 ETH | 0.00001685 | ||||
Bridge Asset | 18309905 | 23 hrs ago | IN | 0.04323161 ETH | 0.00028371 | ||||
Bridge Asset | 18309790 | 23 hrs ago | IN | 0.00405318 ETH | 0.0002754 | ||||
Bridge Asset | 18306111 | 27 hrs ago | IN | 0.04401487 ETH | 0.00027001 | ||||
Bridge Asset | 18304525 | 28 hrs ago | IN | 0 ETH | 0.00031087 | ||||
Bridge Asset | 18304202 | 29 hrs ago | IN | 0.06818982 ETH | 0.00027001 | ||||
Bridge Asset | 18303294 | 29 hrs ago | IN | 0.00028082 ETH | 0.00027074 | ||||
Bridge Asset | 18303127 | 29 hrs ago | IN | 0.033271 ETH | 0.00026469 | ||||
Bridge Asset | 18299520 | 33 hrs ago | IN | 0.1173473 ETH | 0.00027769 | ||||
Bridge Asset | 18299156 | 33 hrs ago | IN | 0.01904885 ETH | 0.00027001 | ||||
Bridge Asset | 18298987 | 33 hrs ago | IN | 0.00729707 ETH | 0.0002708 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
18334924 | 50 mins ago | 0.0045 ETH | ||||
18334259 | 1 hr ago | 0.001 ETH | ||||
18333428 | 2 hrs ago | 0.00307829 ETH | ||||
18332280 | 3 hrs ago | 0.00741713 ETH | ||||
18330558 | 4 hrs ago | 0.00533873 ETH | ||||
18328571 | 6 hrs ago | 0.004 ETH | ||||
18321572 | 13 hrs ago | 0.02694687 ETH | ||||
18320181 | 14 hrs ago | 0.002 ETH | ||||
18310316 | 23 hrs ago | 0.00603144 ETH | ||||
18309839 | 23 hrs ago | 0.05 ETH | ||||
18309726 | 23 hrs ago | 0.03235124 ETH | ||||
18306565 | 26 hrs ago | 0.062 ETH | ||||
18304823 | 28 hrs ago | 0.005 ETH | ||||
18303999 | 29 hrs ago | 0.00012167 ETH | ||||
18303762 | 29 hrs ago | 0.055 ETH | ||||
18295384 | 37 hrs ago | 0.15 ETH | ||||
18291137 | 41 hrs ago | 0.0021212 ETH | ||||
18284232 | 47 hrs ago | 0.01014882 ETH | ||||
18283886 | 47 hrs ago | 0.009 ETH | ||||
18283209 | 2 days ago | 0.069 ETH | ||||
18282849 | 2 days ago | 0.11 ETH | ||||
18275575 | 2 days ago | 0.6 ETH | ||||
18274767 | 2 days ago | 0.0008 ETH | ||||
18273325 | 2 days ago | 1.6 ETH | ||||
18272736 | 2 days ago | 0.00456367 ETH |
Loading...
Loading
Contract Name:
TransparentUpgradeableProxy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at zkevm.polygonscan.com on 2023-03-28 */ // 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); } // 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); } // 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; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlot { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } } // 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. 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 overridden 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 internal 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 overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} } // 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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // OpenZeppelin Contracts (last updated v4.5.0) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; /** * @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. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { Address.functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @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 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlot.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Emitted when the beacon is upgraded. */ event BeaconUpgraded(address indexed beacon); /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlot.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( Address.isContract(IBeacon(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data); } } } // OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol) pragma solidity ^0.8.0; /** * @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); } /** * @dev Returns the current implementation address. */ function _implementation() internal view virtual override returns (address impl) { return ERC1967Upgrade._getImplementation(); } } // OpenZeppelin Contracts (last updated v4.7.0) (proxy/transparent/TransparentUpgradeableProxy.sol) pragma solidity ^0.8.0; /** * @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 ERC1967Proxy { /** * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}. */ constructor( address _logic, address admin_, bytes memory _data ) payable ERC1967Proxy(_logic, _data) { _changeAdmin(admin_); } /** * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin. */ modifier ifAdmin() { if (msg.sender == _getAdmin()) { _; } 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_ = _getAdmin(); } /** * @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 { _changeAdmin(newAdmin); } /** * @dev Upgrade the implementation of the proxy. * * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}. */ function upgradeTo(address newImplementation) external ifAdmin { _upgradeToAndCall(newImplementation, bytes(""), false); } /** * @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 ifAdmin { _upgradeToAndCall(newImplementation, data, true); } /** * @dev Returns the current admin. */ function _admin() internal view virtual returns (address) { return _getAdmin(); } /** * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}. */ function _beforeFallback() internal virtual override { require(msg.sender != _getAdmin(), "TransparentUpgradeableProxy: admin cannot fallback to proxy target"); super._beforeFallback(); } }
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":"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":"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
60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100e6578063f851a440146101065761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61011b565b005b61006b61011b565b34801561008157600080fd5b5061006b61009036600461088b565b610135565b61006b6100a33660046108a6565b61017f565b3480156100b457600080fd5b506100bd6101f3565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100f257600080fd5b5061006b61010136600461088b565b610231565b34801561011257600080fd5b506100bd61025e565b6101236102d4565b61013361012e6103ab565b6103b5565b565b61013d6103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101775761017481604051806020016040528060008152506000610419565b50565b61017461011b565b6101876103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101eb576101e68383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610419915050565b505050565b6101e661011b565b60006101fd6103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610226576102216103ab565b905090565b61022e61011b565b90565b6102396103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101775761017481610444565b60006102686103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610226576102216103d9565b60606102b183836040518060600160405280602781526020016109bb602791396104a5565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6102dc6103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b600061022161052a565b3660008037600080366000845af43d6000803e8080156103d4573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b61042283610552565b60008251118061042f5750805b156101e65761043e838361028c565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61046d6103d9565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101748161059f565b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516104cf919061094d565b600060405180830381855af49150503d806000811461050a576040519150601f19603f3d011682016040523d82523d6000602084013e61050f565b606091505b5091509150610520868383876106ab565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6103fd565b61055b81610753565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103a2565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b6060831561074157825160000361073a5773ffffffffffffffffffffffffffffffffffffffff85163b61073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103a2565b508161074b565b61074b838361081e565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff81163b6107f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016103a2565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610665565b81511561082e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a29190610969565b803573ffffffffffffffffffffffffffffffffffffffff8116811461088657600080fd5b919050565b60006020828403121561089d57600080fd5b6102b182610862565b6000806000604084860312156108bb57600080fd5b6108c484610862565b9250602084013567ffffffffffffffff808211156108e157600080fd5b818601915086601f8301126108f557600080fd5b81358181111561090457600080fd5b87602082850101111561091657600080fd5b6020830194508093505050509250925092565b60005b8381101561094457818101518382015260200161092c565b50506000910152565b6000825161095f818460208701610929565b9190910192915050565b6020815260008251806020840152610988816040850160208701610929565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a1af0d6cb4f1e31496a4c5c1448913bce4bd6ad3a39e47c6f7190c114d6f9bf464736f6c63430008110033
Deployed Bytecode
0x60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100e6578063f851a440146101065761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61011b565b005b61006b61011b565b34801561008157600080fd5b5061006b61009036600461088b565b610135565b61006b6100a33660046108a6565b61017f565b3480156100b457600080fd5b506100bd6101f3565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f35b3480156100f257600080fd5b5061006b61010136600461088b565b610231565b34801561011257600080fd5b506100bd61025e565b6101236102d4565b61013361012e6103ab565b6103b5565b565b61013d6103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101775761017481604051806020016040528060008152506000610419565b50565b61017461011b565b6101876103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101eb576101e68383838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525060019250610419915050565b505050565b6101e661011b565b60006101fd6103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610226576102216103ab565b905090565b61022e61011b565b90565b6102396103d9565b73ffffffffffffffffffffffffffffffffffffffff1633036101775761017481610444565b60006102686103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610226576102216103d9565b60606102b183836040518060600160405280602781526020016109bb602791396104a5565b9392505050565b73ffffffffffffffffffffffffffffffffffffffff163b151590565b6102dc6103d9565b73ffffffffffffffffffffffffffffffffffffffff163303610133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b600061022161052a565b3660008037600080366000845af43d6000803e8080156103d4573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b5473ffffffffffffffffffffffffffffffffffffffff16919050565b61042283610552565b60008251118061042f5750805b156101e65761043e838361028c565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61046d6103d9565b6040805173ffffffffffffffffffffffffffffffffffffffff928316815291841660208301520160405180910390a16101748161059f565b60606000808573ffffffffffffffffffffffffffffffffffffffff16856040516104cf919061094d565b600060405180830381855af49150503d806000811461050a576040519150601f19603f3d011682016040523d82523d6000602084013e61050f565b606091505b5091509150610520868383876106ab565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6103fd565b61055b81610753565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b73ffffffffffffffffffffffffffffffffffffffff8116610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016103a2565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b80547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff9290921691909117905550565b6060831561074157825160000361073a5773ffffffffffffffffffffffffffffffffffffffff85163b61073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103a2565b508161074b565b61074b838361081e565b949350505050565b73ffffffffffffffffffffffffffffffffffffffff81163b6107f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e74726163740000000000000000000000000000000000000060648201526084016103a2565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc610665565b81511561082e5781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103a29190610969565b803573ffffffffffffffffffffffffffffffffffffffff8116811461088657600080fd5b919050565b60006020828403121561089d57600080fd5b6102b182610862565b6000806000604084860312156108bb57600080fd5b6108c484610862565b9250602084013567ffffffffffffffff808211156108e157600080fd5b818601915086601f8301126108f557600080fd5b81358181111561090457600080fd5b87602082850101111561091657600080fd5b6020830194508093505050509250925092565b60005b8381101561094457818101518382015260200161092c565b50506000910152565b6000825161095f818460208701610929565b9190910192915050565b6020815260008251806020840152610988816040850160208701610929565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220a1af0d6cb4f1e31496a4c5c1448913bce4bd6ad3a39e47c6f7190c114d6f9bf464736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 40.97% | $1.95 | 57,062,649.1738 | $111,272,165.89 | |
ETH | 19.56% | $0.620786 | 85,583,609.7151 | $53,129,106.74 | |
ETH | 14.37% | $3,908.44 | 9,983.2488 | $39,018,961.71 | |
ETH | 6.08% | $0.620363 | 26,633,559.0575 | $16,522,463.75 | |
ETH | 4.47% | $0.999934 | 12,154,320.6245 | $12,153,518.44 | |
ETH | 4.47% | $101,925 | 119.1157 | $12,140,863.4 | |
ETH | 3.85% | $54.8 | 190,642.2703 | $10,447,196.41 | |
ETH | 2.77% | $0.999998 | 7,522,259.4783 | $7,522,244.43 | |
ETH | 1.02% | $0.008891 | 311,355,332.923 | $2,768,208.77 | |
ETH | 0.64% | $0.999767 | 1,745,879.9405 | $1,745,473.15 | |
ETH | 0.34% | $4,392.79 | 208.3946 | $915,433.6 | |
ETH | 0.23% | $0.059864 | 10,465,593.8937 | $626,512.31 | |
ETH | 0.13% | $0.001023 | 343,888,195.9658 | $351,750.47 | |
ETH | 0.12% | $4,654.09 | 70.507 | $328,145.98 | |
ETH | 0.12% | $0.037155 | 8,723,924.5017 | $324,141.43 | |
ETH | 0.12% | $0.000638 | 500,101,990.1804 | $319,115.08 | |
ETH | 0.10% | $0.014296 | 18,426,306.5789 | $263,425.06 | |
ETH | 0.08% | $0.009097 | 25,270,337.7669 | $229,872.89 | |
ETH | 0.05% | $0.051492 | 2,758,945.8637 | $142,063.64 | |
ETH | 0.05% | $0.708593 | 172,816.2653 | $122,456.4 | |
ETH | 0.03% | $0.032787 | 2,817,267.0158 | $92,368.55 | |
ETH | 0.03% | $29.37 | 2,902.1 | $85,234.68 | |
ETH | 0.03% | $1.9 | 41,785.5964 | $79,392.63 | |
ETH | 0.03% | $0.149552 | 491,832.2106 | $73,554.49 | |
ETH | 0.03% | $380.89 | 187.4693 | $71,405.18 | |
ETH | 0.02% | $0.002664 | 21,534,516.261 | $57,377 | |
ETH | 0.02% | $0.003207 | 15,000,000 | $48,105.75 | |
ETH | 0.01% | $1.21 | 26,740.1888 | $32,295.51 | |
ETH | 0.01% | $0.025605 | 1,259,936.9035 | $32,260.19 | |
ETH | 0.01% | $14.26 | 2,020.001 | $28,805.21 | |
ETH | 0.01% | $0.199911 | 138,836.7412 | $27,754.99 | |
ETH | <0.01% | $2,664.29 | 9.9856 | $26,604.42 | |
ETH | <0.01% | $3.56 | 6,330.0447 | $22,534.96 | |
ETH | <0.01% | $77.24 | 243 | $18,769.32 | |
ETH | <0.01% | $0.007319 | 2,550,528.91 | $18,667.98 | |
ETH | <0.01% | $0.026374 | 694,723.7235 | $18,322.73 | |
ETH | <0.01% | $0.000685 | 26,168,997.1285 | $17,916.82 | |
ETH | <0.01% | $0.000449 | 34,699,842.6813 | $15,587.24 | |
ETH | <0.01% | $0.000669 | 21,997,057.4502 | $14,705.23 | |
ETH | <0.01% | $0.775652 | 17,711.892 | $13,738.26 | |
ETH | <0.01% | $4,036.71 | 3.05 | $12,311.77 | |
ETH | <0.01% | $0.026097 | 442,533.0159 | $11,548.82 | |
ETH | <0.01% | $0.011612 | 984,659.0578 | $11,433.4 | |
ETH | <0.01% | $0.152274 | 51,678.9186 | $7,869.36 | |
ETH | <0.01% | $3,908.44 | 1.9504 | $7,622.92 | |
ETH | <0.01% | $2,068.8 | 3.1077 | $6,429.24 | |
ETH | <0.01% | $0.001572 | 3,923,000.3791 | $6,168.25 | |
ETH | <0.01% | $0.113212 | 50,000 | $5,660.6 | |
ETH | <0.01% | $17.32 | 285.3146 | $4,941.65 | |
ETH | <0.01% | $0.47253 | 10,318.5733 | $4,875.84 | |
ETH | <0.01% | $0.000509 | 9,484,383.9106 | $4,830.4 | |
ETH | <0.01% | $0.008774 | 540,000 | $4,737.72 | |
ETH | <0.01% | $0.004587 | 1,000,000 | $4,586.74 | |
ETH | <0.01% | $0.023736 | 191,319.4433 | $4,541.17 | |
ETH | <0.01% | <$0.000001 | 5,272,974,849,607.7256 | $3,981.65 | |
ETH | <0.01% | $0.253608 | 12,926.3483 | $3,278.23 | |
ETH | <0.01% | $2.1 | 1,502.22 | $3,154.66 | |
ETH | <0.01% | $0.001499 | 1,797,227.656 | $2,693.85 | |
ETH | <0.01% | $0.380661 | 6,414.1164 | $2,441.6 | |
ETH | <0.01% | $0.004023 | 572,286.7001 | $2,302.03 | |
ETH | <0.01% | $0.103865 | 16,706.4735 | $1,735.22 | |
ETH | <0.01% | $0.284866 | 5,879.812 | $1,674.96 | |
ETH | <0.01% | $1 | 1,644.8167 | $1,649.75 | |
ETH | <0.01% | $3.96 | 395.9471 | $1,566.95 | |
ETH | <0.01% | $1.46 | 997.7293 | $1,456.68 | |
ETH | <0.01% | $0.143881 | 10,000.001 | $1,438.81 | |
ETH | <0.01% | $2.23 | 642.3785 | $1,432.5 | |
ETH | <0.01% | $0.006828 | 205,887.4766 | $1,405.79 | |
ETH | <0.01% | $0.002735 | 498,427.5927 | $1,363.34 | |
ETH | <0.01% | $0.691015 | 1,895.8813 | $1,310.08 | |
ETH | <0.01% | $0.098083 | 13,194.5243 | $1,294.16 | |
ETH | <0.01% | $0.01506 | 83,077.9268 | $1,251.15 | |
ETH | <0.01% | $11.2 | 110 | $1,232 | |
ETH | <0.01% | $0.032401 | 36,091.0188 | $1,169.4 | |
ETH | <0.01% | $0.100779 | 11,556.5617 | $1,164.66 | |
ETH | <0.01% | $0.995207 | 1,152.8405 | $1,147.31 | |
ETH | <0.01% | $0.123523 | 9,021.885 | $1,114.41 | |
ETH | <0.01% | $0.001164 | 949,472 | $1,105.52 | |
ETH | <0.01% | $0.109751 | 9,703.3686 | $1,064.95 | |
ETH | <0.01% | $1.61 | 644.389 | $1,037.47 | |
ETH | <0.01% | $0.502481 | 2,035.1307 | $1,022.61 | |
ETH | <0.01% | <$0.000001 | 13,744,578,071 | $1,001.08 | |
ETH | <0.01% | $0.638013 | 1,414.3627 | $902.38 | |
ETH | <0.01% | $0.000001 | 968,665,812.806 | $845.47 | |
ETH | <0.01% | $9.38 | 90.1253 | $845.38 | |
ETH | <0.01% | $0.003439 | 233,723 | $803.83 | |
ETH | <0.01% | $0.000199 | 3,991,098.4875 | $795.19 | |
ETH | <0.01% | $0.004188 | 189,036.8709 | $791.7 | |
ETH | <0.01% | $0.221234 | 3,134.1083 | $693.37 | |
ETH | <0.01% | $4,138.53 | 0.1634 | $676.27 | |
ETH | <0.01% | $0.709048 | 830.4229 | $588.81 | |
ETH | <0.01% | $0.001397 | 407,513.5152 | $569.31 | |
ETH | <0.01% | $0.035561 | 14,006.7878 | $498.09 | |
ETH | <0.01% | $3.44 | 138.8801 | $477.75 | |
ETH | <0.01% | $17.62 | 26.0576 | $459.03 | |
ETH | <0.01% | $0.000024 | 18,768,642.4128 | $456.83 | |
ETH | <0.01% | $4,215.4 | 0.1076 | $453.76 | |
ETH | <0.01% | $0.0064 | 66,030.2174 | $422.57 | |
ETH | <0.01% | $0.018801 | 22,002 | $413.65 | |
ETH | <0.01% | $0.00472 | 84,112.78 | $396.97 | |
ETH | <0.01% | $3.96 | 100 | $395.75 | |
ETH | <0.01% | $0.449078 | 866.8325 | $389.28 | |
ETH | <0.01% | $5.06 | 75 | $379.5 | |
ETH | <0.01% | $0.0766 | 4,375 | $335.13 | |
ETH | <0.01% | $0.334112 | 1,000 | $334.11 | |
ETH | <0.01% | $0.047094 | 6,789.3666 | $319.74 | |
ETH | <0.01% | <$0.000001 | 9,398,757,522,026,620 | $300.7 | |
ETH | <0.01% | $0.359719 | 812.362 | $292.22 | |
ETH | <0.01% | $22.64 | 12.8386 | $290.67 | |
ETH | <0.01% | $0.012957 | 21,000 | $272.09 | |
ETH | <0.01% | $0.053403 | 4,931.95 | $263.38 | |
ETH | <0.01% | $0.000502 | 500,000 | $250.94 | |
ETH | <0.01% | $0.024257 | 10,000 | $242.57 | |
ETH | <0.01% | $0.009285 | 26,000 | $241.4 | |
ETH | <0.01% | $0.003681 | 63,848.1431 | $235.02 | |
ETH | <0.01% | $0.016316 | 12,641.0872 | $206.25 | |
ETH | <0.01% | $0.196361 | 1,000 | $196.36 | |
ETH | <0.01% | $0.059984 | 3,112.3924 | $186.69 | |
ETH | <0.01% | $0.265714 | 700 | $186 | |
ETH | <0.01% | <$0.000001 | 15,144,245,348.8897 | $178.54 | |
ETH | <0.01% | $0.004547 | 37,614.8557 | $171.02 | |
ETH | <0.01% | $0.700546 | 236.6957 | $165.82 | |
ETH | <0.01% | $1.56 | 100 | $156 | |
ETH | <0.01% | $0.612157 | 252.7037 | $154.69 | |
ETH | <0.01% | $0.001284 | 115,110.0488 | $147.86 | |
ETH | <0.01% | $0.05855 | 2,502.4122 | $146.52 | |
ETH | <0.01% | $0.001401 | 96,309.9777 | $134.96 | |
ETH | <0.01% | $0.000428 | 301,742.5343 | $129.29 | |
ETH | <0.01% | $0.056843 | 2,269.7717 | $129.02 | |
ETH | <0.01% | $0.052756 | 2,434.5641 | $128.44 | |
ETH | <0.01% | $173.71 | 0.7356 | $127.77 | |
ETH | <0.01% | $0.499866 | 242.1943 | $121.06 | |
ETH | <0.01% | $0.035805 | 3,316.8418 | $118.76 | |
ETH | <0.01% | $0.000587 | 200,000 | $117.31 | |
ETH | <0.01% | $0.022034 | 5,088.0502 | $112.11 | |
ETH | <0.01% | $0.07043 | 1,543 | $108.67 | |
ETH | <0.01% | $4,361.66 | 0.0246 | $107.32 | |
ETH | <0.01% | $0.051733 | 1,919.5668 | $99.3 | |
ETH | <0.01% | $0.127689 | 749.7069 | $95.73 | |
ETH | <0.01% | <$0.000001 | 4,421,283,497.3062 | $87.99 | |
ETH | <0.01% | $1.3 | 66.6667 | $86.76 | |
ETH | <0.01% | $28.31 | 3.0401 | $86.07 | |
ETH | <0.01% | $0.001014 | 80,873 | $82.01 | |
ETH | <0.01% | $0.002668 | 29,436.0875 | $78.52 | |
ETH | <0.01% | $0.003869 | 20,000 | $77.37 | |
ETH | <0.01% | $0.001116 | 58,562.1586 | $65.36 | |
ETH | <0.01% | $0.155916 | 403.2272 | $62.87 | |
ETH | <0.01% | $0.003564 | 17,408.7581 | $62.05 | |
ETH | <0.01% | $2.07 | 30 | $62.04 | |
ETH | <0.01% | $0.8747 | 69.8636 | $61.11 | |
ETH | <0.01% | $0.629872 | 91.25 | $57.48 | |
ETH | <0.01% | $0.544811 | 100 | $54.48 | |
ETH | <0.01% | $2.22 | 24.435 | $54.25 | |
ETH | <0.01% | $3.84 | 13.37 | $51.34 | |
ETH | <0.01% | $4,250.27 | 0.0112 | $47.45 | |
ETH | <0.01% | $0.237806 | 186.0414 | $44.24 | |
ETH | <0.01% | $0.000193 | 224,825.2781 | $43.28 | |
ETH | <0.01% | $4,208.61 | 0.00938948 | $39.52 | |
ETH | <0.01% | $3.91 | 10 | $39.1 | |
ETH | <0.01% | $0.999657 | 38.7755 | $38.76 | |
ETH | <0.01% | $0.030925 | 1,232 | $38.1 | |
ETH | <0.01% | $1.93 | 16.6998 | $32.23 | |
ETH | <0.01% | $0.006445 | 4,575.096 | $29.49 | |
ETH | <0.01% | $0.000003 | 10,000,000 | $26.64 | |
ETH | <0.01% | $0.001506 | 17,336.8714 | $26.11 | |
ETH | <0.01% | $1 | 25 | $25 | |
ETH | <0.01% | $24.25 | 1 | $24.25 | |
ETH | <0.01% | $3.13 | 6.8402 | $21.41 | |
ETH | <0.01% | $1.05 | 20 | $21.04 | |
ETH | <0.01% | $0.270574 | 76.3986 | $20.67 | |
ETH | <0.01% | $0.00154 | 12,660 | $19.5 | |
ETH | <0.01% | $0.000444 | 43,775.8876 | $19.42 | |
ETH | <0.01% | $1.29 | 15 | $19.35 | |
ETH | <0.01% | $0.000454 | 41,185.2031 | $18.72 | |
ETH | <0.01% | $0.000449 | 40,252.26 | $18.08 | |
ETH | <0.01% | $0.08236 | 216 | $17.79 | |
ETH | <0.01% | $0.995963 | 17.7837 | $17.71 | |
ETH | <0.01% | $0.001754 | 10,077.7578 | $17.68 | |
ETH | <0.01% | $0.020753 | 845.7611 | $17.55 | |
ETH | <0.01% | $1.13 | 14.7662 | $16.69 | |
ETH | <0.01% | $13.51 | 1 | $13.51 | |
ETH | <0.01% | $1.34 | 10 | $13.4 | |
ETH | <0.01% | $0.737163 | 18 | $13.27 | |
ETH | <0.01% | $0.000743 | 16,952.5 | $12.6 | |
ETH | <0.01% | $0.219626 | 50 | $10.98 | |
ETH | <0.01% | $1.07 | 10 | $10.69 | |
ETH | <0.01% | $0.005081 | 1,939.2096 | $9.85 | |
ETH | <0.01% | $0.000122 | 70,604.6177 | $8.64 | |
ETH | <0.01% | $0.016651 | 500 | $8.33 | |
ETH | <0.01% | $0.027138 | 301 | $8.17 | |
ETH | <0.01% | $0.017735 | 452.844 | $8.03 | |
ETH | <0.01% | $1.31 | 5.98 | $7.83 | |
ETH | <0.01% | $6.59 | 1 | $6.59 | |
ETH | <0.01% | $0.633633 | 10 | $6.34 | |
ETH | <0.01% | $6.32 | 1 | $6.32 | |
ETH | <0.01% | $0.005977 | 985.58 | $5.89 | |
ETH | <0.01% | $0.058592 | 100 | $5.86 | |
ETH | <0.01% | $42.9 | 0.1344 | $5.77 | |
ETH | <0.01% | $0.054458 | 100 | $5.45 | |
ETH | <0.01% | $0.998252 | 5.2069 | $5.2 | |
ETH | <0.01% | $2.68 | 1.8666 | $5 | |
ETH | <0.01% | $0.490922 | 10 | $4.91 | |
ETH | <0.01% | $15.97 | 0.3 | $4.79 | |
ETH | <0.01% | $0.042752 | 110.01 | $4.7 | |
ETH | <0.01% | $0.465554 | 10.05 | $4.68 | |
ETH | <0.01% | $0.070935 | 64.9872 | $4.61 | |
ETH | <0.01% | $0.000029 | 158,000 | $4.51 | |
ETH | <0.01% | $2.43 | 1.8402 | $4.47 | |
ETH | <0.01% | $0.004267 | 1,000 | $4.27 | |
ETH | <0.01% | $0.083128 | 50 | $4.16 | |
ETH | <0.01% | $4,111.03 | 0.001 | $4.11 | |
ETH | <0.01% | $0.025184 | 158.0383 | $3.98 | |
ETH | <0.01% | $0.177194 | 22 | $3.9 | |
ETH | <0.01% | $0.001741 | 2,200 | $3.83 | |
ETH | <0.01% | $0.003118 | 1,000 | $3.12 | |
ETH | <0.01% | $0.155334 | 20 | $3.11 | |
ETH | <0.01% | <$0.000001 | 27,823,693.2694 | $2.78 | |
ETH | <0.01% | $91.4 | 0.0296 | $2.7 | |
ETH | <0.01% | $1.27 | 2 | $2.55 | |
ETH | <0.01% | $0.251598 | 10 | $2.52 | |
ETH | <0.01% | <$0.000001 | 599,731,919.3946 | $2.27 | |
ETH | <0.01% | $0.201922 | 10 | $2.02 | |
ETH | <0.01% | $0.015611 | 126 | $1.97 | |
ETH | <0.01% | $0.392683 | 5 | $1.96 | |
ETH | <0.01% | $111.65 | 0.0154 | $1.72 | |
ETH | <0.01% | $0.000014 | 120,325 | $1.69 | |
ETH | <0.01% | $0.005356 | 300 | $1.61 | |
ETH | <0.01% | $0.154748 | 10 | $1.55 | |
ETH | <0.01% | $1.05 | 1 | $1.05 | |
ETH | <0.01% | $0.00096 | 1,000 | $0.96 | |
ETH | <0.01% | $0.008582 | 111.614 | $0.9578 | |
ETH | <0.01% | $0.049788 | 15 | $0.7468 | |
ETH | <0.01% | $0.002004 | 319.8655 | $0.6411 | |
ETH | <0.01% | $0.044149 | 13.4297 | $0.5929 | |
ETH | <0.01% | $58.38 | 0.01 | $0.5838 | |
ETH | <0.01% | $0.050146 | 10 | $0.5014 | |
ETH | <0.01% | $0.001041 | 462.9959 | $0.4821 | |
ETH | <0.01% | $0.999743 | 0.4508 | $0.4506 | |
ETH | <0.01% | $0.218019 | 2 | $0.436 | |
ETH | <0.01% | $0.318851 | 1.3 | $0.4145 | |
ETH | <0.01% | $0.003936 | 100 | $0.3935 | |
ETH | <0.01% | $0.003829 | 100 | $0.3828 | |
ETH | <0.01% | $0.339275 | 1 | $0.3392 | |
ETH | <0.01% | $0.032865 | 10 | $0.3286 | |
ETH | <0.01% | $0.029176 | 10 | $0.2917 | |
ETH | <0.01% | $0.000057 | 4,796.2096 | $0.2756 | |
ETH | <0.01% | $0.026889 | 10 | $0.2688 | |
ETH | <0.01% | $0.001493 | 93 | $0.1388 | |
ETH | <0.01% | $3.02 | 0.0419 | $0.1264 | |
ETH | <0.01% | $0.029282 | 4.2069 | $0.1231 | |
ETH | <0.01% | $1.19 | 0.1 | $0.119 | |
ETH | <0.01% | $11.43 | 0.01 | $0.1143 | |
ETH | <0.01% | $0.001143 | 100 | $0.1143 | |
ETH | <0.01% | $0.001086 | 100 | $0.1086 | |
ETH | <0.01% | $1.04 | 0.1 | $0.1036 | |
ZKEVM | <0.01% | $0.999924 | 1.5 | $1.5 | |
ZKEVM | <0.01% | $15.74 | 361.0446 | $5,682.84 | |
ZKEVM | <0.01% | $3.44 | 124.9884 | $429.96 | |
ZKEVM | <0.01% | $1.05 | 6.144 | $6.45 | |
ZKEVM | 0.02% | $3,914.18 | 14.9513 | $58,522.21 | |
ZKEVM | <0.01% | $0.995531 | 37.9061 | $37.74 | |
ZKEVM | 0.08% | $0.259614 | 799,819.1608 | $207,644.25 | |
ZKEVM | <0.01% | $0.465436 | 1,055.1737 | $491.12 | |
BSC | <0.01% | $1.86 | 6,904.6581 | $12,870.66 | |
BSC | <0.01% | $3,913.38 | 0.00446615 | $17.48 | |
BSC | <0.01% | $730.73 | 0.0149 | $10.92 | |
ZKSYNC | <0.01% | $3,908.44 | 0.3927 | $1,534.94 | |
ARB | <0.01% | $3,910.4 | 0.0808 | $316.08 | |
POL | <0.01% | $0.619144 | 156.0254 | $96.6 | |
POL | <0.01% | $3,912.34 | 0.005 | $19.56 | |
BASE | <0.01% | $0.000047 | 587,426.905 | $27.53 | |
BASE | <0.01% | $3,910.87 | 0.00486917 | $19.04 | |
LINEA | <0.01% | $3,908.44 | 0.0015 | $5.86 | |
AVAX | <0.01% | $52.54 | 0.11 | $5.78 | |
OP | <0.01% | $3,910.46 | 0.00142285 | $5.56 | |
SCROLL | <0.01% | $3,908.44 | 0.001 | $3.91 | |
GLMR | <0.01% | $0.320251 | 0.1188 | $0.038049 | |
MANTLE | <0.01% | $1.26 | 0.00541127 | $0.006796 |
[ Download: CSV Export ]
[ 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.