Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 79 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Dance With Death | 17189222 | 607 days ago | IN | 0 ETH | 0.00198305 | ||||
Dance With Death | 17189200 | 607 days ago | IN | 0 ETH | 0.00189069 | ||||
Dance With Death | 17189193 | 607 days ago | IN | 0 ETH | 0.00182273 | ||||
Dance With Death | 17188616 | 607 days ago | IN | 0 ETH | 0.00416108 | ||||
Dance With Death | 17188114 | 607 days ago | IN | 0 ETH | 0.00583137 | ||||
Dance With Death | 17188108 | 607 days ago | IN | 0 ETH | 0.0027199 | ||||
Dance With Death | 17186929 | 608 days ago | IN | 0 ETH | 0.00419622 | ||||
Dance With Death | 17186094 | 608 days ago | IN | 0 ETH | 0.00361813 | ||||
Dance With Death | 17185487 | 608 days ago | IN | 0 ETH | 0.00350543 | ||||
Dance With Death | 17185091 | 608 days ago | IN | 0 ETH | 0.00123448 | ||||
Dance With Death | 17183818 | 608 days ago | IN | 0 ETH | 0.00177427 | ||||
Dance With Death | 17183688 | 608 days ago | IN | 0 ETH | 0.0016501 | ||||
Dance With Death | 17183671 | 608 days ago | IN | 0 ETH | 0.00157467 | ||||
Dance With Death | 17183258 | 608 days ago | IN | 0 ETH | 0.00396827 | ||||
Dance With Death | 17183185 | 608 days ago | IN | 0 ETH | 0.0037932 | ||||
Dance With Death | 17183107 | 608 days ago | IN | 0 ETH | 0.00466981 | ||||
Dance With Death | 17183098 | 608 days ago | IN | 0 ETH | 0.00285563 | ||||
Dance With Death | 17183028 | 608 days ago | IN | 0 ETH | 0.00207956 | ||||
Dance With Death | 17183012 | 608 days ago | IN | 0 ETH | 0.0019422 | ||||
Dance With Death | 17182935 | 608 days ago | IN | 0 ETH | 0.0058357 | ||||
Dance With Death | 17182926 | 608 days ago | IN | 0 ETH | 0.00662942 | ||||
Dance With Death | 17182926 | 608 days ago | IN | 0 ETH | 0.00667027 | ||||
Dance With Death | 17182926 | 608 days ago | IN | 0 ETH | 0.0090307 | ||||
Dance With Death | 17182922 | 608 days ago | IN | 0 ETH | 0.00952664 | ||||
Dance With Death | 17182914 | 608 days ago | IN | 0 ETH | 0.00862817 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
RGclaim
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Hark, ye mortals! This contract offers 1001 brave souls the opportunity to claim the coveted RG tokens. // The Reaper, ever eager to entice more players into his perilous contest, grants tokens to those who dare accept // his challenge and have not yet partaken in the game. A balance of nought is required for a mortal to claim // their share of 999 tokens, but caution is advised, for the Reaper is ever watchful. // // Once claimed, the RG tokens join their bearer in the dance of fate, as each seeks to survive the Reaper's // relentless pursuit. Those who hold the tokens shall face Death's wrath every 9 days, transferring their tokens // to a new address, lest they be locked away in his eternal grasp. // // Yet, remember, this game is not for the faint of heart or those seeking mere monetary gain. It is a testament // to the eternal struggle between life and the ever-looming spectre of Death, where participants strive to survive // and defy the Reaper's cold embrace. // // So, let it be known, those who choose to join this macabre game of chance, that the Reaper watches with keen interest, // and only time will reveal the true purpose of this enigmatic claim contract. Mayhap in the future, players may be rewarded, // regardless of their amassed fortunes, as Death's plan unfolds in his intricate, nefarious design. // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract RGclaim is Ownable { IERC20 public token; uint256 public constant CLAIM_AMOUNT = 9999 * 10**18; address public constant TOKEN_ADDRESS = 0x2C91D908E9fab2dD2441532a04182d791e590f2d; constructor() { token = IERC20(TOKEN_ADDRESS); } function DanceWithDeath() external { require(token.balanceOf(msg.sender) == 0, "You already have RG tokens"); token.transfer(msg.sender, CLAIM_AMOUNT); } function depositTokens(uint256 amount) external onlyOwner { require(token.allowance(msg.sender, address(this)) >= amount, "Not enough allowance"); token.transferFrom(msg.sender, address(this), amount); } function withdrawRemainingTokens(address recipient) external onlyOwner { require(recipient != address(0), "Invalid recipient address"); uint256 remainingTokens = token.balanceOf(address(this)); token.transfer(recipient, remainingTokens); } }
// 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.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 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"CLAIM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DanceWithDeath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TOKEN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"depositTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawRemainingTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061002d61002261008760201b60201c565b61008f60201b60201c565b732c91d908e9fab2dd2441532a04182d791e590f2d600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610153565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610e1d806101626000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b146100fa578063dd49756e14610118578063ecd802b114610134578063f2fde38b1461013e578063fc0c546a1461015a57610093565b80630bdf530014610098578063270ef385146100b65780635affbd97146100d4578063715018a6146100f0575b600080fd5b6100a0610178565b6040516100ad91906108e4565b60405180910390f35b6100be610190565b6040516100cb9190610918565b60405180910390f35b6100ee60048036038101906100e99190610964565b61019e565b005b6100f861035a565b005b61010261036e565b60405161010f91906108e4565b60405180910390f35b610132600480360381019061012d91906109bd565b610397565b005b61013c610525565b005b61015860048036038101906101539190610964565b6106b0565b005b610162610733565b60405161016f9190610a49565b60405180910390f35b732c91d908e9fab2dd2441532a04182d791e590f2d81565b69021e0c0013070adc000081565b6101a6610759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020c90610ac1565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161027291906108e4565b602060405180830381865afa15801561028f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b39190610af6565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610312929190610b23565b6020604051808303816000875af1158015610331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103559190610b84565b505050565b610362610759565b61036c60006107d7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61039f610759565b80600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016103fd929190610bb1565b602060405180830381865afa15801561041a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043e9190610af6565b101561047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047690610c26565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016104de93929190610c46565b6020604051808303816000875af11580156104fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105219190610b84565b5050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161058291906108e4565b602060405180830381865afa15801561059f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c39190610af6565b14610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90610cc9565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3369021e0c0013070adc00006040518363ffffffff1660e01b815260040161066a929190610b23565b6020604051808303816000875af1158015610689573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ad9190610b84565b50565b6106b8610759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071e90610d5b565b60405180910390fd5b610730816107d7565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61076161089b565b73ffffffffffffffffffffffffffffffffffffffff1661077f61036e565b73ffffffffffffffffffffffffffffffffffffffff16146107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc90610dc7565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108ce826108a3565b9050919050565b6108de816108c3565b82525050565b60006020820190506108f960008301846108d5565b92915050565b6000819050919050565b610912816108ff565b82525050565b600060208201905061092d6000830184610909565b92915050565b600080fd5b610941816108c3565b811461094c57600080fd5b50565b60008135905061095e81610938565b92915050565b60006020828403121561097a57610979610933565b5b60006109888482850161094f565b91505092915050565b61099a816108ff565b81146109a557600080fd5b50565b6000813590506109b781610991565b92915050565b6000602082840312156109d3576109d2610933565b5b60006109e1848285016109a8565b91505092915050565b6000819050919050565b6000610a0f610a0a610a05846108a3565b6109ea565b6108a3565b9050919050565b6000610a21826109f4565b9050919050565b6000610a3382610a16565b9050919050565b610a4381610a28565b82525050565b6000602082019050610a5e6000830184610a3a565b92915050565b600082825260208201905092915050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b6000610aab601983610a64565b9150610ab682610a75565b602082019050919050565b60006020820190508181036000830152610ada81610a9e565b9050919050565b600081519050610af081610991565b92915050565b600060208284031215610b0c57610b0b610933565b5b6000610b1a84828501610ae1565b91505092915050565b6000604082019050610b3860008301856108d5565b610b456020830184610909565b9392505050565b60008115159050919050565b610b6181610b4c565b8114610b6c57600080fd5b50565b600081519050610b7e81610b58565b92915050565b600060208284031215610b9a57610b99610933565b5b6000610ba884828501610b6f565b91505092915050565b6000604082019050610bc660008301856108d5565b610bd360208301846108d5565b9392505050565b7f4e6f7420656e6f75676820616c6c6f77616e6365000000000000000000000000600082015250565b6000610c10601483610a64565b9150610c1b82610bda565b602082019050919050565b60006020820190508181036000830152610c3f81610c03565b9050919050565b6000606082019050610c5b60008301866108d5565b610c6860208301856108d5565b610c756040830184610909565b949350505050565b7f596f7520616c7265616479206861766520524720746f6b656e73000000000000600082015250565b6000610cb3601a83610a64565b9150610cbe82610c7d565b602082019050919050565b60006020820190508181036000830152610ce281610ca6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610d45602683610a64565b9150610d5082610ce9565b604082019050919050565b60006020820190508181036000830152610d7481610d38565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610db1602083610a64565b9150610dbc82610d7b565b602082019050919050565b60006020820190508181036000830152610de081610da4565b905091905056fea264697066735822122038053742c9759604204da2dd0ecc4be715129f5e585acfc81c745bae3888b9ef64736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100935760003560e01c80638da5cb5b116100665780638da5cb5b146100fa578063dd49756e14610118578063ecd802b114610134578063f2fde38b1461013e578063fc0c546a1461015a57610093565b80630bdf530014610098578063270ef385146100b65780635affbd97146100d4578063715018a6146100f0575b600080fd5b6100a0610178565b6040516100ad91906108e4565b60405180910390f35b6100be610190565b6040516100cb9190610918565b60405180910390f35b6100ee60048036038101906100e99190610964565b61019e565b005b6100f861035a565b005b61010261036e565b60405161010f91906108e4565b60405180910390f35b610132600480360381019061012d91906109bd565b610397565b005b61013c610525565b005b61015860048036038101906101539190610964565b6106b0565b005b610162610733565b60405161016f9190610a49565b60405180910390f35b732c91d908e9fab2dd2441532a04182d791e590f2d81565b69021e0c0013070adc000081565b6101a6610759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610215576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161020c90610ac1565b60405180910390fd5b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161027291906108e4565b602060405180830381865afa15801561028f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102b39190610af6565b9050600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610312929190610b23565b6020604051808303816000875af1158015610331573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103559190610b84565b505050565b610362610759565b61036c60006107d7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61039f610759565b80600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e33306040518363ffffffff1660e01b81526004016103fd929190610bb1565b602060405180830381865afa15801561041a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061043e9190610af6565b101561047f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047690610c26565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b81526004016104de93929190610c46565b6020604051808303816000875af11580156104fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105219190610b84565b5050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161058291906108e4565b602060405180830381865afa15801561059f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c39190610af6565b14610603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105fa90610cc9565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb3369021e0c0013070adc00006040518363ffffffff1660e01b815260040161066a929190610b23565b6020604051808303816000875af1158015610689573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ad9190610b84565b50565b6106b8610759565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071e90610d5b565b60405180910390fd5b610730816107d7565b50565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61076161089b565b73ffffffffffffffffffffffffffffffffffffffff1661077f61036e565b73ffffffffffffffffffffffffffffffffffffffff16146107d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cc90610dc7565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006108ce826108a3565b9050919050565b6108de816108c3565b82525050565b60006020820190506108f960008301846108d5565b92915050565b6000819050919050565b610912816108ff565b82525050565b600060208201905061092d6000830184610909565b92915050565b600080fd5b610941816108c3565b811461094c57600080fd5b50565b60008135905061095e81610938565b92915050565b60006020828403121561097a57610979610933565b5b60006109888482850161094f565b91505092915050565b61099a816108ff565b81146109a557600080fd5b50565b6000813590506109b781610991565b92915050565b6000602082840312156109d3576109d2610933565b5b60006109e1848285016109a8565b91505092915050565b6000819050919050565b6000610a0f610a0a610a05846108a3565b6109ea565b6108a3565b9050919050565b6000610a21826109f4565b9050919050565b6000610a3382610a16565b9050919050565b610a4381610a28565b82525050565b6000602082019050610a5e6000830184610a3a565b92915050565b600082825260208201905092915050565b7f496e76616c696420726563697069656e74206164647265737300000000000000600082015250565b6000610aab601983610a64565b9150610ab682610a75565b602082019050919050565b60006020820190508181036000830152610ada81610a9e565b9050919050565b600081519050610af081610991565b92915050565b600060208284031215610b0c57610b0b610933565b5b6000610b1a84828501610ae1565b91505092915050565b6000604082019050610b3860008301856108d5565b610b456020830184610909565b9392505050565b60008115159050919050565b610b6181610b4c565b8114610b6c57600080fd5b50565b600081519050610b7e81610b58565b92915050565b600060208284031215610b9a57610b99610933565b5b6000610ba884828501610b6f565b91505092915050565b6000604082019050610bc660008301856108d5565b610bd360208301846108d5565b9392505050565b7f4e6f7420656e6f75676820616c6c6f77616e6365000000000000000000000000600082015250565b6000610c10601483610a64565b9150610c1b82610bda565b602082019050919050565b60006020820190508181036000830152610c3f81610c03565b9050919050565b6000606082019050610c5b60008301866108d5565b610c6860208301856108d5565b610c756040830184610909565b949350505050565b7f596f7520616c7265616479206861766520524720746f6b656e73000000000000600082015250565b6000610cb3601a83610a64565b9150610cbe82610c7d565b602082019050919050565b60006020820190508181036000830152610ce281610ca6565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610d45602683610a64565b9150610d5082610ce9565b604082019050919050565b60006020820190508181036000830152610d7481610d38565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000610db1602083610a64565b9150610dbc82610d7b565b602082019050919050565b60006020820190508181036000830152610de081610da4565b905091905056fea264697066735822122038053742c9759604204da2dd0ecc4be715129f5e585acfc81c745bae3888b9ef64736f6c63430008120033
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.