ERC-20
Overview
Max Total Supply
100,000,000 WISP
Holders
17,544
Total Transfers
-
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
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 Name:
Whisper
Compiler Version
v0.8.18+commit.87f61d96
ZkSolc Version
v1.3.5
Contract Source Code (Solidity)
/** *Submitted for verification at era.zksync.network on 2024-01-04 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.18; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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. */ 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. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } 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. */ function decimals() external view returns (uint8); } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Whisper is ERC20 { constructor() ERC20("Whisper", "WISP") { _mint(_msgSender(), 100_000_000 ether); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100014d65b666212d07308f0c9ab9c1a00938821e1f181037bc491af7dd3a2600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00020000000000020006000000000002000100000001035500000060011002700000011f0010019d00000001012001900000005b0000c13d0000008001000039000000400010043f0000000001000031000000040110008c000002620000413d0000000101000367000000000101043b000000e0011002700000012b0210009c000001500000613d0000012c0210009c000000c20000613d0000012d0210009c0000017b0000613d0000012e0210009c000001930000613d0000012f0210009c000000e00000613d000001300210009c000001d80000613d000001310210009c000000f70000613d000001320210009c000001150000613d000001330210009c000002120000613d000001340210009c000002510000613d000001350110009c000002620000c13d0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000000310004c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d0000000303000039000000000203041a000000010420019000000001012002700000007f0510018f00000000010560190000001f0510008c00000000050000190000000105002039000000000552013f0000000105500190000000840000c13d000000800010043f000000000440004c000003340000c13d000001000300008a000000000232016f000000a00020043f000000000110004c000000c004000039000000a0040060390000001f01400039000000200200008a000000000221016f0000013e012000410000013f0110009c000000710000413d000000400020043f0000000001020019000600000001001d0000008002000039047703830000040f0000000603000029000000000231004900000000010300190000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000c001000039000000400010043f0000000701000039000000800010043f0000012001000041000000a00010043f000000400500043d000001210150009c000000710000813d0000004001500039000000400010043f00000004040000390000000000450435000000200650003900000122010000410000000000160435000000800800043d000001230180009c000000780000a13d0000013b0100004100000000001004350000004101000039000000040010043f000000240200003900000000010000190477037a0000040f0000000307000039000000000107041a000000010210019000000001011002700000007f0310018f000000000301c0190000001f0130008c00000000010000190000000101002039000000010110018f000000000112004b0000008b0000613d0000013b0100004100000000001004350000002201000039000000040010043f000000240200003900000000010000190477037a0000040f000000200130008c000600000004001d000500000005001d000400000006001d000300000007001d000200000008001d000000ab0000413d000000000070043500000020020000390000000001000019000100000003001d047703590000040f000000020800002900000003070000290000000406000029000000050500002900000006040000290000001f028000390000000502200270000000200380008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000ab0000813d000000000001041b0000000101100039000000a60000013d0000001f0180008c000002650000a13d00000000007004350000002002000039000100000002001d0000000001000019047703590000040f0000000108000029000000020700002900000004060000290000000505000029000000200200008a000000000227016f0000000003000019000000000423004b0000008004800039000002700000813d0000000004040433000000000041041b000000200330003900000020088000390000000101100039000000b90000013d0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000400310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d047703990000040f00000024020000390000000102200367000000000302043b000000000201001900000000010004110477041c0000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000000310004c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d000000400100043d0000001202000039000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000200310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d047703990000040f00000137011001970000000000100435000000200000043f00000040020000390000000001000019047703590000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000000310004c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d0000000404000039000000000304041a000000010530019000000001013002700000007f0210018f00000000010260190000001f0210008c00000000020000190000000102002039000000000223013f0000000102200190000000840000c13d000000400200043d0000000000120435000000000550004c000003280000c13d000001000400008a000000000343016f00000020042000390000000000340435000000000110004c000000200300003900000000030060190000003f01300039000000200300008a000000000331016f0000000001230019000000000331004b00000000040000190000000104004039000001230310009c000000710000213d0000000103400190000000710000c13d000000400010043f000600000001001d047703830000040f0000000603000029000000000231004900000000010300190000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000400310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d047703990000040f000600000001001d047703a20000040f0000000602000029000001370220019700000000002004350000000102000039000000200020043f000500000001001d0000004002000039000600000002001d0000000001000019047703590000040f000000050200002900000137022001970000000000200435000000200010043f00000000010000190000000602000029047703590000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000000310004c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d0000000201000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000600310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d00000001010003670000000402100370000000000302043b000001370230009c000002620000213d0000002402100370000000000402043b000001370240009c000002620000213d000200000004001d0000004401100370000000000101043b000500000001001d00000000003004350000000101000039000600000001001d000000200010043f0000004002000039000300000002001d0000000001000019000400000003001d047703590000040f0000000002000411000100000002001d0000000000200435000000200010043f00000000010000190000000302000029047703590000040f000000000101041a000000010200008a000000000221004b0000034f0000613d000000060200002900000004040000290000000502000029000000000221004b000003490000813d000000400100043d00000044021000390000013c03000041000000000032043500000024021000390000001d0300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000064020000390477037a0000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000400310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d00000004010000390000000101100367000000000301043b000001370130009c000002620000213d0000000001000411000300000001001d00000000001004350000000101000039000400000001001d000000200010043f0000004002000039000500000002001d0000000001000019000600000003001d047703590000040f00000006020000290000000000200435000000200010043f00000000010000190000000502000029047703590000040f000000000101041a00000024020000390000000102200367000000000202043b0000000003120019000000000123004b000000000100001900000001010040390000000101100190000002fa0000c13d000000030100002900000006020000290477041c0000040f000000400100043d0000000402000029000000000021043500000020020000390000000003000019047703700000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000400310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002620000c13d00000001010003670000000402100370000000000302043b000001370230009c000002620000213d0000002401100370000000000101043b000500000001001d0000000001000411000200000001001d00000000001004350000000101000039000300000001001d000000200010043f0000004002000039000400000002001d0000000001000019000600000003001d047703590000040f00000006020000290000000000200435000000200010043f00000000010000190000000402000029047703590000040f0000000503000029000000000101041a000000000231004b0000033f0000813d000000400100043d0000006402100039000001380300004100000000003204350000004402100039000001390300004100000000003204350000002402100039000000250300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f0000000001000416000000000110004c000002620000c13d000000040100008a00000000011000310000013602000041000000400310008c000000000300001900000000030240190000013601100197000000000410004c000000000200a019000001360110009c00000000010300190000000001026019000000000110004c000002be0000613d000000000100001900000000020000190477037a0000040f000000000180004c0000000001000019000002690000613d000000a00100043d0000000302800210000000010300008a000000000223022f000000000232013f000000000221016f00000001018002100000027e0000013d000000000272004b0000027a0000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b0000000101000039000000010270021000000006040000290000000307000029000000000112019f000000000017041b0000000005050433000001230150009c000000710000213d000000000104041a000000010210019000000001021002700000007f0320018f000000000302c0190000001f0230008c00000000020000190000000102002039000000000121013f0000000101100190000000840000c13d000000200130008c000300000005001d000002a80000413d000000000040043500000020020000390000000001000019000200000003001d047703590000040f0000000305000029000000040600002900000006040000290000001f025000390000000502200270000000200350008c0000000003020019000000000300401900000002020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002a80000813d000000000001041b0000000101100039000002a30000013d0000001f0150008c000002cb0000a13d00000000004004350000002002000039000400000002001d0000000001000019047703590000040f000000040700002900000003060000290000000505000029000000200200008a000000000226016f0000000003000019000000000423004b0000000004570019000002d60000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000002b50000013d047703990000040f00000024020000390000000102200367000000000302043b00000000020100190000000001000411047703ab0000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019047703700000040f000000000150004c0000000001000019000002cf0000613d00000000010604330000000302500210000000010300008a000000000223022f000000000232013f000000000221016f0000000101500210000002e30000013d000000000262004b000002e00000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b000000010100003900000001026002100000000604000029000000000112019f000000000014041b0000000004000411000000000140004c000002f60000c13d000000400100043d00000044021000390000012903000041000000000032043500000024021000390000001f0300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000064020000390477037a0000040f0000000201000039000000000201041a000001240320009c000003010000413d0000013b0100004100000000001004350000001101000039000000040010043f000000240200003900000000010000190477037a0000040f0000012502200041000000000021041b0000000000400435000000200000043f00000040020000390000000001000019000600000004001d047703590000040f000000000201041a0000012502200041000000000021041b0000012501000041000000400200043d00000000001204350000011f0100004100000000030004140000011f0430009c00000000030180190000011f0420009c00000000010240190000004001100210000000c002300210000000000121019f00000126011001c70000800d0200003900000003030000390000012704000041000000000500001900000006060000290477046d0000040f0000000101200190000002620000613d000000200100003900000100001004430000012000000443000001000100003900000040020000390000012803000041047703700000040f00000000004004350000013a0400004100000020052000390000000003000019000000000613004b0000013d0000813d0000000006350019000000000704041a0000000000760435000000200330003900000001044000390000032c0000013d00000000003004350000013d020000410000000003000019000000a004300039000000000513004b0000004b0000813d000000000502041a000000000054043500000020033000390000000102200039000003370000013d0000000003310049000000020100002900000006020000290477041c0000040f000000400100043d0000000302000029000000000021043500000020020000390000000003000019047703700000040f00000005020000290000000003210049000000000104001900000001020000290477041c0000040f0000000601000029000000040100002900000002020000290000000503000029047703ab0000040f000000400100043d0000000602000029000000000021043500000020020000390000000003000019047703700000040f0000011f030000410000011f0410009c000000000103801900000040011002100000011f0420009c00000000020380190000006002200210000000000112019f00000000020004140000011f0420009c0000000002038019000000c002200210000000000112019f00000140011001c70000801002000039047704720000040f00000001022001900000036d0000613d000000000101043b000000000001042d000000000100001900000000020000190477037a0000040f0000011f040000410000011f0510009c0000000001048019000000400110021000000000013100190000011f0320009c000000000204801900000060022002100000000001210019000004780001042e0000011f030000410000011f0420009c00000000020380190000011f0410009c000000000103801900000040011002100000006002200210000000000112019f00000479000104300000002003000039000000000031043500000000030204330000002004100039000000000034043500000040011000390000000004000019000000000534004b000003920000813d000000000541001900000020044000390000000006240019000000000606043300000000006504350000038a0000013d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d00000004010000390000000101100367000000000101043b000001410210009c0000039f0000813d000000000001042d000000000100001900000000020000190477037a0000040f00000024010000390000000101100367000000000101043b000001410210009c000003a80000813d000000000001042d000000000100001900000000020000190477037a0000040f00050000000000020000013704100198000003e60000613d000500000003001d0000013701200198000400000001001d000003f70000613d0000000000400435000000200000043f00000040020000390000000001000019000300000004001d047703590000040f000000000201041a0000000501000029000200000002001d000000000112004b000004080000413d00000003010000290000000000100435000000200000043f0000004002000039000100000002001d0000000001000019047703590000040f000000050300002900000002020000290000000002320049000000000021041b0000000401000029000000000010043500000000010000190000000102000029047703590000040f000000000201041a00000005030000290000000002320019000000000021041b000000400100043d00000000003104350000011f0200004100000000030004140000011f0430009c00000000030280190000011f0410009c00000000010280190000004001100210000000c002300210000000000112019f00000126011001c70000800d0200003900000003030000390000012704000041000000030500002900000004060000290477046d0000040f0000000101200190000004190000613d000000000001042d000000400100043d0000006402100039000001460300004100000000003204350000004402100039000001470300004100000000003204350000002402100039000000250300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f000000400100043d0000006402100039000001440300004100000000003204350000004402100039000001450300004100000000003204350000002402100039000000230300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f000000400100043d0000006402100039000001420300004100000000003204350000004402100039000001430300004100000000003204350000002402100039000000260300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f000000000100001900000000020000190477037a0000040f00040000000000020000013704100198000004480000613d000300000003001d0000013701200198000400000001001d000004590000613d00000000004004350000000101000039000000200010043f0000004002000039000100000002001d0000000001000019000200000004001d047703590000040f00000004020000290000000000200435000000200010043f00000000010000190000000102000029047703590000040f0000000302000029000000000021041b000000400100043d00000000002104350000011f0200004100000000030004140000011f0430009c00000000030280190000011f0410009c00000000010280190000004001100210000000c002300210000000000112019f00000126011001c70000800d0200003900000003030000390000014804000041000000020500002900000004060000290477046d0000040f00000001012001900000046a0000613d000000000001042d000000400100043d00000064021000390000014b03000041000000000032043500000044021000390000014c0300004100000000003204350000002402100039000000240300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f000000400100043d00000064021000390000014903000041000000000032043500000044021000390000014a0300004100000000003204350000002402100039000000220300003900000000003204350000012a02000041000000000021043500000004021000390000002003000039000000000032043500000084020000390477037a0000040f000000000100001900000000020000190477037a0000040f00000470002104210000000102000039000000000001042d00000000020000190000046f0000013d00000475002104230000000102000039000000000001042d0000000002000019000004740000013d0000047700000432000004780001042e00000479000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff5768697370657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc05749535000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffad482d2337f32d1c00000000000000000000000000000000000000000000000052b7d2dcc80cd2e40000000200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000020000000000000000000000000000000000000000000000000000000045524332303a206d696e7420746f20746865207a65726f20616464726573730008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000395093510000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000006fdde038000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f778a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b4e487b710000000000000000000000000000000000000000000000000000000045524332303a20696e73756666696369656e7420616c6c6f77616e6365000000c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85bffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffffffffffffffffffffffffffffffffffff000000000000008002000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f20616464
[ 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.