Token
Fantastic Protocol SNOWY Token (SNOWY)
ERC-20
Overview
Max Total Supply
30,000,000 SNOWY
Holders
5
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,000,000 SNOWYLoading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xE8E468eE...1930Dd458 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SNOWY
Compiler Version
v0.8.4+commit.c7e474f2
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.4;import "../YToken.sol";contract SNOWY is YToken {uint256 public constant MAX_TOTAL_SUPPLY = 30_000_000 ether;constructor(string memory _name,string memory _symbol,address _daoFund,address _devFund,address _treasuryFund,address _reserve) YToken(_name, _symbol) {_mint(msg.sender, 2 ether);_mint(_daoFund, 3_000_000 ether); // 10%_mint(_devFund, 3_000_000 ether); // 10%_mint(_treasuryFund, 3_000_000 ether); // 10%_mint(_reserve, MAX_TOTAL_SUPPLY - 9_000_002 ether);}// ===== OVERRIDEN =============
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 (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 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/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.*/
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;}}
1234567891011// SPDX-License-Identifier: MITpragma solidity 0.8.4;import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";abstract contract YToken is ERC20Burnable {constructor(string memory _name, string memory _symbol) ERC20(_name, _symbol) {}function maxTotalSupply() internal virtual view returns (uint256);}
123456789101112131415161718192021{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"metadata": {"useLiteralContent": true}}
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_daoFund","type":"address"},{"internalType":"address","name":"_devFund","type":"address"},{"internalType":"address","name":"_treasuryFund","type":"address"},{"internalType":"address","name":"_reserve","type":"address"}],"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":"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":"MAX_TOTAL_SUPPLY","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162000fa638038062000fa6833981016040819052620000349162000361565b85858181816003908051906020019062000050929190620001eb565b50805162000066906004906020840190620001eb565b50505050506200008533671bc16d674ec800006200010360201b60201c565b6200009c846a027b46536c66c8e300000062000103565b620000b3836a027b46536c66c8e300000062000103565b620000ca826a027b46536c66c8e300000062000103565b620000f781620000f16a0771d31606a1c1f7c800006a18d0bf423c03d8de0000006200042c565b62000103565b505050505050620004af565b6001600160a01b0382166200015e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000172919062000411565b90915550506001600160a01b03821660009081526020819052604081208054839290620001a190849062000411565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001f99062000446565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b80516001600160a01b0381168114620002a957600080fd5b919050565b600082601f830112620002bf578081fd5b81516001600160401b0380821115620002dc57620002dc62000499565b604051601f8301601f19908116603f0116810190828211818310171562000307576200030762000499565b8160405283815260209250868385880101111562000323578485fd5b8491505b8382101562000346578582018301518183018401529082019062000327565b838211156200035757848385830101525b9695505050505050565b60008060008060008060c087890312156200037a578182fd5b86516001600160401b038082111562000391578384fd5b6200039f8a838b01620002ae565b97506020890151915080821115620003b5578384fd5b50620003c489828a01620002ae565b955050620003d56040880162000291565b9350620003e56060880162000291565b9250620003f56080880162000291565b91506200040560a0880162000291565b90509295509295509295565b6000821982111562000427576200042762000483565b500190565b60008282101562000441576200044162000483565b500390565b600181811c908216806200045b57607f821691505b602082108114156200047d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b610ae780620004bf6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101da578063a457c2d7146101e2578063a9059cbb146101f5578063dd62ed3e1461020857600080fd5b806342966c681461018957806370a082311461019e57806379cc6790146101c757600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806333039d3d14610164578063395093511461017657600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610241565b60405161010491906109de565b60405180910390f35b61012061011b36600461099d565b6102d3565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610962565b6102eb565b60405160128152602001610104565b6101346a18d0bf423c03d8de00000081565b61012061018436600461099d565b61030f565b61019c6101973660046109c6565b61034e565b005b6101346101ac36600461090f565b6001600160a01b031660009081526020819052604090205490565b61019c6101d536600461099d565b61035b565b6100f7610374565b6101206101f036600461099d565b610383565b61012061020336600461099d565b61041a565b610134610216366004610930565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025090610a60565b80601f016020809104026020016040519081016040528092919081815260200182805461027c90610a60565b80156102c95780601f1061029e576101008083540402835291602001916102c9565b820191906000526020600020905b8154815290600101906020018083116102ac57829003601f168201915b5050505050905090565b6000336102e1818585610428565b5060019392505050565b6000336102f985828561054d565b6103048585856105df565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102e19082908690610349908790610a31565b610428565b61035833826107ad565b50565b61036682338361054d565b61037082826107ad565b5050565b60606004805461025090610a60565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561040d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103048286868403610428565b6000336102e18185856105df565b6001600160a01b03831661048a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610404565b6001600160a01b0382166104eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610404565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105d957818110156105cc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610404565b6105d98484848403610428565b50505050565b6001600160a01b0383166106435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610404565b6001600160a01b0382166106a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610404565b6001600160a01b0383166000908152602081905260409020548181101561071d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610404565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610754908490610a31565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107a091815260200190565b60405180910390a36105d9565b6001600160a01b03821661080d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610404565b6001600160a01b038216600090815260208190526040902054818110156108815760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610404565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108b0908490610a49565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610540565b80356001600160a01b038116811461090a57600080fd5b919050565b600060208284031215610920578081fd5b610929826108f3565b9392505050565b60008060408385031215610942578081fd5b61094b836108f3565b9150610959602084016108f3565b90509250929050565b600080600060608486031215610976578081fd5b61097f846108f3565b925061098d602085016108f3565b9150604084013590509250925092565b600080604083850312156109af578182fd5b6109b8836108f3565b946020939093013593505050565b6000602082840312156109d7578081fd5b5035919050565b6000602080835283518082850152825b81811015610a0a578581018301518582016040015282016109ee565b81811115610a1b5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a4457610a44610a9b565b500190565b600082821015610a5b57610a5b610a9b565b500390565b600181811c90821680610a7457607f821691505b60208210811415610a9557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220669a1f1da6deab81fa4b400aefe84f9aad28dda489f5045b18b0aad2004b9fdc64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000ee28a2ca3de281e4247ad561ef3e429efa5c565f000000000000000000000000f6db132836bc94ea4f5489e286c6a3fa31e29c9b0000000000000000000000000fe4cc61cdcb14538083c1e8f873ddd1f0e4a455000000000000000000000000c8ff50c40509ffdc73c95125e9526c7a2c50a519000000000000000000000000000000000000000000000000000000000000001e46616e7461737469632050726f746f636f6c20534e4f575920546f6b656e00000000000000000000000000000000000000000000000000000000000000000005534e4f5759000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b41146101da578063a457c2d7146101e2578063a9059cbb146101f5578063dd62ed3e1461020857600080fd5b806342966c681461018957806370a082311461019e57806379cc6790146101c757600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce5671461015557806333039d3d14610164578063395093511461017657600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610241565b60405161010491906109de565b60405180910390f35b61012061011b36600461099d565b6102d3565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610962565b6102eb565b60405160128152602001610104565b6101346a18d0bf423c03d8de00000081565b61012061018436600461099d565b61030f565b61019c6101973660046109c6565b61034e565b005b6101346101ac36600461090f565b6001600160a01b031660009081526020819052604090205490565b61019c6101d536600461099d565b61035b565b6100f7610374565b6101206101f036600461099d565b610383565b61012061020336600461099d565b61041a565b610134610216366004610930565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60606003805461025090610a60565b80601f016020809104026020016040519081016040528092919081815260200182805461027c90610a60565b80156102c95780601f1061029e576101008083540402835291602001916102c9565b820191906000526020600020905b8154815290600101906020018083116102ac57829003601f168201915b5050505050905090565b6000336102e1818585610428565b5060019392505050565b6000336102f985828561054d565b6103048585856105df565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906102e19082908690610349908790610a31565b610428565b61035833826107ad565b50565b61036682338361054d565b61037082826107ad565b5050565b60606004805461025090610a60565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561040d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103048286868403610428565b6000336102e18185856105df565b6001600160a01b03831661048a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610404565b6001600160a01b0382166104eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610404565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146105d957818110156105cc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610404565b6105d98484848403610428565b50505050565b6001600160a01b0383166106435760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610404565b6001600160a01b0382166106a55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610404565b6001600160a01b0383166000908152602081905260409020548181101561071d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610404565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610754908490610a31565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107a091815260200190565b60405180910390a36105d9565b6001600160a01b03821661080d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610404565b6001600160a01b038216600090815260208190526040902054818110156108815760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610404565b6001600160a01b03831660009081526020819052604081208383039055600280548492906108b0908490610a49565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610540565b80356001600160a01b038116811461090a57600080fd5b919050565b600060208284031215610920578081fd5b610929826108f3565b9392505050565b60008060408385031215610942578081fd5b61094b836108f3565b9150610959602084016108f3565b90509250929050565b600080600060608486031215610976578081fd5b61097f846108f3565b925061098d602085016108f3565b9150604084013590509250925092565b600080604083850312156109af578182fd5b6109b8836108f3565b946020939093013593505050565b6000602082840312156109d7578081fd5b5035919050565b6000602080835283518082850152825b81811015610a0a578581018301518582016040015282016109ee565b81811115610a1b5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a4457610a44610a9b565b500190565b600082821015610a5b57610a5b610a9b565b500390565b600181811c90821680610a7457607f821691505b60208210811415610a9557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220669a1f1da6deab81fa4b400aefe84f9aad28dda489f5045b18b0aad2004b9fdc64736f6c63430008040033
[ 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.