ERC-20
Overview
Max Total Supply
5,191,733,494.567491309793274705 NUTS
Holders
1,633
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
456,359.15575810185185185 NUTSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
NutsCoin
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT LICENSEpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "hardhat/console.sol";contract NutsCoin is ERC20, Ownable {// a mapping from an address to whether or not it can mint / burnmapping(address => bool) controllers;uint256 public maxSupply = 6900000000 ether;// community wallet receives 690,000,000// development wallet reecives 69,000,000// total left for staking contract = 6141000000constructor() ERC20("NUTS", "NUTS") { }/*** mints $Deez to a recipient* @param to the recipient of the $Deez* @param amount the amount of $Deez to mint*/function mint(address to, uint256 amount) external {require(totalSupply() + amount <= maxSupply, "Max supply of token reached");require(controllers[msg.sender], "Only controllers can mint");_mint(to, amount);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >= 0.4.22 <0.9.0;library console {address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);function _sendLogPayload(bytes memory payload) private view {uint256 payloadLength = payload.length;address consoleAddress = CONSOLE_ADDRESS;assembly {let payloadStart := add(payload, 32)let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)}}function log() internal view {_sendLogPayload(abi.encodeWithSignature("log()"));}function logInt(int p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(int)", p0));}function logUint(uint p0) internal view {_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @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.*/
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.*/
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;}}
12345678910111213141516171819{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[{"internalType":"address","name":"controller","type":"address"}],"name":"addController","outputs":[],"stateMutability":"nonpayable","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":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[{"internalType":"address","name":"controller","type":"address"}],"name":"removeController","outputs":[],"stateMutability":"nonpayable","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
60806040526b164b8bd581eb74d7740000006007553480156200002157600080fd5b506040805180820182526004808252634e55545360e01b6020808401828152855180870190965292855284015281519192916200006191600391620000f0565b50805162000077906004906020840190620000f0565b505050620000946200008e6200009a60201b60201c565b6200009e565b620001d3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fe9062000196565b90600052602060002090601f0160209004810192826200012257600085556200016d565b82601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b5b808211156200017b576000815560010162000180565b600181811c90821680620001ab57607f821691505b60208210811415620001cd57634e487b7160e01b600052602260045260246000fd5b50919050565b610f4480620001e36000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610250578063d5abeb0114610263578063dd62ed3e1461026c578063f2fde38b146102a5578063f6a74ed7146102b857600080fd5b80638da5cb5b146101f457806395d89b411461020f5780639dc29fac14610217578063a457c2d71461022a578063a7fc7a071461023d57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806340c10f19146101ae57806370a08231146101c3578063715018a6146101ec57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102cb565b60405161013b9190610e04565b60405180910390f35b610157610152366004610dda565b61035d565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d9e565b610375565b6040516012815260200161013b565b6101576101a9366004610dda565b610399565b6101c16101bc366004610dda565b6103d8565b005b61016b6101d1366004610d49565b6001600160a01b031660009081526020819052604090205490565b6101c16104af565b6005546040516001600160a01b03909116815260200161013b565b61012e6104e5565b6101c1610225366004610dda565b6104f4565b610157610238366004610dda565b61055d565b6101c161024b366004610d49565b6105ef565b61015761025e366004610dda565b61063d565b61016b60075481565b61016b61027a366004610d6b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102b3366004610d49565b61064b565b6101c16102c6366004610d49565b6106e6565b6060600380546102da90610ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461030690610ebd565b80156103535780601f1061032857610100808354040283529160200191610353565b820191906000526020600020905b81548152906001019060200180831161033657829003601f168201915b5050505050905090565b60003361036b818585610731565b5060019392505050565b600033610383858285610856565b61038e8585856108e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061036b90829086906103d3908790610e8e565b610731565b600754816103e560025490565b6103ef9190610e8e565b11156104425760405162461bcd60e51b815260206004820152601b60248201527f4d617820737570706c79206f6620746f6b656e2072656163686564000000000060448201526064015b60405180910390fd5b3360009081526006602052604090205460ff166104a15760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e74000000000000006044820152606401610439565b6104ab8282610ab6565b5050565b6005546001600160a01b031633146104d95760405162461bcd60e51b815260040161043990610e59565b6104e36000610b95565b565b6060600480546102da90610ebd565b3360009081526006602052604090205460ff166105535760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e000000000000006044820152606401610439565b6104ab8282610be7565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610439565b61038e8286868403610731565b6005546001600160a01b031633146106195760405162461bcd60e51b815260040161043990610e59565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60003361036b8185856108e8565b6005546001600160a01b031633146106755760405162461bcd60e51b815260040161043990610e59565b6001600160a01b0381166106da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610439565b6106e381610b95565b50565b6005546001600160a01b031633146107105760405162461bcd60e51b815260040161043990610e59565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b0383166107935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610439565b6001600160a01b0382166107f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610439565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146108e257818110156108d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610439565b6108e28484848403610731565b50505050565b6001600160a01b03831661094c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610439565b6001600160a01b0382166109ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610439565b6001600160a01b03831660009081526020819052604090205481811015610a265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610439565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a5d908490610e8e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aa991815260200190565b60405180910390a36108e2565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610439565b8060026000828254610b1e9190610e8e565b90915550506001600160a01b03821660009081526020819052604081208054839290610b4b908490610e8e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610439565b6001600160a01b03821660009081526020819052604090205481811015610cbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610439565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cea908490610ea6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610849565b80356001600160a01b0381168114610d4457600080fd5b919050565b600060208284031215610d5b57600080fd5b610d6482610d2d565b9392505050565b60008060408385031215610d7e57600080fd5b610d8783610d2d565b9150610d9560208401610d2d565b90509250929050565b600080600060608486031215610db357600080fd5b610dbc84610d2d565b9250610dca60208501610d2d565b9150604084013590509250925092565b60008060408385031215610ded57600080fd5b610df683610d2d565b946020939093013593505050565b600060208083528351808285015260005b81811015610e3157858101830151858201604001528201610e15565b81811115610e43576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ea157610ea1610ef8565b500190565b600082821015610eb857610eb8610ef8565b500390565b600181811c90821680610ed157607f821691505b60208210811415610ef257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cda4b0b652a974fe843c314273c74e32881824f96e31b2d5d2414b215d99e58b64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610250578063d5abeb0114610263578063dd62ed3e1461026c578063f2fde38b146102a5578063f6a74ed7146102b857600080fd5b80638da5cb5b146101f457806395d89b411461020f5780639dc29fac14610217578063a457c2d71461022a578063a7fc7a071461023d57600080fd5b8063313ce567116100f4578063313ce5671461018c578063395093511461019b57806340c10f19146101ae57806370a08231146101c3578063715018a6146101ec57600080fd5b806306fdde0314610126578063095ea7b31461014457806318160ddd1461016757806323b872dd14610179575b600080fd5b61012e6102cb565b60405161013b9190610e04565b60405180910390f35b610157610152366004610dda565b61035d565b604051901515815260200161013b565b6002545b60405190815260200161013b565b610157610187366004610d9e565b610375565b6040516012815260200161013b565b6101576101a9366004610dda565b610399565b6101c16101bc366004610dda565b6103d8565b005b61016b6101d1366004610d49565b6001600160a01b031660009081526020819052604090205490565b6101c16104af565b6005546040516001600160a01b03909116815260200161013b565b61012e6104e5565b6101c1610225366004610dda565b6104f4565b610157610238366004610dda565b61055d565b6101c161024b366004610d49565b6105ef565b61015761025e366004610dda565b61063d565b61016b60075481565b61016b61027a366004610d6b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101c16102b3366004610d49565b61064b565b6101c16102c6366004610d49565b6106e6565b6060600380546102da90610ebd565b80601f016020809104026020016040519081016040528092919081815260200182805461030690610ebd565b80156103535780601f1061032857610100808354040283529160200191610353565b820191906000526020600020905b81548152906001019060200180831161033657829003601f168201915b5050505050905090565b60003361036b818585610731565b5060019392505050565b600033610383858285610856565b61038e8585856108e8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061036b90829086906103d3908790610e8e565b610731565b600754816103e560025490565b6103ef9190610e8e565b11156104425760405162461bcd60e51b815260206004820152601b60248201527f4d617820737570706c79206f6620746f6b656e2072656163686564000000000060448201526064015b60405180910390fd5b3360009081526006602052604090205460ff166104a15760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206d696e74000000000000006044820152606401610439565b6104ab8282610ab6565b5050565b6005546001600160a01b031633146104d95760405162461bcd60e51b815260040161043990610e59565b6104e36000610b95565b565b6060600480546102da90610ebd565b3360009081526006602052604090205460ff166105535760405162461bcd60e51b815260206004820152601960248201527f4f6e6c7920636f6e74726f6c6c6572732063616e206275726e000000000000006044820152606401610439565b6104ab8282610be7565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156105e25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610439565b61038e8286868403610731565b6005546001600160a01b031633146106195760405162461bcd60e51b815260040161043990610e59565b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b60003361036b8185856108e8565b6005546001600160a01b031633146106755760405162461bcd60e51b815260040161043990610e59565b6001600160a01b0381166106da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610439565b6106e381610b95565b50565b6005546001600160a01b031633146107105760405162461bcd60e51b815260040161043990610e59565b6001600160a01b03166000908152600660205260409020805460ff19169055565b6001600160a01b0383166107935760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610439565b6001600160a01b0382166107f45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610439565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146108e257818110156108d55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610439565b6108e28484848403610731565b50505050565b6001600160a01b03831661094c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610439565b6001600160a01b0382166109ae5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610439565b6001600160a01b03831660009081526020819052604090205481811015610a265760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610439565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a5d908490610e8e565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aa991815260200190565b60405180910390a36108e2565b6001600160a01b038216610b0c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610439565b8060026000828254610b1e9190610e8e565b90915550506001600160a01b03821660009081526020819052604081208054839290610b4b908490610e8e565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610c475760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610439565b6001600160a01b03821660009081526020819052604090205481811015610cbb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610439565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cea908490610ea6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610849565b80356001600160a01b0381168114610d4457600080fd5b919050565b600060208284031215610d5b57600080fd5b610d6482610d2d565b9392505050565b60008060408385031215610d7e57600080fd5b610d8783610d2d565b9150610d9560208401610d2d565b90509250929050565b600080600060608486031215610db357600080fd5b610dbc84610d2d565b9250610dca60208501610d2d565b9150604084013590509250925092565b60008060408385031215610ded57600080fd5b610df683610d2d565b946020939093013593505050565b600060208083528351808285015260005b81811015610e3157858101830151858201604001528201610e15565b81811115610e43576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610ea157610ea1610ef8565b500190565b600082821015610eb857610eb8610ef8565b500390565b600181811c90821680610ed157607f821691505b60208210811415610ef257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220cda4b0b652a974fe843c314273c74e32881824f96e31b2d5d2414b215d99e58b64736f6c63430008070033
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.