Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 111 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 20209631 | 209 days ago | IN | 0 ETH | 0.00011126 | ||||
Claim | 20181178 | 213 days ago | IN | 0 ETH | 0.00027467 | ||||
Claim | 20140170 | 219 days ago | IN | 0 ETH | 0.00028984 | ||||
Claim | 20125365 | 221 days ago | IN | 0 ETH | 0.0002352 | ||||
Claim | 20111370 | 223 days ago | IN | 0 ETH | 0.00029974 | ||||
Claim | 20110822 | 223 days ago | IN | 0 ETH | 0.00039821 | ||||
Claim | 20093760 | 225 days ago | IN | 0 ETH | 0.000201 | ||||
Claim | 20090604 | 226 days ago | IN | 0 ETH | 0.0007078 | ||||
Claim | 20090187 | 226 days ago | IN | 0 ETH | 0.00049475 | ||||
Set Root | 20089062 | 226 days ago | IN | 0 ETH | 0.00028601 | ||||
Deposit | 19037822 | 373 days ago | IN | 0.25 ETH | 0.00131476 | ||||
Deposit | 18981736 | 381 days ago | IN | 0.25 ETH | 0.001024 | ||||
Deposit | 18979664 | 381 days ago | IN | 0.25 ETH | 0.00189852 | ||||
Deposit | 18978635 | 381 days ago | IN | 0.25 ETH | 0.00206707 | ||||
Deposit | 18976968 | 382 days ago | IN | 0.25 ETH | 0.00205695 | ||||
Deposit | 18972123 | 382 days ago | IN | 0.25 ETH | 0.00289189 | ||||
Deposit | 18970308 | 383 days ago | IN | 0.25 ETH | 0.00094105 | ||||
Deposit | 18967409 | 383 days ago | IN | 0.25 ETH | 0.00066735 | ||||
Deposit | 18963240 | 384 days ago | IN | 0.25 ETH | 0.00098447 | ||||
Deposit | 18962817 | 384 days ago | IN | 0.25 ETH | 0.00066579 | ||||
Deposit | 18962815 | 384 days ago | IN | 0.25 ETH | 0.0011822 | ||||
Deposit | 18961548 | 384 days ago | IN | 0.25 ETH | 0.00075431 | ||||
Deposit | 18961044 | 384 days ago | IN | 0.25 ETH | 0.00121805 | ||||
Deposit | 18960285 | 384 days ago | IN | 0.25 ETH | 0.00094376 | ||||
Deposit | 18956625 | 384 days ago | IN | 0.25 ETH | 0.00144525 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20209631 | 209 days ago | 0.25 ETH | ||||
20181178 | 213 days ago | 0.25 ETH | ||||
20140170 | 219 days ago | 0.25 ETH | ||||
20125365 | 221 days ago | 0.25 ETH | ||||
20111370 | 223 days ago | 0.25 ETH | ||||
20110822 | 223 days ago | 0.25 ETH | ||||
20093760 | 225 days ago | 0.25 ETH | ||||
20090604 | 226 days ago | 0.25 ETH | ||||
20090187 | 226 days ago | 0.25 ETH | ||||
17971324 | 522 days ago | 0.25 ETH | ||||
17860128 | 538 days ago | 0.25 ETH | ||||
17839946 | 541 days ago | 0.25 ETH | ||||
17831174 | 542 days ago | 0.25 ETH | ||||
17826566 | 543 days ago | 0.25 ETH | ||||
17809503 | 545 days ago | 0.25 ETH | ||||
17809083 | 545 days ago | 0.25 ETH | ||||
17807818 | 545 days ago | 0.25 ETH | ||||
17805056 | 546 days ago | 0.25 ETH | ||||
17801151 | 546 days ago | 0.25 ETH | ||||
17801147 | 546 days ago | 0.25 ETH | ||||
17500193 | 589 days ago | 0.25 ETH | ||||
17487635 | 590 days ago | 0.25 ETH | ||||
17480022 | 591 days ago | 0.25 ETH | ||||
17459240 | 594 days ago | 0.25 ETH | ||||
17446356 | 596 days ago | 0.25 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
EthLock
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPLv3 pragma solidity 0.8.10; import { IERC20 } from "IERC20.sol"; import { MerkleProof } from "MerkleProof.sol"; import { Ownable } from "Ownable.sol"; contract EthLock is Ownable { uint256 private constant DEPOSIT_AMOUNT = 0.25 ether; // Date and time (GMT): Monday, 15 May 2023 00:00:00 uint256 private constant BLOCK_END = 1684108800; bytes32 public merkleRoot; mapping(address => bool) public deposited; mapping(address => bool) public claimed; error InvalidMerkleProof(); error InvalidDepositAmount(); error AlreadyDeposited(); error AlreadyClaimed(); error BlockNotEnded(); error FailedTransfer(); event LogClaim(address indexed user, uint256 amount); event LogDeposit(address indexed user, uint256 amount); event LogNewRoot(bytes32 merkleRoot); function setRoot( bytes32 _merkleRoot ) external onlyOwner { merkleRoot = _merkleRoot; emit LogNewRoot(_merkleRoot); } function canClaim(bytes32[] memory _proof, uint128 _amount) public view returns (bool) { if (claimed[msg.sender]) { revert AlreadyClaimed(); } if (block.timestamp < BLOCK_END) { revert BlockNotEnded(); } bytes32 leaf = keccak256(abi.encodePacked(msg.sender, _amount)); return MerkleProof.verify(_proof, merkleRoot, leaf); } function claim(bytes32[] memory _proof, uint128 _amount) external payable { if (!canClaim(_proof, _amount)) { revert InvalidMerkleProof(); } claimed[msg.sender] = true; (bool sent, ) = msg.sender.call{value: _amount}(""); if (!sent) revert FailedTransfer(); emit LogClaim(msg.sender, _amount); } function deposit() external payable { if (msg.value != DEPOSIT_AMOUNT) revert InvalidDepositAmount(); if (deposited[msg.sender]) revert AlreadyDeposited(); deposited[msg.sender] = true; emit LogDeposit(msg.sender, msg.value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * 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. */ 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 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++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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 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; } }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "libraries": { "EthLock.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"name":"AlreadyClaimed","type":"error"},{"inputs":[],"name":"AlreadyDeposited","type":"error"},{"inputs":[],"name":"BlockNotEnded","type":"error"},{"inputs":[],"name":"FailedTransfer","type":"error"},{"inputs":[],"name":"InvalidDepositAmount","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"LogDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"LogNewRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint128","name":"_amount","type":"uint128"}],"name":"canClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint128","name":"_amount","type":"uint128"}],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"deposited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61085a8061007e6000396000f3fe6080604052600436106100915760003560e01c8063c884ef8311610059578063c884ef8314610141578063cb13cddb14610171578063d0e30db0146101a1578063dab5f340146101a9578063f2fde38b146101c957600080fd5b80632eb4a7ab146100965780633606e8d7146100bf578063715018a6146100d45780638da5cb5b146100e9578063c5331ebb14610111575b600080fd5b3480156100a257600080fd5b506100ac60015481565b6040519081526020015b60405180910390f35b6100d26100cd366004610697565b6101e9565b005b3480156100e057600080fd5b506100d26102dc565b3480156100f557600080fd5b506000546040516001600160a01b0390911681526020016100b6565b34801561011d57600080fd5b5061013161012c366004610697565b61031b565b60405190151581526020016100b6565b34801561014d57600080fd5b5061013161015c366004610767565b60036020526000908152604090205460ff1681565b34801561017d57600080fd5b5061013161018c366004610767565b60026020526000908152604090205460ff1681565b6100d26103dc565b3480156101b557600080fd5b506100d26101c4366004610797565b61048b565b3480156101d557600080fd5b506100d26101e4366004610767565b6104f0565b6101f3828261031b565b6102105760405163582f497d60e11b815260040160405180910390fd5b33600081815260036020526040808220805460ff19166001179055519091906001600160801b038416908381818185875af1925050503d8060008114610272576040519150601f19603f3d011682016040523d82523d6000602084013e610277565b606091505b50509050806102995760405163bfa871c560e01b815260040160405180910390fd5b6040516001600160801b038316815233907ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b29060200160405180910390a2505050565b6000546001600160a01b0316331461030f5760405162461bcd60e51b8152600401610306906107b0565b60405180910390fd5b610319600061058b565b565b3360009081526003602052604081205460ff161561034c57604051630c8d9eab60e31b815260040160405180910390fd5b636461760042101561037157604051632a137cfd60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526fffffffffffffffffffffffffffffffff19608084901b1660348201526000906044016040516020818303038152906040528051906020012090506103d484600154836105db565b949350505050565b6703782dace9d9000034146104045760405163fe9ba5cd60e01b815260040160405180910390fd5b3360009081526002602052604090205460ff16156104355760405163d5a8211560e01b815260040160405180910390fd5b3360008181526002602052604090819020805460ff19166001179055517f1b851e1031ef35a238e6c67d0c7991162390df915f70eaf9098dbf0b175a6198906104819034815260200190565b60405180910390a2565b6000546001600160a01b031633146104b55760405162461bcd60e51b8152600401610306906107b0565b60018190556040518181527f1692fd99d128b683e28674e58fcf14b99abc6e42322367ae77260c361fe443b69060200160405180910390a150565b6000546001600160a01b0316331461051a5760405162461bcd60e51b8152600401610306906107b0565b6001600160a01b03811661057f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610306565b6105888161058b565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826105e885846105f1565b14949350505050565b600081815b845181101561065d576000858281518110610613576106136107e5565b60200260200101519050808311610639576000838152602082905260409020925061064a565b600081815260208490526040902092505b5080610655816107fb565b9150506105f6565b509392505050565b634e487b7160e01b600052604160045260246000fd5b80356001600160801b038116811461069257600080fd5b919050565b600080604083850312156106aa57600080fd5b823567ffffffffffffffff808211156106c257600080fd5b818501915085601f8301126106d657600080fd5b81356020828211156106ea576106ea610665565b8160051b604051601f19603f8301168101818110868211171561070f5761070f610665565b60405292835281830193508481018201928984111561072d57600080fd5b948201945b8386101561074b57853585529482019493820193610732565b965061075a905087820161067b565b9450505050509250929050565b60006020828403121561077957600080fd5b81356001600160a01b038116811461079057600080fd5b9392505050565b6000602082840312156107a957600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561081d57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220aa50d58280fb524b0b86cae65b6377dfcddc0af236c179b5570d810bbeb539c264736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106100915760003560e01c8063c884ef8311610059578063c884ef8314610141578063cb13cddb14610171578063d0e30db0146101a1578063dab5f340146101a9578063f2fde38b146101c957600080fd5b80632eb4a7ab146100965780633606e8d7146100bf578063715018a6146100d45780638da5cb5b146100e9578063c5331ebb14610111575b600080fd5b3480156100a257600080fd5b506100ac60015481565b6040519081526020015b60405180910390f35b6100d26100cd366004610697565b6101e9565b005b3480156100e057600080fd5b506100d26102dc565b3480156100f557600080fd5b506000546040516001600160a01b0390911681526020016100b6565b34801561011d57600080fd5b5061013161012c366004610697565b61031b565b60405190151581526020016100b6565b34801561014d57600080fd5b5061013161015c366004610767565b60036020526000908152604090205460ff1681565b34801561017d57600080fd5b5061013161018c366004610767565b60026020526000908152604090205460ff1681565b6100d26103dc565b3480156101b557600080fd5b506100d26101c4366004610797565b61048b565b3480156101d557600080fd5b506100d26101e4366004610767565b6104f0565b6101f3828261031b565b6102105760405163582f497d60e11b815260040160405180910390fd5b33600081815260036020526040808220805460ff19166001179055519091906001600160801b038416908381818185875af1925050503d8060008114610272576040519150601f19603f3d011682016040523d82523d6000602084013e610277565b606091505b50509050806102995760405163bfa871c560e01b815260040160405180910390fd5b6040516001600160801b038316815233907ffce6d5860f911bc27ece1365300332d2ddbe20c1adc46ee2eddd8f72c48053b29060200160405180910390a2505050565b6000546001600160a01b0316331461030f5760405162461bcd60e51b8152600401610306906107b0565b60405180910390fd5b610319600061058b565b565b3360009081526003602052604081205460ff161561034c57604051630c8d9eab60e31b815260040160405180910390fd5b636461760042101561037157604051632a137cfd60e11b815260040160405180910390fd5b6040516bffffffffffffffffffffffff193360601b1660208201526fffffffffffffffffffffffffffffffff19608084901b1660348201526000906044016040516020818303038152906040528051906020012090506103d484600154836105db565b949350505050565b6703782dace9d9000034146104045760405163fe9ba5cd60e01b815260040160405180910390fd5b3360009081526002602052604090205460ff16156104355760405163d5a8211560e01b815260040160405180910390fd5b3360008181526002602052604090819020805460ff19166001179055517f1b851e1031ef35a238e6c67d0c7991162390df915f70eaf9098dbf0b175a6198906104819034815260200190565b60405180910390a2565b6000546001600160a01b031633146104b55760405162461bcd60e51b8152600401610306906107b0565b60018190556040518181527f1692fd99d128b683e28674e58fcf14b99abc6e42322367ae77260c361fe443b69060200160405180910390a150565b6000546001600160a01b0316331461051a5760405162461bcd60e51b8152600401610306906107b0565b6001600160a01b03811661057f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610306565b6105888161058b565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000826105e885846105f1565b14949350505050565b600081815b845181101561065d576000858281518110610613576106136107e5565b60200260200101519050808311610639576000838152602082905260409020925061064a565b600081815260208490526040902092505b5080610655816107fb565b9150506105f6565b509392505050565b634e487b7160e01b600052604160045260246000fd5b80356001600160801b038116811461069257600080fd5b919050565b600080604083850312156106aa57600080fd5b823567ffffffffffffffff808211156106c257600080fd5b818501915085601f8301126106d657600080fd5b81356020828211156106ea576106ea610665565b8160051b604051601f19603f8301168101818110868211171561070f5761070f610665565b60405292835281830193508481018201928984111561072d57600080fd5b948201945b8386101561074b57853585529482019493820193610732565b965061075a905087820161067b565b9450505050509250929050565b60006020828403121561077957600080fd5b81356001600160a01b038116811461079057600080fd5b9392505050565b6000602082840312156107a957600080fd5b5035919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561081d57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220aa50d58280fb524b0b86cae65b6377dfcddc0af236c179b5570d810bbeb539c264736f6c634300080a0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,313.01 | 6.25 | $20,706.31 |
Loading...
Loading
[ 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.