ERC-20
Gaming
Overview
Max Total Supply
950,815,784 HERO
Holders
6,122
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
164.266360531270937649 HEROValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
HERO20
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.10
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.27;import {ERC20} from "solady/tokens/ERC20.sol";import {Ownable} from "solady/auth/Ownable.sol";/// @author Onchain-Heros (https://www.onchainheroes.xyz)/// @author atarpara (https://www.github.com/atarpara)contract HERO20 is ERC20, Ownable {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The total supply reached MAX_SUPPLY.error MaxSupplyReached();/// @dev Cannot mint to the zero address.error ZeroAddress();/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CONSTANT *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/constructor(address _owner, address _to) {_initializeOwner(_owner);// Initial mint 1e27 to `to`.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Simple ERC20 + EIP-2612 implementation./// @author Solady (https://github.com/vectorized/solady/blob/main/src/tokens/ERC20.sol)/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)/// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol)////// @dev Note:/// - The ERC20 standard allows minting and transferring to and from the zero address,/// minting and transferring zero tokens, as well as self-approvals./// For performance, this implementation WILL NOT revert for such actions./// Please add any checks with overrides if desired./// - The `permit` function uses the ecrecover precompile (0x1).////// If you are overriding:/// - NEVER violate the ERC20 invariant:/// the total sum of all balances must be equal to `totalSupply()`./// - Check that the overridden function is actually used in the function you want to/// change the behavior of. Much of the code has been manually inlined for performance.abstract contract ERC20 {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The total supply has overflowed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.4;/// @notice Simple single owner authorization mixin./// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/Ownable.sol)////// @dev Note:/// This implementation does NOT auto-initialize the owner to `msg.sender`./// You MUST call the `_initializeOwner` in the constructor / initializer.////// While the ownable portion follows/// [EIP-173](https://eips.ethereum.org/EIPS/eip-173) for compatibility,/// the nomenclature for the 2-step ownership handover may be unique to this codebase.abstract contract Ownable {/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*//* CUSTOM ERRORS *//*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*//// @dev The caller is not authorized to call the function.error Unauthorized();/// @dev The `newOwner` cannot be the zero address.error NewOwnerIsZeroAddress();/// @dev The `pendingOwner` does not have a valid handover request.error NoHandoverRequest();
1234567891011121314151617181920212223242526{"viaIR": false,"codegen": "yul","remappings": ["@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/","@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/","@openzeppelin/=lib/creator-token-standards/lib/openzeppelin-contracts/","@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/","ERC721A/=lib/ERC721A/contracts/","PermitC/=lib/creator-token-standards/lib/PermitC/","creator-token-standards/=lib/creator-token-standards/","delegate-registry/=lib/delegate-registry/","ds-test/=lib/creator-token-standards/lib/forge-std/lib/ds-test/src/","erc4626-tests/=lib/delegate-registry/lib/openzeppelin-contracts/lib/erc4626-tests/","erc721a/=lib/creator-token-standards/lib/ERC721A/","forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/","forge-std/=lib/forge-std/src/","forge-zksync-std/=lib/forge-zksync-std/src/","murky/=lib/creator-token-standards/lib/murky/","openzeppelin-contracts/=lib/creator-token-standards/lib/openzeppelin-contracts/","openzeppelin/=lib/delegate-registry/lib/openzeppelin-contracts/contracts/","solady/=lib/solady/src/","solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/src/","tstorish/=lib/creator-token-standards/lib/tstorish/src/"],"evmVersion": "cancun",
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AllowanceOverflow","type":"error"},{"inputs":[],"name":"AllowanceUnderflow","type":"error"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"InsufficientAllowance","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InvalidPermit","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[],"name":"Permit2AllowanceIsFixedAtInfinity","type":"error"},{"inputs":[],"name":"PermitExpired","type":"error"},{"inputs":[],"name":"TotalSupplyOverflow","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"result","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"result","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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","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":"payable","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100014f2be3a4d8a66e59fb3216aebb43b45d220724b00f08e3eb52a2fbc973000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000001b2c84dd7957b1e207cd7b01ded77984ec16fdef00000000000000000000000007c6479d0ba3f8e0da13b21ed0901683562ffff6
Deployed Bytecode
0x0001000000000002000d00000000000200000000000103550000006003100270000000fe033001970000000100200190000000400000c13d0000008002000039000000400020043f000000040030008c000003a80000413d000000000201043b000000e0022002700000010f0020009c0000007d0000213d0000011d0020009c000000c20000213d000001240020009c000000e80000a13d000001250020009c000001770000613d000001260020009c0000017f0000613d000001270020009c000003a80000c13d0000012a010000410000000c0010043f0000000001000411000000000010043f0000012d0100004100000000001004430000000001000414000000fe0010009c000000fe01008041000000c0011002100000012e011001c70000800b0200003903f203ed0000040f0000000100200190000003aa0000613d000000000101043b000d00000001001d0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b0000000d02000029000001440220009a000000000021041b0000000001000414000000fe0010009c000000fe01008041000000c00110021000000103011001c70000800d0200003900000002030000390000014504000041000001e90000013d0000000002000416000000000002004b000003a80000c13d0000001f02300039000000ff022001970000008002200039000000400020043f0000001f0430018f00000100053001980000008002500039000000510000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000004d0000c13d000000000004004b0000005e0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c000003a80000413d000000800600043d000001010060009c000003a80000213d000000a00100043d000d00000001001d000001010010009c000003a80000213d0000010201000041000000000061041b0000000001000414000000fe0010009c000000fe01008041000000c00110021000000103011001c70000800d0200003900000003030000390000010404000041000000000500001903f203e80000040f0000000100200190000003a80000613d0000010501000041000000000201041a000001060220009c0000027b0000413d0000010d01000041000000000010043f0000010e01000041000003f400010430000001100020009c000000d50000213d000001170020009c000001200000a13d000001180020009c000001ab0000613d000001190020009c000001640000613d0000011a0020009c000003a80000c13d000000440030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000402100370000000000202043b000d00000002001d000001010020009c000003a80000213d0000002401100370000000000101043b000c00000001001d00000107010000410000000c0010043f0000000001000411000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000000c0220006c000001ce0000413d000000000021041b0000000d01000029000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000000c030000290000000002320019000000000021041b000000200030043f0000000c0100043d00000000020004140000006006100270000000fe0020009c000000fe02008041000000c0012002100000010a011001c70000800d0200003900000003030000390000010b04000041000001140000013d0000011e0020009c000001340000a13d0000011f0020009c000001b40000613d000001200020009c000001d20000613d000001210020009c000003a80000c13d000000240030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000401100370000000000101043b000001010010009c000003a80000213d00000107020000410000012e0000013d000001110020009c0000014c0000a13d000001120020009c000001ef0000613d000001130020009c0000021e0000613d000001140020009c000003a80000c13d000000240030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000401100370000000000101043b000001010010009c000003a80000213d0000012a020000410000012e0000013d000001280020009c000001640000613d000001290020009c000003a80000c13d000000440030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000402100370000000000202043b000001010020009c000003a80000213d0000002401100370000000000101043b000d00000001001d000000200020043f00000130010000410000000c0010043f0000000001000411000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000146011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b0000000d02000029000000000021041b000000000020043f0000002c0100043d00000000020004140000006006100270000000fe0020009c000000fe02008041000000c0012002100000013e011001c70000800d0200003900000003030000390000013f04000041000000000500041103f203e80000040f0000000100200190000003a80000613d000000400100043d00000001020000390000000000210435000000fe0010009c000000fe01008041000000400110021000000149011001c7000003f30001042e0000011b0020009c0000022f0000613d0000011c0020009c000003a80000c13d000000240030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000401100370000000000101043b000001010010009c000003a80000213d00000141020000410000000c0020043f000000000010043f0000000c01000039000000200200003903f203c60000040f0000017b0000013d000001220020009c000002440000613d000001230020009c000003a80000c13d0000000001000416000000000001004b000003a80000c13d0000013401000041000000800010043f0000013301000041000000a00010043f0000013201000041000000c00010043f000001350100004103f203db0000040f000000e00010043f0000000001000410000001000010043f0000008001000039000000a00200003903f203c60000040f000000800010043f0000012b01000041000003f30001042e000001150020009c0000024b0000613d000001160020009c000003a80000c13d000000440030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000402100370000000000202043b000001010020009c000003a80000213d0000002401100370000000000101043b000001010010009c000003a80000213d000000200010043f00000130010000410000000c0010043f000000000020043f0000000c010000390000003402000039000001320000013d0000000001000416000000000001004b000003a80000c13d000000c001000039000000400010043f0000000401000039000000800010043f0000014a02000041000000a00020043f0000002002000039000000c00020043f000000e00010043f000001000100043d0000014b011001970000014a011001c7000001000010043f000001040000043f0000014c01000041000003f30001042e0000000001000416000000000001004b000003a80000c13d0000010501000041000000000101041a000000800010043f0000012b01000041000003f30001042e000000640030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000402100370000000000202043b000d00000002001d000001010020009c000003a80000213d0000002402100370000000000202043b000c00000002001d000001010020009c000003a80000213d0000004401100370000000000101043b000b00000001001d0000000001000411000000200010043f0000000d010000290000006001100210000a00000001001d00000130011001c70000000c0010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000146011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000014d0020009c000002b40000613d0000000b0220006c000002b30000813d0000014701000041000000000010043f0000010e01000041000003f4000104300000000001000416000000000001004b000003a80000c13d0000010201000041000000000101041a0000010101100197000000800010043f0000012b01000041000003f30001042e000000240030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000401100370000000000101043b000d00000001001d00000107010000410000000c0010043f0000000001000411000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000000d03000029000000000232004b000002a20000813d0000014801000041000000000010043f0000010e01000041000003f4000104300000012a010000410000000c0010043f0000000001000411000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000001041b0000000001000414000000fe0010009c000000fe01008041000000c00110021000000103011001c70000800d0200003900000002030000390000014304000041000000000500041103f203e80000040f0000000100200190000003a80000613d0000000001000019000003f30001042e000000240030008c000003a80000413d0000000401100370000000000101043b000d00000001001d000001010010009c000003a80000213d0000010201000041000000000101041a0000000002000411000000000012004b000002770000c13d0000012a010000410000000c0010043f0000000d01000029000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000b00000001001d000000000101041a000c00000001001d0000012d0100004100000000001004430000000001000414000000fe0010009c000000fe01008041000000c0011002100000012e011001c70000800b0200003903f203ed0000040f0000000100200190000003aa0000613d000000000101043b0000000c0010006c000002e50000a13d0000012f01000041000000000010043f0000010e01000041000003f400010430000000240030008c000003a80000413d0000000401100370000000000101043b000001010010009c000003a80000213d0000010202000041000000000202041a0000000003000411000000000023004b000002770000c13d000000000001004b000002e80000c13d0000012c01000041000000000010043f0000010e01000041000003f4000104300000010201000041000000000501041a0000000001000411000000000051004b000002770000c13d0000000001000414000000fe0010009c000000fe01008041000000c00110021000000103011001c70000800d0200003900000003030000390000010404000041000000000600001903f203e80000040f0000000100200190000003a80000613d0000010201000041000000000001041b0000000001000019000003f30001042e0000000001000416000000000001004b000003a80000c13d0000001201000039000000800010043f0000012b01000041000003f30001042e000000e40030008c000003a80000413d0000000002000416000000000002004b000003a80000c13d0000000402100370000000000202043b000d00000002001d000001010020009c000003a80000213d0000002402100370000000000202043b000c00000002001d000001010020009c000003a80000213d0000006402100370000000000202043b000b00000002001d0000004402100370000000000202043b000a00000002001d0000008401100370000000000101043b000900000001001d000000ff0010008c000003a80000213d0000012d0100004100000000001004430000000001000414000000fe0010009c000000fe01008041000000c0011002100000012e011001c70000800b0200003903f203ed0000040f0000000100200190000003aa0000613d000000000101043b0000000b0010006c000002eb0000a13d0000014001000041000000000010043f0000010e01000041000003f4000104300000014201000041000000000010043f0000010e01000041000003f400010430000000000021041b00000107010000410000000c0010043f0000000d01000029000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a000001060220009a000000000021041b0000010901000041000000200010043f0000000c0100043d00000000020004140000006006100270000000fe0020009c000000fe02008041000000c0012002100000010a011001c70000800d0200003900000003030000390000010b04000041000000000500001903f203e80000040f0000000100200190000003a80000613d0000002001000039000001000010044300000120000004430000010c01000041000003f30001042e000000000021041b0000010501000041000000000201041a0000000002320049000000000021041b000000000030043f0000000001000414000000fe0010009c000000fe01008041000000c0011002100000013e011001c70000800d0200003900000003030000390000010b0400004100000000050004110000000006000019000001ea0000013d000000000021041b0000000a0100002900000107011001c70000000c0010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000000b0220006c000001ce0000413d000000000021041b0000000c01000029000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000201041a0000000b030000290000000002320019000000000021041b000000200030043f0000000c0100043d00000000020004140000006006100270000000fe0020009c000000fe02008041000000c0012002100000010a011001c70000800d0200003900000003030000390000010b040000410000000d0500002903f203e80000040f0000000100200190000001180000c13d000003a80000013d0000000b01000029000000000001041b0000000d0100002903f203af0000040f0000000001000019000003f30001042e000000400100043d000800000001001d00000131010000410000000e0010043f0000000d01000029000000000010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000108011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000400000001001d000000000101041a000700000001001d000000080200002900000040032000390000013201000041000600000003001d000000000013043500000020032000390000013301000041000500000003001d000000000013043500000134010000410000000000120435000001350100004100000000001004430000000001000414000000fe0010009c000000fe01008041000000c0011002100000012e011001c70000800b0200003903f203ed0000040f0000000100200190000003aa0000613d00000008030000290000006002300039000000000101043b000300000002001d000000000012043500000080023000390000000001000410000100000002001d0000000000120435000000fe0030009c000000fe01000041000000000103401900020040001002180000000001000414000000fe0010009c000000fe01008041000000c00110021000000002011001af00000136011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b0000002e0010043f0000013701000041000000080300002900000000001304350000000d01000029000000050200002900000000001204350000000c01000029000000060200002900000000001204350000000a0100002900000003020000290000000000120435000000070100002900000001020000290000000000120435000000a0013000390000000b0200002900000000002104350000000001000414000000fe0010009c000000fe01008041000000c00110021000000002011001af00000138011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b0000004e0010043f0000000001000414000000fe0010009c000000fe01008041000000c00110021000000139011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b000000000010043f0000000901000029000000200010043f0000000001000367000000a402100370000000000202043b000000400020043f000000c401100370000000000101043b000000600010043f0000000001000414000000fe0010009c000000fe01008041000000c0011002100000013a011001c7000000010200003903f203ed0000040f0000006003100270000000fe03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002004600039000003750000613d0000002007000039000000000801034f000000008908043c0000000007970436000000000047004b000003710000c13d000000000005004b000003820000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000000010304330000000d0010006c000003ab0000c13d000000010120018f00000007011000290000000402000029000000000012041b0000000c010000290000013c011001c7000000400010043f0000000001000414000000fe0010009c000000fe01008041000000c0011002100000013d011001c7000080100200003903f203ed0000040f0000000100200190000003a80000613d000000000101043b0000000a02000029000000000021041b0000000301000029000000fe0010009c000000fe0100804100000040011002100000000002000414000000fe0020009c000000fe02008041000000c002200210000000000112019f0000013e011001c70000800d0200003900000003030000390000013f040000410000000d050000290000000c06000029000001ea0000013d0000000001000019000003f400010430000000000001042f0000013b01000041000000000010043f0000010e01000041000003f40001043000010000000000020000010202000041000000000502041a00000000020004140000010106100197000000fe0020009c000000fe02008041000000c00120021000000103011001c70000800d0200003900000003030000390000010404000041000100000006001d03f203e80000040f0000000100200190000003c30000613d00000102010000410000000102000029000000000021041b000000000001042d0000000001000019000003f400010430000000000001042f000000fe0010009c000000fe010080410000004001100210000000fe0020009c000000fe020080410000006002200210000000000112019f0000000002000414000000fe0020009c000000fe02008041000000c002200210000000000112019f00000103011001c7000080100200003903f203ed0000040f0000000100200190000003d90000613d000000000101043b000000000001042d0000000001000019000003f40001043000000000001004430000000001000414000000fe0010009c000000fe01008041000000c0011002100000012e011001c70000800b0200003903f203ed0000040f0000000100200190000003e70000613d000000000101043b000000000001042d000000000001042f000003eb002104210000000102000039000000000001042d0000000002000019000000000001042d000003f0002104230000000102000039000000000001042d0000000002000019000000000001042d000003f200000432000003f30001042e000003f40001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7487392702000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000005345cdf77eb68f44cfffffffffffffffffffffffffffffffffffffffffcc4d1c3602f7fc3180000000000000000000000000000000000000000000000000000000000000087a211a202000000000000000000000000000000000000200000000c00000000000000000000000000000000000000000000000000000000033b2e3c9fd0803ce80000000200000000000000000000000000000000000020000000200000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000004000000100000000000000000000000000000000000000000000000000000000000000000000000000e5cfe95700000000000000000000000000000000000000040000001c000000000000000000000000000000000000000000000000000000000000000000000000715018a500000000000000000000000000000000000000000000000000000000d505acce00000000000000000000000000000000000000000000000000000000f04e283d00000000000000000000000000000000000000000000000000000000f04e283e00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000fee81cf400000000000000000000000000000000000000000000000000000000d505accf00000000000000000000000000000000000000000000000000000000dd62ed3e000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000007ecebe0000000000000000000000000000000000000000000000000000000000313ce5660000000000000000000000000000000000000000000000000000000042966c670000000000000000000000000000000000000000000000000000000042966c680000000000000000000000000000000000000000000000000000000054d1f13d0000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000313ce567000000000000000000000000000000000000000000000000000000003644e5150000000000000000000000000000000000000000000000000000000018160ddc0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000256929620000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b300000000000000000000000000000000000000000000000000000000389a75e10000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000007448fbae796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d955391320200000200000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000000000000000000006f5e8818000000000000000000000000000000000000000000000000000000007f5e9f200000000000000000000000000000000000000000000000000000383775081901c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc60a8799ca035859028df528939b4134cf487f8daa6402710ba6df01e989346e888b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f9a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b02000000000000000000000000000000000000a00000000000000000000000006e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c902000000000000000000000000000000000000c000000000000000000000000002000000000000000000000000000000000000420000002c0000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000ddafbaef00000000000000007f5e9f20000000000000000000000000000000000000000002000000000000000000000000000000000000340000002c000000000000000002000000000000000000000000000000000000200000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925000000000000000000000000000000000000000000000000000000001a15a3cc00000000000000000000000000000000000000000000000000000000383775080000000000000000000000000000000000000000000000000000000082b42900fa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd5d00dbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d02000000000000000000000000000000000000340000000c00000000000000000000000000000000000000000000000000000000000000000000000013be252b00000000000000000000000000000000000000000000000000000000f4d678b800000000000000000000000000000000000000200000000000000000000000004845524f0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000060000000c00000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0ff998667bbec855422346240a3f5da9f1bbfa687b9c0787d8126393c22e4c8e
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001b2c84dd7957b1e207cd7b01ded77984ec16fdef00000000000000000000000007c6479d0ba3f8e0da13b21ed0901683562ffff6
-----Decoded View---------------
Arg [0] : _owner (address): 0x1B2C84dd7957b1e207Cd7b01Ded77984eC16fDEf
Arg [1] : _to (address): 0x07C6479d0bA3F8e0DA13B21Ed0901683562FfFf6
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001b2c84dd7957b1e207cd7b01ded77984ec16fdef
Arg [1] : 00000000000000000000000007c6479d0ba3f8e0da13b21ed0901683562ffff6
[ 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.