More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 814 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 18366516 | 435 days ago | IN | 0 ETH | 0.00076594 | ||||
Claim | 17705735 | 528 days ago | IN | 0 ETH | 0.00165337 | ||||
Claim | 16682533 | 672 days ago | IN | 0 ETH | 0.00276414 | ||||
Claim | 16676642 | 673 days ago | IN | 0 ETH | 0.00239683 | ||||
Claim | 16641236 | 678 days ago | IN | 0 ETH | 0.00299565 | ||||
Claim | 16623837 | 680 days ago | IN | 0 ETH | 0.00156012 | ||||
Claim | 16618320 | 681 days ago | IN | 0 ETH | 0.00150045 | ||||
Batch Claim | 16602006 | 683 days ago | IN | 0 ETH | 0.0080616 | ||||
Claim | 16594356 | 684 days ago | IN | 0 ETH | 0.00557634 | ||||
Claim | 16589524 | 685 days ago | IN | 0 ETH | 0.00238544 | ||||
Claim | 16580422 | 686 days ago | IN | 0 ETH | 0.00382267 | ||||
Claim | 16521229 | 694 days ago | IN | 0 ETH | 0.0022339 | ||||
Claim | 16516713 | 695 days ago | IN | 0 ETH | 0.00132918 | ||||
Claim | 16502253 | 697 days ago | IN | 0 ETH | 0.00170486 | ||||
Claim | 16488755 | 699 days ago | IN | 0 ETH | 0.00175277 | ||||
Claim | 16391732 | 712 days ago | IN | 0 ETH | 0.00200339 | ||||
Claim | 16390119 | 713 days ago | IN | 0 ETH | 0.00185673 | ||||
Batch Claim | 16374811 | 715 days ago | IN | 0 ETH | 0.00166265 | ||||
Claim | 16371021 | 715 days ago | IN | 0 ETH | 0.00294098 | ||||
Batch Claim | 16346071 | 719 days ago | IN | 0 ETH | 0.00380483 | ||||
Claim | 16339759 | 720 days ago | IN | 0 ETH | 0.0018328 | ||||
Batch Claim | 16339589 | 720 days ago | IN | 0 ETH | 0.00307307 | ||||
Claim | 16338016 | 720 days ago | IN | 0 ETH | 0.00153701 | ||||
Claim | 16318743 | 723 days ago | IN | 0 ETH | 0.00169804 | ||||
Claim | 16301251 | 725 days ago | IN | 0 ETH | 0.0040007 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Claimer
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.17; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; contract Claimer is Ownable { IERC20 public coinAddress; struct CallData { uint256 contractId; uint256 tokenId; } struct ClaimInfo { bool enabled; IERC721 tokens; uint256 coinsPerClaim; uint64 totalClaimed; mapping(uint256 => address) claimed; } ClaimInfo[] private claims; event Setup( uint256 indexed claimId, IERC721 indexed tokens, uint256 coinsPerClaim, uint256 totalClaimed ); event Toggle(uint256 indexed claimId, bool enabled); event UpdateClaimCoins(uint256 indexed claimId, uint256 coinsPerClaim); event Claim( uint256 indexed claimId, uint256 indexed tokenId, address indexed user ); /* how many heartcoin does this contract have */ function contractBalance() external view returns (uint256) { return coinAddress.balanceOf(address(this)); } /* how many heartcoin does the caller have */ function coinBalance() external view returns (uint256) { return coinAddress.balanceOf(msg.sender); } function setCoinAddress(IERC20 _coinAddress) external onlyOwner { coinAddress = _coinAddress; } function setupClaim(IERC721 tokens, uint256 coinsPerClaim) external onlyOwner returns (uint256) { uint256 id = claims.length; ClaimInfo storage info = claims.push(); info.enabled = false; info.tokens = tokens; info.coinsPerClaim = coinsPerClaim; emit Setup(id, tokens, coinsPerClaim, 0); return id; } function toggle(uint256 id, bool enabled) external onlyOwner { claims[id].enabled = enabled; emit Toggle(id, enabled); } function updateClaimCoins(uint256 id, uint256 coinsPerClaim) external onlyOwner { claims[id].coinsPerClaim = coinsPerClaim; emit UpdateClaimCoins(id, coinsPerClaim); } function claim(uint256 id, uint256 tokenId) public { ClaimInfo storage info = claims[id]; // revert if out-of-bound; require(info.enabled, "Claim not active"); require(info.tokens.ownerOf(tokenId) == msg.sender, "Not the owner"); require(info.claimed[tokenId] == address(0), "Token already claimed"); info.claimed[tokenId] = msg.sender; info.totalClaimed += 1; SafeERC20.safeTransfer( coinAddress, msg.sender, info.coinsPerClaim * (1 ether) ); emit Claim(id, tokenId, msg.sender); } function batchClaim(CallData[] calldata _calldata) external { for (uint256 i = 0; i < _calldata.length; ++i) { claim(_calldata[i].contractId, _calldata[i].tokenId); } } function claimsCount() external view returns (uint256) { return claims.length; } function claimsDetails(uint256 id) external view returns ( bool, IERC721, uint256, uint256 ) { ClaimInfo storage info = claims[id]; // revert if out-of-bound; return ( info.enabled, info.tokens, info.coinsPerClaim, info.totalClaimed ); } function claimedByToken(uint256 id, uint256 tokenId) external view returns (address) { return claims[id].claimed[tokenId]; // revert if out-of-bound; } // DANGER: this will block all claims that use this asset. function withdraw(IERC20 asset) external onlyOwner { SafeERC20.safeTransfer( asset, msg.sender, asset.balanceOf(address(this)) ); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// 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.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-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; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } 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)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } 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"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } 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"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// 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.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// 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.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"user","type":"address"}],"name":"Claim","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":true,"internalType":"contract IERC721","name":"tokens","type":"address"},{"indexed":false,"internalType":"uint256","name":"coinsPerClaim","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalClaimed","type":"uint256"}],"name":"Setup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"Toggle","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"claimId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"UpdateClaimCoins","type":"event"},{"inputs":[{"components":[{"internalType":"uint256","name":"contractId","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"internalType":"struct Claimer.CallData[]","name":"_calldata","type":"tuple[]"}],"name":"batchClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claimedByToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"claimsDetails","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"contract IERC721","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coinBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"contract IERC20","name":"_coinAddress","type":"address"}],"name":"setCoinAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"tokens","type":"address"},{"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"setupClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"toggle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"coinsPerClaim","type":"uint256"}],"name":"updateClaimCoins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"asset","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f5e8061007e6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063b0bdacc611610097578063d26c8a8a11610066578063d26c8a8a14610219578063e470dff114610221578063f2fde38b14610234578063fdc61dd11461024757600080fd5b8063b0bdacc6146101d8578063bbd245ea146101eb578063c3490263146101f3578063d03ec96e1461020657600080fd5b8063715018a6116100d3578063715018a61461018257806374d5d7a41461018a5780638b7afe2e1461019d5780638da5cb5b146101b357600080fd5b806312546e9d1461010557806317bc640a1461011a578063470a520b1461012d57806351cff8d91461016f575b600080fd5b610118610113366004610c92565b61025a565b005b610118610128366004610d15565b6102ba565b61014061013b366004610d45565b610331565b6040805194151585526001600160a01b0390931660208501529183015260608201526080015b60405180910390f35b61011861017d366004610d73565b610396565b610118610416565b610118610198366004610d90565b61042a565b6101a561048d565b604051908152602001610166565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610166565b6101186101e6366004610d73565b610500565b6002546101a5565b610118610201366004610d90565b61052a565b6101c0610214366004610d90565b61077c565b6101a56107c3565b6101a561022f366004610db2565b6107f4565b610118610242366004610d73565b6108cb565b6001546101c0906001600160a01b031681565b60005b818110156102b5576102a583838381811061027a5761027a610dde565b9050604002016000013584848481811061029657610296610dde565b9050604002016020013561052a565b6102ae81610e0a565b905061025d565b505050565b6102c2610941565b80600283815481106102d6576102d6610dde565b6000918252602091829020600490910201805460ff191692151592909217909155604051821515815283917fee59a674cbde74ba95248b39c13fb74beb530f71648fe85faac412b1edad703191015b60405180910390a25050565b60008060008060006002868154811061034c5761034c610dde565b600091825260209091206004909102018054600182015460029092015460ff8216996101009092046001600160a01b0316985091965067ffffffffffffffff909116945092505050565b61039e610941565b6040516370a0823160e01b815230600482015261041390829033906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040e9190610e23565b61099b565b50565b61041e610941565b61042860006109ed565b565b610432610941565b806002838154811061044657610446610dde565b906000526020600020906004020160010181905550817fd2dc78ebb4a3eb0e81a5c497e7988757e7e0375eb15cc3dc56483354ca16c9fa8260405161032591815260200190565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e23565b905090565b610508610941565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60006002838154811061053f5761053f610dde565b60009182526020909120600490910201805490915060ff1661059b5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064015b60405180910390fd5b80546040516331a9108f60e11b815260048101849052339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156105e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060c9190610e3c565b6001600160a01b0316146106525760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610592565b60008281526003820160205260409020546001600160a01b0316156106b15760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610592565b6000828152600382016020526040812080546001600160a01b03191633179055600282018054600192906106f090849067ffffffffffffffff16610e59565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610748600160009054906101000a90046001600160a01b0316338360010154670de0b6b3a764000061040e9190610e81565b6040513390839085907fd79254e5daba749baa8ba954e77bbbb18efef113a8070d00df9a188d8193242690600090a4505050565b60006002838154811061079157610791610dde565b60009182526020808320858452600360049093020191909101905260409020546001600160a01b031690505b92915050565b6001546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a08231906024016104ba565b60006107fe610941565b600280546001810182556000918252600481027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace810180546001600160a01b03881661010081026001600160a81b03199092169190911782557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf9092018690556040519293909284917f8563cd8f39e73f35e01fc6a66ccc547027e94d74595592f7d3f39cfa4b7f94cd916108bb91898252602082015260400190565b60405180910390a3509392505050565b6108d3610941565b6001600160a01b0381166109385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b610413816109ed565b6000546001600160a01b031633146104285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526102b5908490610a3d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a92826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b8051909150156102b55780806020019051810190610ab09190610e98565b6102b55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610592565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610592565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610592565b600080866001600160a01b03168587604051610bfc9190610ed9565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016105929190610ef5565b60008060208385031215610ca557600080fd5b823567ffffffffffffffff80821115610cbd57600080fd5b818501915085601f830112610cd157600080fd5b813581811115610ce057600080fd5b8660208260061b8501011115610cf557600080fd5b60209290920196919550909350505050565b801515811461041357600080fd5b60008060408385031215610d2857600080fd5b823591506020830135610d3a81610d07565b809150509250929050565b600060208284031215610d5757600080fd5b5035919050565b6001600160a01b038116811461041357600080fd5b600060208284031215610d8557600080fd5b8135610b2181610d5e565b60008060408385031215610da357600080fd5b50508035926020909101359150565b60008060408385031215610dc557600080fd5b8235610dd081610d5e565b946020939093013593505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e1c57610e1c610df4565b5060010190565b600060208284031215610e3557600080fd5b5051919050565b600060208284031215610e4e57600080fd5b8151610b2181610d5e565b67ffffffffffffffff818116838216019080821115610e7a57610e7a610df4565b5092915050565b80820281158282048414176107bd576107bd610df4565b600060208284031215610eaa57600080fd5b8151610b2181610d07565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008251610eeb818460208701610eb5565b9190910192915050565b6020815260008251806020840152610f14816040850160208701610eb5565b601f01601f1916919091016040019291505056fea264697066735822122016a8e91d795304c9d7bd989af7082728437d9e8c63642b0d81327f71c1329a7364736f6c63430008110033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063b0bdacc611610097578063d26c8a8a11610066578063d26c8a8a14610219578063e470dff114610221578063f2fde38b14610234578063fdc61dd11461024757600080fd5b8063b0bdacc6146101d8578063bbd245ea146101eb578063c3490263146101f3578063d03ec96e1461020657600080fd5b8063715018a6116100d3578063715018a61461018257806374d5d7a41461018a5780638b7afe2e1461019d5780638da5cb5b146101b357600080fd5b806312546e9d1461010557806317bc640a1461011a578063470a520b1461012d57806351cff8d91461016f575b600080fd5b610118610113366004610c92565b61025a565b005b610118610128366004610d15565b6102ba565b61014061013b366004610d45565b610331565b6040805194151585526001600160a01b0390931660208501529183015260608201526080015b60405180910390f35b61011861017d366004610d73565b610396565b610118610416565b610118610198366004610d90565b61042a565b6101a561048d565b604051908152602001610166565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610166565b6101186101e6366004610d73565b610500565b6002546101a5565b610118610201366004610d90565b61052a565b6101c0610214366004610d90565b61077c565b6101a56107c3565b6101a561022f366004610db2565b6107f4565b610118610242366004610d73565b6108cb565b6001546101c0906001600160a01b031681565b60005b818110156102b5576102a583838381811061027a5761027a610dde565b9050604002016000013584848481811061029657610296610dde565b9050604002016020013561052a565b6102ae81610e0a565b905061025d565b505050565b6102c2610941565b80600283815481106102d6576102d6610dde565b6000918252602091829020600490910201805460ff191692151592909217909155604051821515815283917fee59a674cbde74ba95248b39c13fb74beb530f71648fe85faac412b1edad703191015b60405180910390a25050565b60008060008060006002868154811061034c5761034c610dde565b600091825260209091206004909102018054600182015460029092015460ff8216996101009092046001600160a01b0316985091965067ffffffffffffffff909116945092505050565b61039e610941565b6040516370a0823160e01b815230600482015261041390829033906001600160a01b038316906370a0823190602401602060405180830381865afa1580156103ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061040e9190610e23565b61099b565b50565b61041e610941565b61042860006109ed565b565b610432610941565b806002838154811061044657610446610dde565b906000526020600020906004020160010181905550817fd2dc78ebb4a3eb0e81a5c497e7988757e7e0375eb15cc3dc56483354ca16c9fa8260405161032591815260200190565b6001546040516370a0823160e01b81523060048201526000916001600160a01b0316906370a08231906024015b602060405180830381865afa1580156104d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104fb9190610e23565b905090565b610508610941565b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60006002838154811061053f5761053f610dde565b60009182526020909120600490910201805490915060ff1661059b5760405162461bcd60e51b815260206004820152601060248201526f436c61696d206e6f742061637469766560801b60448201526064015b60405180910390fd5b80546040516331a9108f60e11b815260048101849052339161010090046001600160a01b031690636352211e90602401602060405180830381865afa1580156105e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061060c9190610e3c565b6001600160a01b0316146106525760405162461bcd60e51b815260206004820152600d60248201526c2737ba103a34329037bbb732b960991b6044820152606401610592565b60008281526003820160205260409020546001600160a01b0316156106b15760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b6044820152606401610592565b6000828152600382016020526040812080546001600160a01b03191633179055600282018054600192906106f090849067ffffffffffffffff16610e59565b92506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550610748600160009054906101000a90046001600160a01b0316338360010154670de0b6b3a764000061040e9190610e81565b6040513390839085907fd79254e5daba749baa8ba954e77bbbb18efef113a8070d00df9a188d8193242690600090a4505050565b60006002838154811061079157610791610dde565b60009182526020808320858452600360049093020191909101905260409020546001600160a01b031690505b92915050565b6001546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a08231906024016104ba565b60006107fe610941565b600280546001810182556000918252600481027f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace810180546001600160a01b03881661010081026001600160a81b03199092169190911782557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5acf9092018690556040519293909284917f8563cd8f39e73f35e01fc6a66ccc547027e94d74595592f7d3f39cfa4b7f94cd916108bb91898252602082015260400190565b60405180910390a3509392505050565b6108d3610941565b6001600160a01b0381166109385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610592565b610413816109ed565b6000546001600160a01b031633146104285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610592565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b1790526102b5908490610a3d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000610a92826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610b0f9092919063ffffffff16565b8051909150156102b55780806020019051810190610ab09190610e98565b6102b55760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610592565b6060610b1e8484600085610b28565b90505b9392505050565b606082471015610b895760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610592565b6001600160a01b0385163b610be05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610592565b600080866001600160a01b03168587604051610bfc9190610ed9565b60006040518083038185875af1925050503d8060008114610c39576040519150601f19603f3d011682016040523d82523d6000602084013e610c3e565b606091505b5091509150610c4e828286610c59565b979650505050505050565b60608315610c68575081610b21565b825115610c785782518084602001fd5b8160405162461bcd60e51b81526004016105929190610ef5565b60008060208385031215610ca557600080fd5b823567ffffffffffffffff80821115610cbd57600080fd5b818501915085601f830112610cd157600080fd5b813581811115610ce057600080fd5b8660208260061b8501011115610cf557600080fd5b60209290920196919550909350505050565b801515811461041357600080fd5b60008060408385031215610d2857600080fd5b823591506020830135610d3a81610d07565b809150509250929050565b600060208284031215610d5757600080fd5b5035919050565b6001600160a01b038116811461041357600080fd5b600060208284031215610d8557600080fd5b8135610b2181610d5e565b60008060408385031215610da357600080fd5b50508035926020909101359150565b60008060408385031215610dc557600080fd5b8235610dd081610d5e565b946020939093013593505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610e1c57610e1c610df4565b5060010190565b600060208284031215610e3557600080fd5b5051919050565b600060208284031215610e4e57600080fd5b8151610b2181610d5e565b67ffffffffffffffff818116838216019080821115610e7a57610e7a610df4565b5092915050565b80820281158282048414176107bd576107bd610df4565b600060208284031215610eaa57600080fd5b8151610b2181610d07565b60005b83811015610ed0578181015183820152602001610eb8565b50506000910152565b60008251610eeb818460208701610eb5565b9190910192915050565b6020815260008251806020840152610f14816040850160208701610eb5565b601f01601f1916919091016040019291505056fea264697066735822122016a8e91d795304c9d7bd989af7082728437d9e8c63642b0d81327f71c1329a7364736f6c63430008110033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.