Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 QUEEN
Holders
169
Total Transfers
1,614
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xC50013Df...EF8fAF7Db The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ERC20Token
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/Ownable.sol";import "../libraries/ERC20Base.sol";import "../services/FeeProcessor.sol";/*** @dev ERC20Token implementation with capabilities*/contract ERC20Token is ERC20Base, Ownable, FeeProcessor {constructor(string memory name_,string memory symbol_,uint8 decimals_,uint256 initialSupply_,address payable feeReceiver_)payableERC20Base(name_, symbol_, decimals_)FeeProcessor(feeReceiver_, 0x6df9baf4dc8c02086c72903e4bba587f1a261a8542aa45344809b4583161a59e){require(initialSupply_ > 0, "ERC20Token: initial supply cannot be zero");_mint(_msgSender(), initialSupply_);}
1234567// SPDX-License-Identifier: MITpragma solidity ^0.8.0;interface IFeeReceiver {function processFee(bytes32 serviceId) external payable;}
1234567891011// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IFeeReceiver.sol";abstract contract FeeProcessor {constructor(address payable receiver, bytes32 serviceId) payable {IFeeReceiver(receiver).processFee{value: msg.value}(serviceId);}}
123456789101112131415161718192021// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";abstract contract ERC20Base is ERC20 {uint8 private immutable _decimals;constructor(string memory name_,string memory symbol_,uint8 decimals_) ERC20(name_, symbol_) {_decimals = decimals_;}function decimals() public view override returns (uint8) {return _decimals;}}
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/
1234567891011121314151617181920212223242526// 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.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC20* applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.
1234567891011121314151617181920212223242526// 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.
12345678910111213141516171819202122{"libraries": {},"metadata": {"useLiteralContent": true},"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"uint256","name":"initialSupply_","type":"uint256"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526040516200101038038062001010833981016040819052620000269162000369565b807f6df9baf4dc8c02086c72903e4bba587f1a261a8542aa45344809b4583161a59e868686828260036200005b8382620004a7565b5060046200006a8282620004a7565b50505060ff16608052506200008190503362000160565b60405163dfd23c0f60e01b8152600481018290526001600160a01b0383169063dfd23c0f9034906024016000604051808303818588803b158015620000c557600080fd5b505af1158015620000da573d6000803e3d6000fd5b5050505050505060008211620001495760405162461bcd60e51b815260206004820152602960248201527f4552433230546f6b656e3a20696e697469616c20737570706c792063616e6e6f60448201526874206265207a65726f60b81b60648201526084015b60405180910390fd5b620001553383620001b2565b50505050506200059a565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200020a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000140565b80600260008282546200021e919062000573565b90915550506001600160a01b038216600090815260208190526040812080548392906200024d90849062000573565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002c457600080fd5b81516001600160401b0380821115620002e157620002e16200029c565b604051601f8301601f19908116603f011681019082821181831017156200030c576200030c6200029c565b816040528381526020925086838588010111156200032957600080fd5b600091505b838210156200034d57858201830151818301840152908201906200032e565b838211156200035f5760008385830101525b9695505050505050565b600080600080600060a086880312156200038257600080fd5b85516001600160401b03808211156200039a57600080fd5b620003a889838a01620002b2565b96506020880151915080821115620003bf57600080fd5b50620003ce88828901620002b2565b945050604086015160ff81168114620003e657600080fd5b6060870151608088015191945092506001600160a01b03811681146200040b57600080fd5b809150509295509295909350565b600181811c908216806200042e57607f821691505b6020821081036200044f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200029757600081815260208120601f850160051c810160208610156200047e5750805b601f850160051c820191505b818110156200049f578281556001016200048a565b505050505050565b81516001600160401b03811115620004c357620004c36200029c565b620004db81620004d4845462000419565b8462000455565b602080601f831160018114620005135760008415620004fa5750858301515b600019600386901b1c1916600185901b1785556200049f565b600085815260208120601f198616915b82811015620005445788860151825594840194600190910190840162000523565b5085821015620005635787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200059557634e487b7160e01b600052601160045260246000fd5b500190565b608051610a5a620005b6600039600061015c0152610a5a6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101ef578063a9059cbb14610202578063dd62ed3e14610215578063f2fde38b1461022857600080fd5b8063715018a6146101c25780638da5cb5b146101cc57806395d89b41146101e757600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023b565b6040516101049190610898565b60405180910390f35b61012061011b366004610909565b6102cd565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610933565b6102e5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610104565b610120610194366004610909565b610309565b6101346101a736600461096f565b6001600160a01b031660009081526020819052604090205490565b6101ca61032b565b005b6005546040516001600160a01b039091168152602001610104565b6100f761033f565b6101206101fd366004610909565b61034e565b610120610210366004610909565b6103ce565b610134610223366004610991565b6103dc565b6101ca61023636600461096f565b610407565b60606003805461024a906109c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610276906109c4565b80156102c35780601f10610298576101008083540402835291602001916102c3565b820191906000526020600020905b8154815290600101906020018083116102a657829003601f168201915b5050505050905090565b6000336102db818585610480565b5060019392505050565b6000336102f38582856105a4565b6102fe85858561061e565b506001949350505050565b6000336102db81858561031c83836103dc565b61032691906109fe565b610480565b6103336107ec565b61033d6000610846565b565b60606004805461024a906109c4565b6000338161035c82866103dc565b9050838110156103c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fe8286868403610480565b6000336102db81858561061e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040f6107ec565b6001600160a01b0381166104745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b8565b61047d81610846565b50565b6001600160a01b0383166104e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b8565b6001600160a01b0382166105435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105b084846103dc565b90506000198114610618578181101561060b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b8565b6106188484848403610480565b50505050565b6001600160a01b0383166106825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b8565b6001600160a01b0382166106e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b8565b6001600160a01b0383166000908152602081905260409020548181101561075c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107939084906109fe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107df91815260200190565b60405180910390a3610618565b6005546001600160a01b0316331461033d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156108c5578581018301518582016040015282016108a9565b818111156108d7576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461090457600080fd5b919050565b6000806040838503121561091c57600080fd5b610925836108ed565b946020939093013593505050565b60008060006060848603121561094857600080fd5b610951846108ed565b925061095f602085016108ed565b9150604084013590509250925092565b60006020828403121561098157600080fd5b61098a826108ed565b9392505050565b600080604083850312156109a457600080fd5b6109ad836108ed565b91506109bb602084016108ed565b90509250929050565b600181811c908216806109d857607f821691505b6020821081036109f857634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a1f57634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212203fec51485666bbcf666bf397685fae7e6e43200022db5a9a27135c0f128235bf64736f6c634300080f003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000090000000000000000000000000000000000000000000000000de0b6b3a764000000000000000000000000000068e7c3fa4b4062dd2861edfcf74b7ef0144f1f6d0000000000000000000000000000000000000000000000000000000000000007426974636f726e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034254430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101ef578063a9059cbb14610202578063dd62ed3e14610215578063f2fde38b1461022857600080fd5b8063715018a6146101c25780638da5cb5b146101cc57806395d89b41146101e757600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761023b565b6040516101049190610898565b60405180910390f35b61012061011b366004610909565b6102cd565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610933565b6102e5565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000009168152602001610104565b610120610194366004610909565b610309565b6101346101a736600461096f565b6001600160a01b031660009081526020819052604090205490565b6101ca61032b565b005b6005546040516001600160a01b039091168152602001610104565b6100f761033f565b6101206101fd366004610909565b61034e565b610120610210366004610909565b6103ce565b610134610223366004610991565b6103dc565b6101ca61023636600461096f565b610407565b60606003805461024a906109c4565b80601f0160208091040260200160405190810160405280929190818152602001828054610276906109c4565b80156102c35780601f10610298576101008083540402835291602001916102c3565b820191906000526020600020905b8154815290600101906020018083116102a657829003601f168201915b5050505050905090565b6000336102db818585610480565b5060019392505050565b6000336102f38582856105a4565b6102fe85858561061e565b506001949350505050565b6000336102db81858561031c83836103dc565b61032691906109fe565b610480565b6103336107ec565b61033d6000610846565b565b60606004805461024a906109c4565b6000338161035c82866103dc565b9050838110156103c15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102fe8286868403610480565b6000336102db81858561061e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61040f6107ec565b6001600160a01b0381166104745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b8565b61047d81610846565b50565b6001600160a01b0383166104e25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b8565b6001600160a01b0382166105435760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105b084846103dc565b90506000198114610618578181101561060b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b8565b6106188484848403610480565b50505050565b6001600160a01b0383166106825760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b8565b6001600160a01b0382166106e45760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b8565b6001600160a01b0383166000908152602081905260409020548181101561075c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b8565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107939084906109fe565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107df91815260200190565b60405180910390a3610618565b6005546001600160a01b0316331461033d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b8565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b818110156108c5578581018301518582016040015282016108a9565b818111156108d7576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461090457600080fd5b919050565b6000806040838503121561091c57600080fd5b610925836108ed565b946020939093013593505050565b60008060006060848603121561094857600080fd5b610951846108ed565b925061095f602085016108ed565b9150604084013590509250925092565b60006020828403121561098157600080fd5b61098a826108ed565b9392505050565b600080604083850312156109a457600080fd5b6109ad836108ed565b91506109bb602084016108ed565b90509250929050565b600181811c908216806109d857607f821691505b6020821081036109f857634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610a1f57634e487b7160e01b600052601160045260246000fd5b50019056fea26469706673582212203fec51485666bbcf666bf397685fae7e6e43200022db5a9a27135c0f128235bf64736f6c634300080f0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.