ERC-20
Overview
Max Total Supply
22,749,999.66 BLOCKS
Holders
447
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000528229 BLOCKSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BlocksToken
Compiler Version
v0.8.12+commit.f00d7308
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;/// @author: BLOCKSimport "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "./IBlocksToken.sol";/*** BlocksToken - Governance token for the BLOCKS DAOMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNOxkxONMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNXKKKKKKKKKKXXNMWNXKKKKXNMMMMMMMMWNOl'..;. 'lkXWMMMMMMWNXXKXKKXKKKXWMWNXKKKKXNMWXKKKKXNMWXKKKKXXXKKXNWMMMMMMMMMMMMMMMWx.......'.....,dKl......dWMMMMWXkl' .;. 'ckXWMMKl'....''.....;kKc.....'xWk,....:Ox;.....''....'oXMMMMMMMMMMMMMMWo ':. 'x; lNMMMKl. .;. .cdOo ':. 'x, oO, .xO' .:' .dWMMMMMMMMMMMMMWo ,c. 'x; lNMMWd .:. .ll ,c. 'd, :: .xWO. .c, dWMMMMMMMMMMMMMWo ,c. ;k; lNMMWo .:. .cl ,c. 'd; . .dWM0, .:c,,,,:oKMMMMMMMMMMMMMMWo .' ;OK; cXWWWo ..,;,.. .cl ,xocccccxO, .oNMMWOc,'''',......cKMMMMMMMMMMMMMMWo .;. .cO; .,,;xl ..''. .''.. .cc ,dc,,,,,lk, lNMMKc,'''':o' .dWMMMMMMMMMMMMMWo ,c. 'x: cl..'''. ..''...lc ,c. 'd; . .oNMO. .c, dWMMMMMMMMMMMMMWo ,c. 'x: cOl,. .'cdOl ,c. 'd; cc .oNO. .c, dWMMMMMMMMMMMMMWo ';. ,k: lNXxc. .:xXWWd. ';. ,x; o0; .dO' .:. .xWMMMMMM
123456789101112// SPDX-License-Identifier: MITpragma solidity ^0.8.0;/// @author: BLOCKSimport "@openzeppelin/contracts/token/ERC20/IERC20.sol";interface IBlocksToken is IERC20 {function SUPPLY_CAP() external view returns (uint256);function mint(address account, uint256 amount) external returns (bool);}
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.5.0) (token/ERC20/extensions/ERC20Burnable.sol)pragma solidity ^0.8.0;import "../ERC20.sol";import "../../../utils/Context.sol";/*** @dev Extension of {ERC20} that allows token holders to destroy both their own* tokens and those that they have an allowance for, in a way that can be* recognized off-chain (via event analysis).*/abstract contract ERC20Burnable is Context, ERC20 {/*** @dev Destroys `amount` tokens from the caller.** See {ERC20-_burn}.*/function burn(uint256 amount) public virtual {_burn(_msgSender(), amount);}/*** @dev Destroys `amount` tokens from `account`, deducting from the caller's* allowance.
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.6.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 v4.4.1 (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.
123456789101112131415161718192021{"remappings": [],"optimizer": {"enabled": true,"runs": 200},"evmVersion": "london","libraries": {},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_premintReceiver","type":"address"},{"internalType":"uint256","name":"_premintAmount","type":"uint256"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"stateMutability":"nonpayable","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":[],"name":"SUPPLY_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"status","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
60a06040523480156200001157600080fd5b50604051620011c1380380620011c1833981016040819052620000349162000309565b604080518082018252600680825265424c4f434b5360d01b602080840182815285518087019096529285528401528151919291620000759160039162000263565b5080516200008b90600490602084019062000263565b505050620000a8620000a26200012860201b60201c565b6200012c565b818111620001105760405162461bcd60e51b815260206004820152602a60248201527f424c4f434b533a205072656d696e7420616d6f756e7420697320677265617465604482015269072207468616e206361760b41b60648201526084015b60405180910390fd5b6200011c83836200017e565b60805250620003b29050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001d65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000107565b8060026000828254620001ea91906200034e565b90915550506001600160a01b03821660009081526020819052604081208054839290620002199084906200034e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620002719062000375565b90600052602060002090601f016020900481019282620002955760008555620002e0565b82601f10620002b057805160ff1916838001178555620002e0565b82800160010185558215620002e0579182015b82811115620002e0578251825591602001919060010190620002c3565b50620002ee929150620002f2565b5090565b5b80821115620002ee5760008155600101620002f3565b6000806000606084860312156200031f57600080fd5b83516001600160a01b03811681146200033757600080fd5b602085015160409095015190969495509392505050565b600082198211156200037057634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200038a57607f821691505b60208210811415620003ac57634e487b7160e01b600052602260045260246000fd5b50919050565b608051610dec620003d56000396000818161015e01526103ce0152610dec6000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610250578063a457c2d714610258578063a9059cbb1461026b578063dd62ed3e1461027e578063f2fde38b1461029157600080fd5b806370a08231146101f1578063715018a61461021a57806379cc6790146102225780638da5cb5b1461023557600080fd5b806323b872dd116100e957806323b872dd14610194578063313ce567146101a757806339509351146101b657806340c10f19146101c957806342966c68146101dc57600080fd5b806306fdde031461011b578063095ea7b3146101395780630cfccc831461015c57806318160ddd1461018c575b600080fd5b6101236102a4565b6040516101309190610bbc565b60405180910390f35b61014c610147366004610c2d565b610336565b6040519015158152602001610130565b7f00000000000000000000000000000000000000000000000000000000000000005b604051908152602001610130565b60025461017e565b61014c6101a2366004610c57565b610350565b60405160128152602001610130565b61014c6101c4366004610c2d565b610374565b61014c6101d7366004610c2d565b610396565b6101ef6101ea366004610c93565b610421565b005b61017e6101ff366004610cac565b6001600160a01b031660009081526020819052604090205490565b6101ef61042e565b6101ef610230366004610c2d565b610464565b6005546040516001600160a01b039091168152602001610130565b61012361047d565b61014c610266366004610c2d565b61048c565b61014c610279366004610c2d565b610507565b61017e61028c366004610cce565b610515565b6101ef61029f366004610cac565b610540565b6060600380546102b390610d01565b80601f01602080910402602001604051908101604052809291908181526020018280546102df90610d01565b801561032c5780601f106103015761010080835404028352916020019161032c565b820191906000526020600020905b81548152906001019060200180831161030f57829003601f168201915b5050505050905090565b6000336103448185856105d8565b60019150505b92915050565b60003361035e8582856106fd565b610369858585610777565b506001949350505050565b6000336103448185856103878383610515565b6103919190610d52565b6105d8565b6005546000906001600160a01b031633146103cc5760405162461bcd60e51b81526004016103c390610d6a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826103f760025490565b6104019190610d52565b11610418576104108383610945565b50600161034a565b50600092915050565b61042b3382610a24565b50565b6005546001600160a01b031633146104585760405162461bcd60e51b81526004016103c390610d6a565b6104626000610b6a565b565b61046f8233836106fd565b6104798282610a24565b5050565b6060600480546102b390610d01565b6000338161049a8286610515565b9050838110156104fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c3565b61036982868684036105d8565b600033610344818585610777565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461056a5760405162461bcd60e51b81526004016103c390610d6a565b6001600160a01b0381166105cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c3565b61042b81610b6a565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c3565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107098484610515565b9050600019811461077157818110156107645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103c3565b61077184848484036105d8565b50505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c3565b6001600160a01b03821661083d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c3565b6001600160a01b038316600090815260208190526040902054818110156108b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108ec908490610d52565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161093891815260200190565b60405180910390a3610771565b6001600160a01b03821661099b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c3565b80600260008282546109ad9190610d52565b90915550506001600160a01b038216600090815260208190526040812080548392906109da908490610d52565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c3565b6001600160a01b03821660009081526020819052604090205481811015610af85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b27908490610d9f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106f0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610be957858101830151858201604001528201610bcd565b81811115610bfb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c2857600080fd5b919050565b60008060408385031215610c4057600080fd5b610c4983610c11565b946020939093013593505050565b600080600060608486031215610c6c57600080fd5b610c7584610c11565b9250610c8360208501610c11565b9150604084013590509250925092565b600060208284031215610ca557600080fd5b5035919050565b600060208284031215610cbe57600080fd5b610cc782610c11565b9392505050565b60008060408385031215610ce157600080fd5b610cea83610c11565b9150610cf860208401610c11565b90509250929050565b600181811c90821680610d1557607f821691505b60208210811415610d3657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d6557610d65610d3c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610db157610db1610d3c565b50039056fea2646970667358221220e68d846a167501574db7a6cb2f96859e04410c97e6b34ab7ab1f816073d7dcd664736f6c634300080c0033000000000000000000000000ee69ed2f3ab411e4fd6c405ab1e02fdea5b97bdb00000000000000000000000000000000000000000006e4a6e31b19805b3400000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b4114610250578063a457c2d714610258578063a9059cbb1461026b578063dd62ed3e1461027e578063f2fde38b1461029157600080fd5b806370a08231146101f1578063715018a61461021a57806379cc6790146102225780638da5cb5b1461023557600080fd5b806323b872dd116100e957806323b872dd14610194578063313ce567146101a757806339509351146101b657806340c10f19146101c957806342966c68146101dc57600080fd5b806306fdde031461011b578063095ea7b3146101395780630cfccc831461015c57806318160ddd1461018c575b600080fd5b6101236102a4565b6040516101309190610bbc565b60405180910390f35b61014c610147366004610c2d565b610336565b6040519015158152602001610130565b7f0000000000000000000000000000000000000000052b7d2dcc80cd2e400000005b604051908152602001610130565b60025461017e565b61014c6101a2366004610c57565b610350565b60405160128152602001610130565b61014c6101c4366004610c2d565b610374565b61014c6101d7366004610c2d565b610396565b6101ef6101ea366004610c93565b610421565b005b61017e6101ff366004610cac565b6001600160a01b031660009081526020819052604090205490565b6101ef61042e565b6101ef610230366004610c2d565b610464565b6005546040516001600160a01b039091168152602001610130565b61012361047d565b61014c610266366004610c2d565b61048c565b61014c610279366004610c2d565b610507565b61017e61028c366004610cce565b610515565b6101ef61029f366004610cac565b610540565b6060600380546102b390610d01565b80601f01602080910402602001604051908101604052809291908181526020018280546102df90610d01565b801561032c5780601f106103015761010080835404028352916020019161032c565b820191906000526020600020905b81548152906001019060200180831161030f57829003601f168201915b5050505050905090565b6000336103448185856105d8565b60019150505b92915050565b60003361035e8582856106fd565b610369858585610777565b506001949350505050565b6000336103448185856103878383610515565b6103919190610d52565b6105d8565b6005546000906001600160a01b031633146103cc5760405162461bcd60e51b81526004016103c390610d6a565b60405180910390fd5b7f0000000000000000000000000000000000000000052b7d2dcc80cd2e40000000826103f760025490565b6104019190610d52565b11610418576104108383610945565b50600161034a565b50600092915050565b61042b3382610a24565b50565b6005546001600160a01b031633146104585760405162461bcd60e51b81526004016103c390610d6a565b6104626000610b6a565b565b61046f8233836106fd565b6104798282610a24565b5050565b6060600480546102b390610d01565b6000338161049a8286610515565b9050838110156104fa5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103c3565b61036982868684036105d8565b600033610344818585610777565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b0316331461056a5760405162461bcd60e51b81526004016103c390610d6a565b6001600160a01b0381166105cf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103c3565b61042b81610b6a565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103c3565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103c3565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107098484610515565b9050600019811461077157818110156107645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103c3565b61077184848484036105d8565b50505050565b6001600160a01b0383166107db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103c3565b6001600160a01b03821661083d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103c3565b6001600160a01b038316600090815260208190526040902054818110156108b55760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103c3565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906108ec908490610d52565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161093891815260200190565b60405180910390a3610771565b6001600160a01b03821661099b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103c3565b80600260008282546109ad9190610d52565b90915550506001600160a01b038216600090815260208190526040812080548392906109da908490610d52565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b038216610a845760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103c3565b6001600160a01b03821660009081526020819052604090205481811015610af85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103c3565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610b27908490610d9f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106f0565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b81811015610be957858101830151858201604001528201610bcd565b81811115610bfb576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610c2857600080fd5b919050565b60008060408385031215610c4057600080fd5b610c4983610c11565b946020939093013593505050565b600080600060608486031215610c6c57600080fd5b610c7584610c11565b9250610c8360208501610c11565b9150604084013590509250925092565b600060208284031215610ca557600080fd5b5035919050565b600060208284031215610cbe57600080fd5b610cc782610c11565b9392505050565b60008060408385031215610ce157600080fd5b610cea83610c11565b9150610cf860208401610c11565b90509250929050565b600181811c90821680610d1557607f821691505b60208210811415610d3657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610d6557610d65610d3c565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610db157610db1610d3c565b50039056fea2646970667358221220e68d846a167501574db7a6cb2f96859e04410c97e6b34ab7ab1f816073d7dcd664736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ee69ed2f3ab411e4fd6c405ab1e02fdea5b97bdb00000000000000000000000000000000000000000006e4a6e31b19805b3400000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000
-----Decoded View---------------
Arg [0] : _premintReceiver (address): 0xee69ed2f3ab411e4fd6c405aB1E02fdEa5B97bDB
Arg [1] : _premintAmount (uint256): 8333333000000000000000000
Arg [2] : _cap (uint256): 1600000000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000ee69ed2f3ab411e4fd6c405ab1e02fdea5b97bdb
Arg [1] : 00000000000000000000000000000000000000000006e4a6e31b19805b340000
Arg [2] : 0000000000000000000000000000000000000000052b7d2dcc80cd2e40000000
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.