Latest 25 from a total of 92,069 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 26459004 | 43 secs ago | IN | 0 ETH | 0.00000151 | ||||
| Claim | 26458581 | 7 mins ago | IN | 0 ETH | 0.00000381 | ||||
| Claim | 26458415 | 10 mins ago | IN | 0 ETH | 0.00000167 | ||||
| Claim | 26458223 | 13 mins ago | IN | 0 ETH | 0.00000135 | ||||
| Claim With Recip... | 26458176 | 14 mins ago | IN | 0 ETH | 0.00000138 | ||||
| Claim | 26457991 | 17 mins ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26457936 | 18 mins ago | IN | 0 ETH | 0.00000148 | ||||
| Claim | 26457930 | 18 mins ago | IN | 0 ETH | 0.00000149 | ||||
| Claim | 26457670 | 22 mins ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26457550 | 24 mins ago | IN | 0 ETH | 0.00000184 | ||||
| Claim | 26456941 | 35 mins ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26456334 | 45 mins ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26455543 | 58 mins ago | IN | 0 ETH | 0.00000173 | ||||
| Claim | 26455323 | 1 hr ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26455302 | 1 hr ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26454892 | 1 hr ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26454257 | 1 hr ago | IN | 0 ETH | 0.00000135 | ||||
| Claim | 26453727 | 1 hr ago | IN | 0 ETH | 0.00000182 | ||||
| Claim | 26453528 | 1 hr ago | IN | 0 ETH | 0.0000016 | ||||
| Claim | 26453395 | 1 hr ago | IN | 0 ETH | 0.00000235 | ||||
| Claim | 26453361 | 1 hr ago | IN | 0 ETH | 0.00000156 | ||||
| Claim | 26452998 | 1 hr ago | IN | 0 ETH | 0.00000156 | ||||
| Claim | 26452947 | 1 hr ago | IN | 0 ETH | 0.00000156 | ||||
| Claim | 26452072 | 1 hr ago | IN | 0 ETH | 0.00000265 | ||||
| Claim | 26451945 | 1 hr ago | IN | 0 ETH | 0.00000135 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Contract Name:
ERC1967Proxy
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
Yes with 100 runs
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// 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);
}
/**
* @dev Returns the current implementation address.
*/
function _implementation() internal view virtual override returns (address impl) {
return ERC1967Upgrade._getImplementation();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)
pragma solidity ^0.8.0;
/**
* @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
*
* _Available since v4.8.3._
*/
interface IERC1967 {
/**
* @dev Emitted when the implementation is upgraded.
*/
event Upgraded(address indexed implementation);
/**
* @dev Emitted when the admin account has changed.
*/
event AdminChanged(address previousAdmin, address newAdmin);
/**
* @dev Emitted when the beacon is changed.
*/
event BeaconUpgraded(address indexed beacon);
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)
pragma solidity ^0.8.2;
import "../beacon/IBeacon.sol";
import "../../interfaces/IERC1967.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._
*/
abstract contract ERC1967Upgrade is IERC1967 {
// 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 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 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 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);
}
}
}// 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.
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 {}
}// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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://consensys.net/diligence/blog/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.8.0/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);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
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:
* ```solidity
* 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`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes 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
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}{
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"appendCBOR": true,
"bytecodeHash": "ipfs",
"useLiteralContent": false
},
"optimizer": {
"enabled": true,
"runs": 100
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": [
"@openzeppelin/=node_modules/@openzeppelin/",
"forge-std/=node_modules/forge-std/src/",
"oz/=node_modules/@openzeppelin/contracts/",
"@utils/=node_modules/utils/src/",
"hardhat/=node_modules/hardhat/",
"lz/=node_modules/utils/lib/solidity-examples/contracts/",
"stringutils/=node_modules/utils/lib/solidity-stringutils/src/",
"utils/=node_modules/utils/"
],
"viaIR": false
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","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"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526040516104a13803806104a1833981016040819052610022916102b0565b61002d82825f610034565b50506103c4565b61003d8361005f565b5f825111806100495750805b1561005a57610058838361009e565b505b505050565b610068816100ca565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b905f90a250565b60606100c3838360405180606001604052806027815260200161047a6027913961017d565b9392505050565b6001600160a01b0381163b61013c5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b0319166001600160a01b0392909216919091179055565b60605f80856001600160a01b0316856040516101999190610379565b5f60405180830381855af49150503d805f81146101d1576040519150601f19603f3d011682016040523d82523d5f602084013e6101d6565b606091505b5090925090506101e8868383876101f2565b9695505050505050565b606083156102605782515f03610259576001600160a01b0385163b6102595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610133565b508161026a565b61026a8383610272565b949350505050565b8151156102825781518083602001fd5b8060405162461bcd60e51b8152600401610133919061038f565b634e487b7160e01b5f52604160045260245ffd5b5f80604083850312156102c1575f80fd5b82516001600160a01b03811681146102d7575f80fd5b60208401519092506001600160401b03808211156102f3575f80fd5b818501915085601f830112610306575f80fd5b8151818111156103185761031861029c565b604051601f8201601f19908116603f011681019083821181831017156103405761034061029c565b81604052828152886020848701011115610358575f80fd5b8260208601602083015e5f6020848301015280955050505050509250929050565b5f82518060208501845e5f920191825250919050565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b60aa806103d05f395ff3fe608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea2646970667358221220ef338642531cc2bf70925d0fe31abe2503013a8aed53abcdfd0547c8cdbd885364736f6c63430008190033416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564000000000000000000000000918261fa5dd9c3b1358ca911792e9bdf3c5cca3500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405236601057600e6013565b005b600e5b601f601b6021565b6057565b565b5f60527f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b905090565b365f80375f80365f845af43d5f803e8080156070573d5ff35b3d5ffdfea2646970667358221220ef338642531cc2bf70925d0fe31abe2503013a8aed53abcdfd0547c8cdbd885364736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000918261fa5dd9c3b1358ca911792e9bdf3c5cca3500000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _logic (address): 0x918261fa5Dd9C3b1358cA911792E9bDF3c5CCa35
Arg [1] : _data (bytes): 0x
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000918261fa5dd9c3b1358ca911792e9bdf3c5cca35
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$14,369,293.11
Net Worth in ETH
7,110.449725
Token Allocations
MORPHO
23.79%
WXPL
13.32%
UNI
9.10%
Others
53.78%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 13.86% | $1.95 | 1,021,120.981 | $1,991,185.91 | |
| ETH | 8.92% | $3.84 | 333,965.9219 | $1,282,429.14 | |
| ETH | 7.79% | $1 | 1,119,212.9807 | $1,119,212.98 | |
| ETH | 5.60% | $0.999711 | 805,373.6066 | $805,140.85 | |
| ETH | 2.61% | $0.999876 | 374,657.2062 | $374,610.75 | |
| ETH | 1.38% | $0.999905 | 197,840.9754 | $197,822.18 | |
| ETH | 1.04% | $0.0373 | 4,020,971.0854 | $149,982.06 | |
| ETH | 0.97% | $0.100494 | 1,390,946.5039 | $139,781.78 | |
| ETH | 0.97% | $2,020.62 | 69.043 | $139,510.03 | |
| ETH | 0.78% | $109.86 | 1,016.7365 | $111,698.68 | |
| ETH | 0.69% | $0.999975 | 99,088.026 | $99,085.55 | |
| ETH | 0.64% | $1 | 92,614.6576 | $92,614.66 | |
| ETH | 0.64% | $0.999973 | 91,451.5904 | $91,449.12 | |
| ETH | 0.39% | $1.16 | 48,017.6067 | $55,700.42 | |
| ETH | 0.29% | $0.998988 | 42,369.9078 | $42,327.03 | |
| ETH | 0.26% | $1.11 | 33,189.9078 | $36,840.8 | |
| ETH | 0.25% | $0.998758 | 35,958.2752 | $35,913.6 | |
| ETH | 0.25% | $2.37 | 14,983.5049 | $35,510.91 | |
| ETH | 0.22% | $69,518 | 0.4554 | $31,659.8 | |
| ETH | 0.16% | $0.020865 | 1,112,250.3612 | $23,207.27 | |
| ETH | 0.14% | $0.000344 | 60,136,200.3575 | $20,666.87 | |
| ETH | 0.13% | $15.97 | 1,140.2613 | $18,209.97 | |
| ETH | 0.11% | $0.205754 | 80,017.7195 | $16,463.97 | |
| ETH | 0.11% | $0.608207 | 25,985.4409 | $15,804.53 | |
| ETH | 0.11% | $69,425.61 | 0.2229 | $15,472.01 | |
| ETH | 0.09% | $0.0405 | 321,882.947 | $13,036.33 | |
| ETH | 0.09% | $2,018.46 | 6.0897 | $12,291.76 | |
| ETH | 0.08% | $1.02 | 11,543.4895 | $11,728.19 | |
| ETH | 0.08% | $0.997384 | 11,503.1762 | $11,473.08 | |
| ETH | 0.07% | $1 | 9,765.5121 | $9,765.51 | |
| ETH | 0.07% | $1.04 | 8,963.4754 | $9,348.9 | |
| ETH | 0.06% | $2,492.05 | 3.6234 | $9,029.81 | |
| ETH | 0.06% | $0.007832 | 1,011,898.4008 | $7,925.44 | |
| ETH | 0.05% | $0.004875 | 1,528,761.0623 | $7,453.34 | |
| ETH | 0.05% | $0.993595 | 7,333.0887 | $7,286.12 | |
| ETH | 0.05% | $0.586177 | 12,218.6933 | $7,162.32 | |
| ETH | 0.04% | $2,165.71 | 2.5038 | $5,422.6 | |
| ETH | 0.04% | $0.920233 | 5,752.2712 | $5,293.43 | |
| ETH | 0.03% | $247.26 | 20.0272 | $4,951.93 | |
| ETH | 0.03% | $1.16 | 4,199.13 | $4,870.99 | |
| ETH | 0.03% | $2,161.01 | 2.0893 | $4,514.95 | |
| ETH | 0.03% | $1.13 | 3,849.897 | $4,350.38 | |
| ETH | 0.03% | $0.000699 | 5,962,195.772 | $4,166.46 | |
| ETH | 0.03% | $0.103653 | 39,963.0256 | $4,142.29 | |
| ETH | 0.03% | $0.000459 | 8,335,118.2771 | $3,826.57 | |
| ETH | 0.02% | $1 | 3,319.5563 | $3,319.56 | |
| ETH | 0.02% | $0.186398 | 17,193.38 | $3,204.81 | |
| ETH | 0.02% | $0.003191 | 997,655.5125 | $3,183.32 | |
| ETH | 0.02% | $1 | 3,011.8522 | $3,023.9 | |
| ETH | 0.02% | $10.93 | 222.13 | $2,427.88 | |
| ETH | 0.01% | $0.253602 | 6,252.3867 | $1,585.62 | |
| ETH | 0.01% | $1.16 | 1,351.8176 | $1,568.11 | |
| ETH | <0.01% | $0.999465 | 1,340.1326 | $1,339.42 | |
| ETH | <0.01% | $0.245909 | 5,249.9123 | $1,291 | |
| ETH | <0.01% | $0.006918 | 159,759.2939 | $1,105.2 | |
| ETH | <0.01% | $0.139763 | 7,130.0671 | $996.52 | |
| ETH | <0.01% | $0.721871 | 1,329.0607 | $959.41 | |
| ETH | <0.01% | $1.37 | 679.4343 | $930.82 | |
| ETH | <0.01% | $0.040049 | 16,536.1995 | $662.25 | |
| ETH | <0.01% | $0.000181 | 2,665,796.8312 | $483.48 | |
| ETH | <0.01% | $0.015026 | 31,990.8793 | $480.68 | |
| ETH | <0.01% | $0.197421 | 815.5145 | $161 | |
| ETH | <0.01% | $0.016054 | 9,273.0575 | $148.87 | |
| ETH | <0.01% | $0.260791 | 438.5267 | $114.36 | |
| ETH | <0.01% | $0.145843 | 642.127 | $93.65 | |
| ETH | <0.01% | $0.028904 | 2,292.6017 | $66.26 | |
| ETH | <0.01% | $1.92 | 26.8912 | $51.63 | |
| ETH | <0.01% | $0.035804 | 1,410.9298 | $50.52 | |
| ETH | <0.01% | $0.386979 | 110.3051 | $42.69 | |
| ETH | <0.01% | $0.025737 | 1,465.5166 | $37.72 | |
| ETH | <0.01% | $0.000226 | 113,477.0914 | $25.63 | |
| ETH | <0.01% | $0.39023 | 36.5093 | $14.25 | |
| ETH | <0.01% | $1.12 | 12.2623 | $13.72 | |
| ETH | <0.01% | $22.83 | 0.5 | $11.41 | |
| ETH | <0.01% | $0.004598 | 2,171.1912 | $9.98 | |
| ETH | <0.01% | $0.004439 | 2,198.7681 | $9.76 | |
| ETH | <0.01% | $0.000023 | 384,683.459 | $8.8 | |
| ETH | <0.01% | $1 | 5.036 | $5.04 | |
| ETH | <0.01% | <$0.000001 | 42,690,000 | $4.73 | |
| ETH | <0.01% | $0.002072 | 1,963.4772 | $4.07 | |
| ETH | <0.01% | $0.001544 | 2,420.0838 | $3.74 | |
| ETH | <0.01% | $0.999761 | 2.6092 | $2.61 | |
| ETH | <0.01% | $0.999955 | 2.3344 | $2.33 | |
| ETH | <0.01% | $0.291187 | 4 | $1.16 | |
| ETH | <0.01% | $0.000083 | 3,807.4766 | $0.3152 | |
| ETH | <0.01% | $0.000001 | 188,585.9921 | $0.136 | |
| ETH | <0.01% | $11.89 | 0.01 | $0.1189 | |
| PLASMA | 13.32% | $0.096513 | 19,830,689.768 | $1,913,919.36 | |
| PLASMA | <0.01% | $0.998295 | 3.4719 | $3.47 | |
| BASE | 9.19% | $1.95 | 677,566.1341 | $1,321,253.96 | |
| BASE | 1.44% | $5.32 | 38,765.6675 | $206,233.35 | |
| BASE | 1.42% | $0.004493 | 45,431,675.1078 | $204,128.15 | |
| BASE | 0.38% | $0.041725 | 1,301,278.3057 | $54,295.6 | |
| BASE | 0.25% | $0.020204 | 1,744,107.5355 | $35,237.12 | |
| BASE | 0.16% | $1 | 23,614.4712 | $23,614.47 | |
| BASE | 0.07% | $0.109858 | 92,477.4774 | $10,159.39 | |
| BASE | 0.07% | $0.007213 | 1,391,006.9549 | $10,033.54 | |
| BASE | 0.06% | $0.922581 | 8,729.2616 | $8,053.45 | |
| BASE | 0.02% | $0.004875 | 633,074.7179 | $3,086.52 | |
| BASE | 0.02% | $0.00 | 2,626.0643 | $0.00 | |
| BASE | 0.01% | $0.003031 | 555,976.3517 | $1,685.22 | |
| BASE | 0.01% | $0.000317 | 4,816,905.4814 | $1,526.24 | |
| BASE | <0.01% | $0.127184 | 10,540.8427 | $1,340.63 | |
| BASE | <0.01% | $0.000206 | 6,042,023.3592 | $1,246.71 | |
| BASE | <0.01% | $2,269 | 0.3631 | $823.77 | |
| BASE | <0.01% | $1.19 | 690.1958 | $821.33 | |
| BASE | <0.01% | $2,041.55 | 0.302 | $616.61 | |
| BASE | <0.01% | $2,021.28 | 0.2664 | $538.44 | |
| BASE | <0.01% | $0.000016 | 20,853,717.9618 | $342.84 | |
| BASE | <0.01% | $0.001092 | 275,548.5484 | $301.03 | |
| BASE | <0.01% | $0.008 | 33,176.4169 | $265.41 | |
| BASE | <0.01% | $0.00 | 0.1078 | $0.00 | |
| BASE | <0.01% | $0.021014 | 11,076.2943 | $232.76 | |
| BASE | <0.01% | $65,941 | 0.00326859 | $215.53 | |
| BASE | <0.01% | $2,773.1 | 0.0669 | $185.61 | |
| BASE | <0.01% | $0.999978 | 54.4093 | $54.41 | |
| BASE | <0.01% | $0.002233 | 19,066.0831 | $42.57 | |
| BASE | <0.01% | $0.000309 | 111,405.9614 | $34.42 | |
| BASE | <0.01% | $0.024446 | 1,015.1955 | $24.82 | |
| BASE | <0.01% | $0.000001 | 16,680,328.0234 | $24.52 | |
| BASE | <0.01% | $0.001165 | 8,715.7228 | $10.15 | |
| BASE | <0.01% | $0.019895 | 160 | $3.18 | |
| BASE | <0.01% | $0.019424 | 96 | $1.86 | |
| BASE | <0.01% | $0.033878 | 15.5098 | $0.5254 | |
| BASE | <0.01% | $0.000001 | 740,000 | $0.4057 | |
| BASE | <0.01% | $1.28 | 0.2599 | $0.3327 | |
| BASE | <0.01% | $0.000032 | 8,433 | $0.2701 | |
| BASE | <0.01% | $0.00093 | 233.881 | $0.2176 | |
| MONAD | 6.37% | $0.017673 | 51,771,412.9599 | $914,932.37 | |
| MONAD | 3.30% | $1 | 473,598.0645 | $473,598.06 | |
| MONAD | 0.04% | $0.999904 | 5,295.1649 | $5,294.66 | |
| MONAD | <0.01% | $2,263.38 | 0.1721 | $389.53 | |
| HYPEREVM | 1.45% | $1.14 | 183,011.9453 | $208,633.62 | |
| HYPEREVM | 0.86% | $0.999904 | 123,656.8829 | $123,645.01 | |
| HYPEREVM | 0.73% | $1 | 105,188.9638 | $105,188.96 | |
| HYPEREVM | 0.04% | $0.999772 | 5,609.9148 | $5,608.64 | |
| HYPEREVM | <0.01% | $0.003752 | 311,565.6516 | $1,168.85 | |
| HYPEREVM | <0.01% | $32.91 | 34.4579 | $1,134.01 | |
| HYPEREVM | <0.01% | $0.000964 | 404,136.6792 | $389.73 | |
| HYPEREVM | <0.01% | $0.000118 | 142,500.3469 | $16.82 | |
| ARB | 1.31% | $0.098102 | 1,912,357.0906 | $187,606.06 | |
| ARB | 0.41% | $1.95 | 30,291.8773 | $59,069.16 | |
| ARB | 0.33% | $2,021.28 | 23.7112 | $47,926.89 | |
| ARB | 0.25% | $2,314.06 | 15.6588 | $36,235.49 | |
| ARB | 0.23% | $0.999977 | 33,177.3505 | $33,176.59 | |
| ARB | 0.18% | $3.84 | 6,619.6712 | $25,419.54 | |
| ARB | 0.04% | $70,983 | 0.0855 | $6,068.71 | |
| ARB | 0.04% | $0.002741 | 2,000,000 | $5,481.05 | |
| ARB | 0.02% | $0.197279 | 14,667.7921 | $2,893.65 | |
| ARB | <0.01% | $0.913234 | 1,273.2249 | $1,162.75 | |
| ARB | <0.01% | $0.999627 | 1,145.0778 | $1,144.65 | |
| ARB | <0.01% | $0.011394 | 69,588.76 | $792.93 | |
| ARB | <0.01% | $0.998438 | 725.401 | $724.27 | |
| ARB | <0.01% | $0.001226 | 377,588.0387 | $463.09 | |
| ARB | <0.01% | $0.992463 | 412.3117 | $409.2 | |
| ARB | <0.01% | $0.052792 | 6,078.1688 | $320.88 | |
| ARB | <0.01% | $0.772017 | 290.3666 | $224.17 | |
| ARB | <0.01% | $0.00008 | 2,701,945.0459 | $215.05 | |
| ARB | <0.01% | $0.017757 | 10,155.8414 | $180.34 | |
| ARB | <0.01% | $0.014513 | 12,273.7961 | $178.13 | |
| ARB | <0.01% | $0.10751 | 727.387 | $78.2 | |
| ARB | <0.01% | $0.000163 | 113,060.409 | $18.41 | |
| ARB | <0.01% | $0.000005 | 1,392,668.644 | $6.48 | |
| ARB | <0.01% | $0.004875 | 1,161.1134 | $5.66 | |
| ARB | <0.01% | $0.001069 | 3,976.0933 | $4.25 | |
| ARB | <0.01% | $0.000433 | 3,648.0063 | $1.58 | |
| ARB | <0.01% | $2,767.96 | 0.0002858 | $0.791 | |
| ARB | <0.01% | $0.605584 | 0.3514 | $0.2128 | |
| ARB | <0.01% | $0.053291 | 3.4987 | $0.1864 | |
| ARB | <0.01% | $0.001465 | 94.9241 | $0.139 | |
| WORLD | 1.53% | $0.356197 | 617,490.1469 | $219,948.14 | |
| WORLD | 0.13% | $0.00 | 8.4849 | $0.00 | |
| LINEA | 1.14% | $0.003206 | 51,069,253.1483 | $163,706.58 | |
| LINEA | 0.29% | $1 | 41,420.5706 | $41,420.57 | |
| LINEA | <0.01% | $2,256.8 | 0.0815 | $183.82 | |
| POL | 0.71% | $0.010653 | 9,613,369.7711 | $102,414.4 | |
| POL | 0.21% | $16.93 | 1,753.8696 | $29,693.01 | |
| POL | 0.10% | $0.096529 | 154,685.6825 | $14,931.73 | |
| POL | <0.01% | $0.999818 | 610.8131 | $610.7 | |
| POL | <0.01% | $1.17 | 193.9387 | $226.91 | |
| POL | <0.01% | $0.040039 | 2,397.1625 | $95.98 | |
| POL | <0.01% | $0.197221 | 331.3594 | $65.35 | |
| POL | <0.01% | $0.000444 | 93,077.4321 | $41.3 | |
| POL | <0.01% | $0.016054 | 1,145.9626 | $18.4 | |
| POL | <0.01% | <$0.000001 | 72,187,699.6466 | $16.03 | |
| POL | <0.01% | $0.000131 | 108,184.1671 | $14.2 | |
| POL | <0.01% | $0.000022 | 617,586.6554 | $13.67 | |
| POL | <0.01% | $0.000005 | 927,672.9458 | $4.31 | |
| POL | <0.01% | $0.109774 | 38.3713 | $4.21 | |
| POL | <0.01% | $0.00016 | 18,974.9218 | $3.04 | |
| POL | <0.01% | $0.000089 | 21,627.5675 | $1.92 | |
| POL | <0.01% | <$0.000001 | 8,484,220,561.0937 | $1.7 | |
| POL | <0.01% | $0.872195 | 1.1951 | $1.04 | |
| POL | <0.01% | $1 | 0.9849 | $0.9849 | |
| POL | <0.01% | $0.003673 | 161.7672 | $0.5941 | |
| POL | <0.01% | $0.01177 | 46.1553 | $0.5432 | |
| POL | <0.01% | $0.00026 | 970.9488 | $0.2521 | |
| KATANA | 0.40% | $0.997958 | 56,992.1136 | $56,875.74 | |
| KATANA | 0.33% | $1.95 | 24,431.6472 | $47,641.71 | |
| KATANA | 0.09% | $2,256.01 | 5.8916 | $13,291.62 | |
| KATANA | 0.04% | $0.998239 | 5,182.3252 | $5,173.2 | |
| KATANA | <0.01% | $0.870857 | 1,045.6123 | $910.58 | |
| KATANA | <0.01% | $0.997787 | 19.4068 | $19.36 | |
| AVAX | 0.81% | $9.55 | 12,234.3201 | $116,862.61 | |
| AVAX | 0.03% | $0.999786 | 3,812.2027 | $3,811.39 | |
| AVAX | <0.01% | $0.006308 | 22.0429 | $0.139 | |
| OP | 0.55% | $0.118841 | 664,218.2905 | $78,936.26 | |
| OP | <0.01% | $0.007215 | 23,689.9838 | $170.93 | |
| OP | <0.01% | $115.6 | 0.1869 | $21.6 | |
| OP | <0.01% | $0.938144 | 1 | $0.9381 | |
| OP | <0.01% | $0.016054 | 19.9989 | $0.321 | |
| UNI | 0.41% | $1 | 58,397.1634 | $58,397.16 | |
| UNI | 0.04% | $0.922581 | 6,456.0653 | $5,956.24 | |
| UNI | <0.01% | $0.00 | 0.00711789 | $0.00 | |
| BSC | 0.16% | $0.999972 | 22,992.6663 | $22,992.02 | |
| BSC | 0.07% | $1.86 | 5,358.2376 | $9,988.05 | |
| BSC | 0.05% | $0.103349 | 63,714.1519 | $6,584.79 | |
| BSC | 0.04% | $0.489257 | 11,706.352 | $5,727.42 | |
| BSC | 0.03% | $0.99992 | 4,963.8648 | $4,963.47 | |
| BSC | 0.02% | $1.37 | 2,310.2102 | $3,164.99 | |
| BSC | 0.02% | $0.27094 | 10,409.0801 | $2,820.24 | |
| BSC | 0.02% | $0.999815 | 2,799.6887 | $2,799.17 | |
| BSC | <0.01% | $0.925686 | 996.7067 | $922.64 | |
| BSC | <0.01% | $2.9 | 261.7517 | $757.83 | |
| BSC | <0.01% | $1 | 250.0683 | $250.08 | |
| BSC | <0.01% | $0.000257 | 752,489.3772 | $193.69 | |
| BSC | <0.01% | $0.000326 | 556,840.4345 | $181.71 | |
| BSC | <0.01% | $0.001536 | 10,000 | $15.36 | |
| BSC | <0.01% | $1 | 1.6934 | $1.69 | |
| BSC | <0.01% | $640.15 | 0.00161282 | $1.03 | |
| BSC | <0.01% | $3.84 | 0.1261 | $0.4836 | |
| BSC | <0.01% | $0.000015 | 30,000 | $0.435 | |
| CELO | 0.25% | $0.99998 | 36,154.6268 | $36,153.9 | |
| CELO | 0.05% | $0.999567 | 7,472.4584 | $7,469.22 | |
| CELO | 0.01% | $0.074104 | 26,646.1769 | $1,974.59 | |
| CELO | <0.01% | $0.999884 | 12.1548 | $12.15 | |
| MANTLE | 0.29% | $191.74 | 216.7702 | $41,563.51 | |
| MANTLE | 0.01% | $0.716385 | 2,548.9858 | $1,826.06 | |
| GNO | 0.22% | $125.72 | 246.0171 | $30,929.27 | |
| GNO | <0.01% | $0.007923 | 2,450.9271 | $19.42 | |
| GNO | <0.01% | $1 | 13.1497 | $13.15 | |
| SONIC | 0.11% | $0.051182 | 314,236.5879 | $16,083.26 | |
| SONIC | 0.08% | $0.999904 | 11,453.3531 | $11,452.25 | |
| SONIC | <0.01% | $0.921055 | 636.0412 | $585.83 | |
| SONIC | <0.01% | $0.997661 | 304.8949 | $304.18 | |
| SONIC | <0.01% | $3.84 | 66.1189 | $253.9 | |
| SONIC | <0.01% | $0.724711 | 239.8801 | $173.84 | |
| SONIC | <0.01% | $0.015117 | 830.5932 | $12.56 | |
| SONIC | <0.01% | $0.921055 | 1.3025 | $1.2 | |
| SEI | 0.03% | $0.086778 | 48,280.5398 | $4,189.69 | |
| SEI | <0.01% | $0.877708 | 82.17 | $72.12 | |
| BERA | <0.01% | $0.999632 | 980.908 | $980.55 | |
| BERA | <0.01% | $0.444467 | 1,951.3319 | $867.3 | |
| BERA | <0.01% | $0.033307 | 2,008.3294 | $66.89 | |
| TAIKO | <0.01% | $0.117682 | 7,579.4037 | $891.96 | |
| SCROLL | <0.01% | $0.040153 | 3,212.245 | $128.98 | |
| SCROLL | <0.01% | $3.83 | 22.3815 | $85.72 | |
| GLMR | <0.01% | $0.012138 | 7,410.7967 | $89.95 | |
| STABLE | <0.01% | $0.027697 | 200 | $5.54 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.