Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 617 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 20944669 | 8 hrs ago | IN | 0 ETH | 0.00087358 | ||||
Claim | 20943935 | 10 hrs ago | IN | 0 ETH | 0.00116605 | ||||
Claim | 20943843 | 11 hrs ago | IN | 0 ETH | 0.0011606 | ||||
Claim | 20943272 | 13 hrs ago | IN | 0 ETH | 0.00192043 | ||||
Claim | 20943034 | 13 hrs ago | IN | 0 ETH | 0.00256386 | ||||
Claim | 20943016 | 13 hrs ago | IN | 0 ETH | 0.0027225 | ||||
Claim | 20943005 | 13 hrs ago | IN | 0 ETH | 0.00245644 | ||||
Claim | 20942137 | 16 hrs ago | IN | 0 ETH | 0.00085582 | ||||
Claim | 20941887 | 17 hrs ago | IN | 0 ETH | 0.00078544 | ||||
Claim | 20941682 | 18 hrs ago | IN | 0 ETH | 0.00106273 | ||||
Claim | 20941508 | 18 hrs ago | IN | 0 ETH | 0.00108898 | ||||
Claim | 20941252 | 19 hrs ago | IN | 0 ETH | 0.0007623 | ||||
Claim | 20941236 | 19 hrs ago | IN | 0 ETH | 0.00099419 | ||||
Claim | 20941222 | 19 hrs ago | IN | 0 ETH | 0.00108925 | ||||
Claim | 20939036 | 27 hrs ago | IN | 0 ETH | 0.0005111 | ||||
Claim | 20938746 | 28 hrs ago | IN | 0 ETH | 0.00056504 | ||||
Claim | 20937933 | 30 hrs ago | IN | 0 ETH | 0.00056201 | ||||
Claim | 20936032 | 37 hrs ago | IN | 0 ETH | 0.00222292 | ||||
Claim | 20934280 | 43 hrs ago | IN | 0 ETH | 0.00089584 | ||||
Claim | 20924560 | 3 days ago | IN | 0 ETH | 0.0010594 | ||||
Claim | 20919583 | 3 days ago | IN | 0 ETH | 0.00069457 | ||||
Claim | 20913278 | 4 days ago | IN | 0 ETH | 0.00058853 | ||||
Claim | 20897111 | 6 days ago | IN | 0 ETH | 0.0002372 | ||||
Claim | 20897062 | 6 days ago | IN | 0 ETH | 0.00029363 | ||||
Claim | 20896992 | 6 days ago | IN | 0 ETH | 0.00027321 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CumulativeMerkleDrop
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "./interfaces/ICumulativeMerkleDrop.sol"; contract CumulativeMerkleDrop is Ownable, ICumulativeMerkleDrop { using SafeERC20 for IERC20; address public immutable override token; bytes32 public override merkleRoot; mapping(address => uint256) public cumulativeClaimed; constructor(address token_) { token = token_; } function setMerkleRoot(bytes32 merkleRoot_) external override onlyOwner { emit MerkelRootUpdated(merkleRoot, merkleRoot_); merkleRoot = merkleRoot_; } function claim( address account, uint256 cumulativeAmount, bytes32 expectedMerkleRoot, bytes32[] calldata merkleProof ) external override { require(merkleRoot == expectedMerkleRoot, "CMD: Merkle root was updated"); // Verify the merkle proof bytes32 leaf = keccak256(abi.encodePacked(account, cumulativeAmount)); require(_verifyAsm(merkleProof, expectedMerkleRoot, leaf), "CMD: Invalid proof"); // Mark it claimed uint256 preclaimed = cumulativeClaimed[account]; require(preclaimed < cumulativeAmount, "CMD: Nothing to claim"); cumulativeClaimed[account] = cumulativeAmount; // Send the token unchecked { uint256 amount = cumulativeAmount - preclaimed; IERC20(token).safeTransfer(account, amount); emit Claimed(account, amount); } } // function verify(bytes32[] calldata merkleProof, bytes32 root, bytes32 leaf) public pure returns (bool) { // return merkleProof.verify(root, leaf); // } // Experimental assembly optimization function _verifyAsm(bytes32[] calldata proof, bytes32 root, bytes32 leaf) private pure returns (bool valid) { // solhint-disable-next-line no-inline-assembly assembly { let mem1 := mload(0x40) let mem2 := add(mem1, 0x20) let ptr := proof.offset for { let end := add(ptr, mul(0x20, proof.length)) } lt(ptr, end) { ptr := add(ptr, 0x20) } { let node := calldataload(ptr) switch lt(leaf, node) case 1 { mstore(mem1, leaf) mstore(mem2, node) } default { mstore(mem1, node) mstore(mem2, leaf) } leaf := keccak256(mem1, 64) } valid := eq(root, leaf) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; // Allows anyone to claim a token if they exist in a merkle root. interface ICumulativeMerkleDrop { // This event is triggered whenever a call to #setMerkleRoot succeeds. event MerkelRootUpdated(bytes32 oldMerkleRoot, bytes32 newMerkleRoot); // This event is triggered whenever a call to #claim succeeds. event Claimed(address account, uint256 amount); // Returns the address of the token distributed by this contract. function token() external view returns (address); // Returns the merkle root of the merkle tree containing cumulative account balances available to claim. function merkleRoot() external view returns (bytes32); // Sets the merkle root of the merkle tree containing cumulative account balances available to claim. function setMerkleRoot(bytes32 merkleRoot_) external; // Claim the given amount of the token to the given address. Reverts if the inputs are invalid. function claim( address account, uint256 cumulativeAmount, bytes32 expectedMerkleRoot, bytes32[] calldata merkleProof ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// 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); } } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 10000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"token_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"oldMerkleRoot","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"MerkelRootUpdated","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":"address","name":"account","type":"address"},{"internalType":"uint256","name":"cumulativeAmount","type":"uint256"},{"internalType":"bytes32","name":"expectedMerkleRoot","type":"bytes32"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"cumulativeClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a060405234801561000f575f80fd5b50604051610c9c380380610c9c83398101604081905261002e91610097565b61003733610048565b6001600160a01b03166080526100c4565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100a7575f80fd5b81516001600160a01b03811681146100bd575f80fd5b9392505050565b608051610bb96100e35f395f818161014a01526103610152610bb95ff3fe608060405234801561000f575f80fd5b5060043610610085575f3560e01c80638da5cb5b116100585780638da5cb5b146100d5578063a991957614610113578063f2fde38b14610132578063fc0c546a14610145575f80fd5b80631d7d4ebc146100895780632eb4a7ab1461009e578063715018a6146100ba5780637cb64759146100c2575b5f80fd5b61009c610097366004610a11565b61016c565b005b6100a760015481565b6040519081526020015b60405180910390f35b61009c6103e1565b61009c6100d0366004610aa0565b6103f4565b5f5473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100b1565b6100a7610121366004610ab7565b60026020525f908152604090205481565b61009c610140366004610ab7565b61043d565b6100ee7f000000000000000000000000000000000000000000000000000000000000000081565b82600154146101dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f434d443a204d65726b6c6520726f6f742077617320757064617465640000000060448201526064015b60405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152603481018590525f9060540160405160208183030381529060405280519060200120905061023b838386846104f4565b6102a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f434d443a20496e76616c69642070726f6f66000000000000000000000000000060448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526002602052604090205485811061032f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f434d443a204e6f7468696e6720746f20636c61696d000000000000000000000060448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff8088165f90815260026020526040902087905581870390610388907f000000000000000000000000000000000000000000000000000000000000000016898361054d565b6040805173ffffffffffffffffffffffffffffffffffffffff8a168152602081018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a15050505050505050565b6103e96105df565b6103f25f61065f565b565b6103fc6105df565b60015460408051918252602082018390527f936fd71fceff3b4f98f4935ac269e4f94b4b25e3e38c519d3ff3db222a27117a910160405180910390a1600155565b6104456105df565b73ffffffffffffffffffffffffffffffffffffffff81166104e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101d3565b6104f18161065f565b50565b5f60405160208101868660200281015b8082101561053e578135808710600181146105245781865287855261052b565b8786528185525b5050604084209550602082019150610504565b50505092909114949350505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526105da9084906106d3565b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101d3565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f610734826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166107e09092919063ffffffff16565b905080515f14806107545750808060200190518101906107549190610ad7565b6105da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101d3565b60606107ee84845f856107f6565b949350505050565b606082471015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101d3565b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516108b09190610b18565b5f6040518083038185875af1925050503d805f81146108ea576040519150601f19603f3d011682016040523d82523d5f602084013e6108ef565b606091505b50915091506109008783838761090b565b979650505050505050565b606083156109a05782515f036109995773ffffffffffffffffffffffffffffffffffffffff85163b610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101d3565b50816107ee565b6107ee83838151156109b55781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39190610b33565b803573ffffffffffffffffffffffffffffffffffffffff81168114610a0c575f80fd5b919050565b5f805f805f60808688031215610a25575f80fd5b610a2e866109e9565b94506020860135935060408601359250606086013567ffffffffffffffff80821115610a58575f80fd5b818801915088601f830112610a6b575f80fd5b813581811115610a79575f80fd5b8960208260051b8501011115610a8d575f80fd5b9699959850939650602001949392505050565b5f60208284031215610ab0575f80fd5b5035919050565b5f60208284031215610ac7575f80fd5b610ad0826109e9565b9392505050565b5f60208284031215610ae7575f80fd5b81518015158114610ad0575f80fd5b5f5b83811015610b10578181015183820152602001610af8565b50505f910152565b5f8251610b29818460208701610af6565b9190910192915050565b602081525f8251806020840152610b51816040850160208701610af6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209b8696e996e3953408be2a982fadbd0270f5664d1e1803e2e3524d4c34000d2664736f6c634300081700330000000000000000000000009d65ff81a3c488d585bbfb0bfe3c7707c7917f54
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610085575f3560e01c80638da5cb5b116100585780638da5cb5b146100d5578063a991957614610113578063f2fde38b14610132578063fc0c546a14610145575f80fd5b80631d7d4ebc146100895780632eb4a7ab1461009e578063715018a6146100ba5780637cb64759146100c2575b5f80fd5b61009c610097366004610a11565b61016c565b005b6100a760015481565b6040519081526020015b60405180910390f35b61009c6103e1565b61009c6100d0366004610aa0565b6103f4565b5f5473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100b1565b6100a7610121366004610ab7565b60026020525f908152604090205481565b61009c610140366004610ab7565b61043d565b6100ee7f0000000000000000000000009d65ff81a3c488d585bbfb0bfe3c7707c7917f5481565b82600154146101dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f434d443a204d65726b6c6520726f6f742077617320757064617465640000000060448201526064015b60405180910390fd5b6040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606087901b166020820152603481018590525f9060540160405160208183030381529060405280519060200120905061023b838386846104f4565b6102a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f434d443a20496e76616c69642070726f6f66000000000000000000000000000060448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff86165f9081526002602052604090205485811061032f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f434d443a204e6f7468696e6720746f20636c61696d000000000000000000000060448201526064016101d3565b73ffffffffffffffffffffffffffffffffffffffff8088165f90815260026020526040902087905581870390610388907f0000000000000000000000009d65ff81a3c488d585bbfb0bfe3c7707c7917f5416898361054d565b6040805173ffffffffffffffffffffffffffffffffffffffff8a168152602081018390527fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a910160405180910390a15050505050505050565b6103e96105df565b6103f25f61065f565b565b6103fc6105df565b60015460408051918252602082018390527f936fd71fceff3b4f98f4935ac269e4f94b4b25e3e38c519d3ff3db222a27117a910160405180910390a1600155565b6104456105df565b73ffffffffffffffffffffffffffffffffffffffff81166104e8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016101d3565b6104f18161065f565b50565b5f60405160208101868660200281015b8082101561053e578135808710600181146105245781865287855261052b565b8786528185525b5050604084209550602082019150610504565b50505092909114949350505050565b6040805173ffffffffffffffffffffffffffffffffffffffff8416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb000000000000000000000000000000000000000000000000000000001790526105da9084906106d3565b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146103f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016101d3565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f610734826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166107e09092919063ffffffff16565b905080515f14806107545750808060200190518101906107549190610ad7565b6105da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f7420737563636565640000000000000000000000000000000000000000000060648201526084016101d3565b60606107ee84845f856107f6565b949350505050565b606082471015610888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c000000000000000000000000000000000000000000000000000060648201526084016101d3565b5f808673ffffffffffffffffffffffffffffffffffffffff1685876040516108b09190610b18565b5f6040518083038185875af1925050503d805f81146108ea576040519150601f19603f3d011682016040523d82523d5f602084013e6108ef565b606091505b50915091506109008783838761090b565b979650505050505050565b606083156109a05782515f036109995773ffffffffffffffffffffffffffffffffffffffff85163b610999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016101d3565b50816107ee565b6107ee83838151156109b55781518083602001fd5b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39190610b33565b803573ffffffffffffffffffffffffffffffffffffffff81168114610a0c575f80fd5b919050565b5f805f805f60808688031215610a25575f80fd5b610a2e866109e9565b94506020860135935060408601359250606086013567ffffffffffffffff80821115610a58575f80fd5b818801915088601f830112610a6b575f80fd5b813581811115610a79575f80fd5b8960208260051b8501011115610a8d575f80fd5b9699959850939650602001949392505050565b5f60208284031215610ab0575f80fd5b5035919050565b5f60208284031215610ac7575f80fd5b610ad0826109e9565b9392505050565b5f60208284031215610ae7575f80fd5b81518015158114610ad0575f80fd5b5f5b83811015610b10578181015183820152602001610af8565b50505f910152565b5f8251610b29818460208701610af6565b9190910192915050565b602081525f8251806020840152610b51816040850160208701610af6565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209b8696e996e3953408be2a982fadbd0270f5664d1e1803e2e3524d4c34000d2664736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009d65ff81a3c488d585bbfb0bfe3c7707c7917f54
-----Decoded View---------------
Arg [0] : token_ (address): 0x9D65fF81a3c488d585bBfb0Bfe3c7707c7917f54
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009d65ff81a3c488d585bbfb0bfe3c7707c7917f54
Deployed Bytecode Sourcemap
285:2453:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;774:899;;;;;;:::i;:::-;;:::i;:::-;;434:34;;;;;;;;;1192:25:8;;;1180:2;1165:18;434:34:0;;;;;;;;1824:101:2;;;:::i;598:170:0:-;;;;;;:::i;:::-;;:::i;1201:85:2:-;1247:7;1273:6;;;1201:85;;;1589:42:8;1577:55;;;1559:74;;1547:2;1532:18;1201:85:2;1413:226:8;474:52:0;;;;;;:::i;:::-;;;;;;;;;;;;;;2074:198:2;;;;;;:::i;:::-;;:::i;388:39:0:-;;;;;774:899;980:18;966:10;;:32;958:73;;;;;;;2219:2:8;958:73:0;;;2201:21:8;2258:2;2238:18;;;2231:30;2297;2277:18;;;2270:58;2345:18;;958:73:0;;;;;;;;;1102:43;;2564:66:8;2551:2;2547:15;;;2543:88;1102:43:0;;;2531:101:8;2648:12;;;2641:28;;;1077:12:0;;2685::8;;1102:43:0;;;;;;;;;;;;1092:54;;;;;;1077:69;;1164:49;1175:11;;1188:18;1208:4;1164:10;:49::i;:::-;1156:80;;;;;;;2910:2:8;1156:80:0;;;2892:21:8;2949:2;2929:18;;;2922:30;2988:20;2968:18;;;2961:48;3026:18;;1156:80:0;2708:342:8;1156:80:0;1295:26;;;1274:18;1295:26;;;:17;:26;;;;;;1339:29;;;1331:63;;;;;;;3257:2:8;1331:63:0;;;3239:21:8;3296:2;3276:18;;;3269:30;3335:23;3315:18;;;3308:51;3376:18;;1331:63:0;3055:345:8;1331:63:0;1404:26;;;;;;;;:17;:26;;;;;:45;;;1527:29;;;;1570:43;;1577:5;1570:26;1422:7;1527:29;1570:26;:43::i;:::-;1632:24;;;3609:42:8;3597:55;;3579:74;;3684:2;3669:18;;3662:34;;;1632:24:0;;3552:18:8;1632:24:0;;;;;;;1486:181;948:725;;774:899;;;;;:::o;1824:101:2:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;598:170:0:-;1094:13:2;:11;:13::i;:::-;703:10:0::1;::::0;685:42:::1;::::0;;3881:25:8;;;3937:2;3922:18;;3915:34;;;685:42:0::1;::::0;3854:18:8;685:42:0::1;;;;;;;737:10;:24:::0;598:170::o;2074:198:2:-;1094:13;:11;:13::i;:::-;2162:22:::1;::::0;::::1;2154:73;;;::::0;::::1;::::0;;4162:2:8;2154:73:2::1;::::0;::::1;4144:21:8::0;4201:2;4181:18;;;4174:30;4240:34;4220:18;;;4213:62;4311:8;4291:18;;;4284:36;4337:19;;2154:73:2::1;3960:402:8::0;2154:73:2::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1893:843:0:-;1989:10;2108:4;2102:11;2148:4;2142;2138:15;2177:12;2239;2233:4;2229:23;2224:3;2220:33;2203:480;2264:3;2259;2256:12;2203:480;;;2338:3;2325:17;2376:4;2370;2367:14;2403:1;2398:104;;;;2562:4;2556;2549:18;2601:4;2595;2588:18;2360:264;;2398:104;2440:4;2434;2427:18;2479:4;2473;2466:18;2360:264;;;2666:2;2660:4;2650:19;2642:27;;2287:4;2282:3;2278:14;2271:21;;2203:480;;;-1:-1:-1;;;2706:14:0;;;;;1893:843;-1:-1:-1;;;;1893:843:0:o;941:175:5:-;1050:58;;;3609:42:8;3597:55;;1050:58:5;;;3579:74:8;3669:18;;;;3662:34;;;1050:58:5;;;;;;;;;;3552:18:8;;;;1050:58:5;;;;;;;;;;1073:23;1050:58;;;1023:86;;1043:5;;1023:19;:86::i;:::-;941:175;;;:::o;1359:130:2:-;1247:7;1273:6;1422:23;1273:6;719:10:7;1422:23:2;1414:68;;;;;;;4569:2:8;1414:68:2;;;4551:21:8;;;4588:18;;;4581:30;4647:34;4627:18;;;4620:62;4699:18;;1414:68:2;4367:356:8;2426:187:2;2499:16;2518:6;;;2534:17;;;;;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;5196:642:5:-;5615:23;5641:69;5669:4;5641:69;;;;;;;;;;;;;;;;;5649:5;5641:27;;;;:69;;;;;:::i;:::-;5615:95;;5728:10;:17;5749:1;5728:22;:56;;;;5765:10;5754:30;;;;;;;;;;;;:::i;:::-;5720:111;;;;;;;5212:2:8;5720:111:5;;;5194:21:8;5251:2;5231:18;;;5224:30;5290:34;5270:18;;;5263:62;5361:12;5341:18;;;5334:40;5391:19;;5720:111:5;5010:406:8;4108:223:6;4241:12;4272:52;4294:6;4302:4;4308:1;4311:12;4272:21;:52::i;:::-;4265:59;4108:223;-1:-1:-1;;;;4108:223:6:o;5165:446::-;5330:12;5387:5;5362:21;:30;;5354:81;;;;;;;5623:2:8;5354:81:6;;;5605:21:8;5662:2;5642:18;;;5635:30;5701:34;5681:18;;;5674:62;5772:8;5752:18;;;5745:36;5798:19;;5354:81:6;5421:402:8;5354:81:6;5446:12;5460:23;5487:6;:11;;5506:5;5513:4;5487:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5445:73;;;;5535:69;5562:6;5570:7;5579:10;5591:12;5535:26;:69::i;:::-;5528:76;5165:446;-1:-1:-1;;;;;;;5165:446:6:o;7671:628::-;7851:12;7879:7;7875:418;;;7906:10;:17;7927:1;7906:22;7902:286;;1702:19;;;;8113:60;;;;;;;6577:2:8;8113:60:6;;;6559:21:8;6616:2;6596:18;;;6589:30;6655:31;6635:18;;;6628:59;6704:18;;8113:60:6;6375:353:8;8113:60:6;-1:-1:-1;8208:10:6;8201:17;;7875:418;8249:33;8257:10;8269:12;8980:17;;:21;8976:379;;9208:10;9202:17;9264:15;9251:10;9247:2;9243:19;9236:44;8976:379;9331:12;9324:20;;;;;;;;;;;:::i;14:196:8:-;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:826::-;328:6;336;344;352;360;413:3;401:9;392:7;388:23;384:33;381:53;;;430:1;427;420:12;381:53;453:29;472:9;453:29;:::i;:::-;443:39;;529:2;518:9;514:18;501:32;491:42;;580:2;569:9;565:18;552:32;542:42;;635:2;624:9;620:18;607:32;658:18;699:2;691:6;688:14;685:34;;;715:1;712;705:12;685:34;753:6;742:9;738:22;728:32;;798:7;791:4;787:2;783:13;779:27;769:55;;820:1;817;810:12;769:55;860:2;847:16;886:2;878:6;875:14;872:34;;;902:1;899;892:12;872:34;955:7;950:2;940:6;937:1;933:14;929:2;925:23;921:32;918:45;915:65;;;976:1;973;966:12;915:65;215:826;;;;-1:-1:-1;215:826:8;;-1:-1:-1;1007:2:8;999:11;;1029:6;215:826;-1:-1:-1;;;215:826:8:o;1228:180::-;1287:6;1340:2;1328:9;1319:7;1315:23;1311:32;1308:52;;;1356:1;1353;1346:12;1308:52;-1:-1:-1;1379:23:8;;1228:180;-1:-1:-1;1228:180:8:o;1644:186::-;1703:6;1756:2;1744:9;1735:7;1731:23;1727:32;1724:52;;;1772:1;1769;1762:12;1724:52;1795:29;1814:9;1795:29;:::i;:::-;1785:39;1644:186;-1:-1:-1;;;1644:186:8:o;4728:277::-;4795:6;4848:2;4836:9;4827:7;4823:23;4819:32;4816:52;;;4864:1;4861;4854:12;4816:52;4896:9;4890:16;4949:5;4942:13;4935:21;4928:5;4925:32;4915:60;;4971:1;4968;4961:12;5828:250;5913:1;5923:113;5937:6;5934:1;5931:13;5923:113;;;6013:11;;;6007:18;5994:11;;;5987:39;5959:2;5952:10;5923:113;;;-1:-1:-1;;6070:1:8;6052:16;;6045:27;5828:250::o;6083:287::-;6212:3;6250:6;6244:13;6266:66;6325:6;6320:3;6313:4;6305:6;6301:17;6266:66;:::i;:::-;6348:16;;;;;6083:287;-1:-1:-1;;6083:287:8:o;6733:455::-;6882:2;6871:9;6864:21;6845:4;6914:6;6908:13;6957:6;6952:2;6941:9;6937:18;6930:34;6973:79;7045:6;7040:2;7029:9;7025:18;7020:2;7012:6;7008:15;6973:79;:::i;:::-;7104:2;7092:15;7109:66;7088:88;7073:104;;;;7179:2;7069:113;;6733:455;-1:-1:-1;;6733:455:8:o
Swarm Source
ipfs://9b8696e996e3953408be2a982fadbd0270f5664d1e1803e2e3524d4c34000d26
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $21.61 | 194,259.0407 | $4,197,937.87 |
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.