Polygon Sponsored slots available. Book your slot here!
Source Code
Latest 25 from a total of 76 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Update Whitelist | 78697276 | 124 days ago | IN | 0 POL | 0.00302947 | ||||
| Update Whitelist | 78697129 | 124 days ago | IN | 0 POL | 0.00316349 | ||||
| Update Whitelist | 77503337 | 151 days ago | IN | 0 POL | 0.009887 | ||||
| Update Whitelist | 77502650 | 151 days ago | IN | 0 POL | 0.00842352 | ||||
| Update Whitelist | 76223791 | 183 days ago | IN | 0 POL | 0.00075577 | ||||
| Update Whitelist | 76223656 | 183 days ago | IN | 0 POL | 0.00075593 | ||||
| Update Whitelist | 66537313 | 424 days ago | IN | 0 POL | 0.00240898 | ||||
| Update Whitelist | 66537189 | 424 days ago | IN | 0 POL | 0.00260318 | ||||
| Update Whitelist | 65912367 | 440 days ago | IN | 0 POL | 0.00248345 | ||||
| Update Whitelist | 65912241 | 440 days ago | IN | 0 POL | 0.0028647 | ||||
| Update Whitelist | 63061777 | 512 days ago | IN | 0 POL | 0.00093877 | ||||
| Update Whitelist | 61372868 | 553 days ago | IN | 0 POL | 0.00091255 | ||||
| Update Whitelist | 59664187 | 597 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 59664098 | 597 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 57753288 | 645 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 57753166 | 645 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 57722936 | 645 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 57077905 | 662 days ago | IN | 0 POL | 0.00094474 | ||||
| Update Whitelist | 56893876 | 667 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 56854304 | 668 days ago | IN | 0 POL | 0.00090099 | ||||
| Update Whitelist | 56854122 | 668 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 56853997 | 668 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 56853852 | 668 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 56853721 | 668 days ago | IN | 0 POL | 0.00090135 | ||||
| Update Whitelist | 56853584 | 668 days ago | IN | 0 POL | 0.00090099 |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SoulWhitelist
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract SoulWhitelist is Ownable {
bytes32 public _whitelist;
address public _admin;
event WhitelistUpdated(bytes32 merkle_root);
constructor() {}
modifier onlyAdmin() {
require(msg.sender == _admin || msg.sender == owner(), "Only Admin");
_;
}
// MARK: - Only Owner
function setAdmin(address admin) external onlyOwner {
_admin = admin;
}
// MARK: - Only Admin
function updateWhitelist(bytes32 merkle_root) external onlyAdmin {
_whitelist = merkle_root;
emit WhitelistUpdated(merkle_root);
}
// MARK: - Public
function whitelisted(
bytes32[] memory proof,
address account,
uint256 amount,
uint256 level
) public view returns (uint256) {
bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(account, amount, level))));
uint256 val = MerkleProof.verify(proof, _whitelist, leaf) ? amount : 0;
return val;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The tree and the proofs can be generated using our
* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
* You will find a quickstart guide in the readme.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
* OpenZeppelin's JavaScript library generates merkle trees that are safe
* against this attack out of the box.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
* proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
* leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
* respectively.
*
* CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
* is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
* tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}{
"remappings": [
"@openzeppelin/=lib/openzeppelin-contracts/",
"@semanticSBT/=lib/semanticSBT/",
"ds-test/=lib/forge-std/lib/ds-test/src/",
"forge-std/=lib/forge-std/src/",
"openzeppelin-contracts/=lib/openzeppelin-contracts/",
"semanticSBT/=lib/semanticSBT/contracts/"
],
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"bytecodeHash": "ipfs"
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"evmVersion": "london",
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"_admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_whitelist","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkle_root","type":"bytes32"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"level","type":"uint256"}],"name":"whitelisted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61060a8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ed57806397f376a8146100fe578063ad61815e1461011f578063f2fde38b1461012857600080fd5b806301bc45c91461008d5780632152cb02146100bd578063704b6c02146100d2578063715018a6146100e5575b600080fd5b6002546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100d06100cb366004610451565b61013b565b005b6100d06100e0366004610486565b6101d7565b6100d0610201565b6000546001600160a01b03166100a0565b61011161010c3660046104b7565b610215565b6040519081526020016100b4565b61011160015481565b6100d0610136366004610486565b610299565b6002546001600160a01b031633148061015e57506000546001600160a01b031633145b61019c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9020b236b4b760b11b60448201526064015b60405180910390fd5b60018190556040518181527f136c0469109f45a2bf2f764309926b484a507d7645843502b6a6a68b2e5dc0eb9060200160405180910390a150565b6101df610312565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610209610312565b610213600061036c565b565b604080516001600160a01b038516602082015290810183905260608101829052600090819060800160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050600061028187600154846103bc565b61028c57600061028e565b845b979650505050505050565b6102a1610312565b6001600160a01b0381166103065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610193565b61030f8161036c565b50565b6000546001600160a01b031633146102135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610193565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826103c985846103d2565b14949350505050565b600081815b845181101561041757610403828683815181106103f6576103f6610597565b602002602001015161041f565b91508061040f816105ad565b9150506103d7565b509392505050565b600081831061043b57600082815260208490526040902061044a565b60008381526020839052604090205b9392505050565b60006020828403121561046357600080fd5b5035919050565b80356001600160a01b038116811461048157600080fd5b919050565b60006020828403121561049857600080fd5b61044a8261046a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156104cd57600080fd5b843567ffffffffffffffff808211156104e557600080fd5b818701915087601f8301126104f957600080fd5b813560208282111561050d5761050d6104a1565b8160051b604051601f19603f83011681018181108682111715610532576105326104a1565b60405292835281830193508481018201928b84111561055057600080fd5b948201945b8386101561056e57853585529482019493820193610555565b985061057d905089820161046a565b979a97995050505060408601359560600135949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016105cd57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220c9b5043a720d9890fb99e6138e04d0146ac16fcacb00c857ba62ccdb76b4e84664736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100885760003560e01c80638da5cb5b1161005b5780638da5cb5b146100ed57806397f376a8146100fe578063ad61815e1461011f578063f2fde38b1461012857600080fd5b806301bc45c91461008d5780632152cb02146100bd578063704b6c02146100d2578063715018a6146100e5575b600080fd5b6002546100a0906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100d06100cb366004610451565b61013b565b005b6100d06100e0366004610486565b6101d7565b6100d0610201565b6000546001600160a01b03166100a0565b61011161010c3660046104b7565b610215565b6040519081526020016100b4565b61011160015481565b6100d0610136366004610486565b610299565b6002546001600160a01b031633148061015e57506000546001600160a01b031633145b61019c5760405162461bcd60e51b815260206004820152600a60248201526927b7363c9020b236b4b760b11b60448201526064015b60405180910390fd5b60018190556040518181527f136c0469109f45a2bf2f764309926b484a507d7645843502b6a6a68b2e5dc0eb9060200160405180910390a150565b6101df610312565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b610209610312565b610213600061036c565b565b604080516001600160a01b038516602082015290810183905260608101829052600090819060800160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050600061028187600154846103bc565b61028c57600061028e565b845b979650505050505050565b6102a1610312565b6001600160a01b0381166103065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610193565b61030f8161036c565b50565b6000546001600160a01b031633146102135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610193565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826103c985846103d2565b14949350505050565b600081815b845181101561041757610403828683815181106103f6576103f6610597565b602002602001015161041f565b91508061040f816105ad565b9150506103d7565b509392505050565b600081831061043b57600082815260208490526040902061044a565b60008381526020839052604090205b9392505050565b60006020828403121561046357600080fd5b5035919050565b80356001600160a01b038116811461048157600080fd5b919050565b60006020828403121561049857600080fd5b61044a8261046a565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156104cd57600080fd5b843567ffffffffffffffff808211156104e557600080fd5b818701915087601f8301126104f957600080fd5b813560208282111561050d5761050d6104a1565b8160051b604051601f19603f83011681018181108682111715610532576105326104a1565b60405292835281830193508481018201928b84111561055057600080fd5b948201945b8386101561056e57853585529482019493820193610555565b985061057d905089820161046a565b979a97995050505060408601359560600135949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016105cd57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220c9b5043a720d9890fb99e6138e04d0146ac16fcacb00c857ba62ccdb76b4e84664736f6c63430008110033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in POL
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.