Sepolia Testnet

Token

Wrapped ETH Test (WETH)
ERC-20

Overview

Max Total Supply

1,000,000,000 WETH

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,933.48597979797979799 WETH
0xc27abaff28978df844d95acde4f57c29f66878f8
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WrappedETH

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 2 : WETH.sol
// SPDX-License-Identifier: MIT
// Author: @cork
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contract WrappedETH is IERC20 {
    string public constant name = "Wrapped ETH Test";
    string public constant symbol = "WETH";
    uint8 public constant decimals = 18;

    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;

    constructor() {
        _totalSupply = 1000000000 * 10 ** decimals;
        _balances[msg.sender] = _totalSupply;
    }

    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) external view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender] - amount);
        return true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(_balances[sender] >= amount, "ERC20: transfer amount exceeds balance");

        _balances[sender] -= amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _approve(address owner, address spender, uint256 amount) internal {
        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);
    }
}

File 2 of 2 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract ABI

[{"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":[],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506012600a6200002291906200021e565b633b9aca006200003391906200026f565b6002819055506002546000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620002ba565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200011257808604811115620000ea57620000e962000084565b5b6001851615620000fa5780820291505b80810290506200010a85620000b3565b9450620000ca565b94509492505050565b6000826200012d576001905062000200565b816200013d576000905062000200565b8160018114620001565760028114620001615762000197565b600191505062000200565b60ff84111562000176576200017562000084565b5b8360020a91508482111562000190576200018f62000084565b5b5062000200565b5060208310610133831016604e8410600b8410161715620001d15782820a905083811115620001cb57620001ca62000084565b5b62000200565b620001e08484846001620000c0565b92509050818404811115620001fa57620001f962000084565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200022b8262000207565b9150620002388362000211565b9250620002677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200011b565b905092915050565b60006200027c8262000207565b9150620002898362000207565b9250828202620002998162000207565b91508282048414831517620002b357620002b262000084565b5b5092915050565b610eed80620002ca6000396000f3fe608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad91906108f4565b60405180910390f35b6100d060048036038101906100cb91906109af565b610239565b6040516100dd9190610a0a565b60405180910390f35b6100ee610250565b6040516100fb9190610a34565b60405180910390f35b61011e60048036038101906101199190610a4f565b61025a565b60405161012b9190610a0a565b60405180910390f35b61013c610304565b6040516101499190610abe565b60405180910390f35b61016c60048036038101906101679190610ad9565b610309565b6040516101799190610a34565b60405180910390f35b61018a610351565b60405161019791906108f4565b60405180910390f35b6101ba60048036038101906101b591906109af565b61038a565b6040516101c79190610a0a565b60405180910390f35b6101ea60048036038101906101e59190610b06565b6103a1565b6040516101f79190610a34565b60405180910390f35b6040518060400160405280601081526020017f577261707065642045544820546573740000000000000000000000000000000081525081565b6000610246338484610428565b6001905092915050565b6000600254905090565b60006102678484846105f1565b6102f9843384600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546102f49190610b75565b610428565b600190509392505050565b601281565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060400160405280600481526020017f574554480000000000000000000000000000000000000000000000000000000081525081565b60006103973384846105f1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048e90610c1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd90610cad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516105e49190610a34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065790610d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690610dd1565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790610e63565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461079e9190610b75565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107f39190610e83565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108579190610a34565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561089e578082015181840152602081019050610883565b60008484015250505050565b6000601f19601f8301169050919050565b60006108c682610864565b6108d0818561086f565b93506108e0818560208601610880565b6108e9816108aa565b840191505092915050565b6000602082019050818103600083015261090e81846108bb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006109468261091b565b9050919050565b6109568161093b565b811461096157600080fd5b50565b6000813590506109738161094d565b92915050565b6000819050919050565b61098c81610979565b811461099757600080fd5b50565b6000813590506109a981610983565b92915050565b600080604083850312156109c6576109c5610916565b5b60006109d485828601610964565b92505060206109e58582860161099a565b9150509250929050565b60008115159050919050565b610a04816109ef565b82525050565b6000602082019050610a1f60008301846109fb565b92915050565b610a2e81610979565b82525050565b6000602082019050610a496000830184610a25565b92915050565b600080600060608486031215610a6857610a67610916565b5b6000610a7686828701610964565b9350506020610a8786828701610964565b9250506040610a988682870161099a565b9150509250925092565b600060ff82169050919050565b610ab881610aa2565b82525050565b6000602082019050610ad36000830184610aaf565b92915050565b600060208284031215610aef57610aee610916565b5b6000610afd84828501610964565b91505092915050565b60008060408385031215610b1d57610b1c610916565b5b6000610b2b85828601610964565b9250506020610b3c85828601610964565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610b8082610979565b9150610b8b83610979565b9250828203905081811115610ba357610ba2610b46565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610c0560248361086f565b9150610c1082610ba9565b604082019050919050565b60006020820190508181036000830152610c3481610bf8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610c9760228361086f565b9150610ca282610c3b565b604082019050919050565b60006020820190508181036000830152610cc681610c8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000610d2960258361086f565b9150610d3482610ccd565b604082019050919050565b60006020820190508181036000830152610d5881610d1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000610dbb60238361086f565b9150610dc682610d5f565b604082019050919050565b60006020820190508181036000830152610dea81610dae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000610e4d60268361086f565b9150610e5882610df1565b604082019050919050565b60006020820190508181036000830152610e7c81610e40565b9050919050565b6000610e8e82610979565b9150610e9983610979565b9250828201905080821115610eb157610eb0610b46565b5b9291505056fea2646970667358221220b112d8f6b499fb24db8bc7abd7a93e1045078839707d0575d4c274d3df1e355164736f6c63430008180033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100935760003560e01c8063313ce56711610066578063313ce5671461013457806370a082311461015257806395d89b4114610182578063a9059cbb146101a0578063dd62ed3e146101d057610093565b806306fdde0314610098578063095ea7b3146100b657806318160ddd146100e657806323b872dd14610104575b600080fd5b6100a0610200565b6040516100ad91906108f4565b60405180910390f35b6100d060048036038101906100cb91906109af565b610239565b6040516100dd9190610a0a565b60405180910390f35b6100ee610250565b6040516100fb9190610a34565b60405180910390f35b61011e60048036038101906101199190610a4f565b61025a565b60405161012b9190610a0a565b60405180910390f35b61013c610304565b6040516101499190610abe565b60405180910390f35b61016c60048036038101906101679190610ad9565b610309565b6040516101799190610a34565b60405180910390f35b61018a610351565b60405161019791906108f4565b60405180910390f35b6101ba60048036038101906101b591906109af565b61038a565b6040516101c79190610a0a565b60405180910390f35b6101ea60048036038101906101e59190610b06565b6103a1565b6040516101f79190610a34565b60405180910390f35b6040518060400160405280601081526020017f577261707065642045544820546573740000000000000000000000000000000081525081565b6000610246338484610428565b6001905092915050565b6000600254905090565b60006102678484846105f1565b6102f9843384600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546102f49190610b75565b610428565b600190509392505050565b601281565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6040518060400160405280600481526020017f574554480000000000000000000000000000000000000000000000000000000081525081565b60006103973384846105f1565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048e90610c1b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fd90610cad565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516105e49190610a34565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610660576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065790610d3f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036106cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c690610dd1565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610750576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074790610e63565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461079e9190610b75565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546107f39190610e83565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516108579190610a34565b60405180910390a3505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561089e578082015181840152602081019050610883565b60008484015250505050565b6000601f19601f8301169050919050565b60006108c682610864565b6108d0818561086f565b93506108e0818560208601610880565b6108e9816108aa565b840191505092915050565b6000602082019050818103600083015261090e81846108bb565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006109468261091b565b9050919050565b6109568161093b565b811461096157600080fd5b50565b6000813590506109738161094d565b92915050565b6000819050919050565b61098c81610979565b811461099757600080fd5b50565b6000813590506109a981610983565b92915050565b600080604083850312156109c6576109c5610916565b5b60006109d485828601610964565b92505060206109e58582860161099a565b9150509250929050565b60008115159050919050565b610a04816109ef565b82525050565b6000602082019050610a1f60008301846109fb565b92915050565b610a2e81610979565b82525050565b6000602082019050610a496000830184610a25565b92915050565b600080600060608486031215610a6857610a67610916565b5b6000610a7686828701610964565b9350506020610a8786828701610964565b9250506040610a988682870161099a565b9150509250925092565b600060ff82169050919050565b610ab881610aa2565b82525050565b6000602082019050610ad36000830184610aaf565b92915050565b600060208284031215610aef57610aee610916565b5b6000610afd84828501610964565b91505092915050565b60008060408385031215610b1d57610b1c610916565b5b6000610b2b85828601610964565b9250506020610b3c85828601610964565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610b8082610979565b9150610b8b83610979565b9250828203905081811115610ba357610ba2610b46565b5b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000610c0560248361086f565b9150610c1082610ba9565b604082019050919050565b60006020820190508181036000830152610c3481610bf8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000610c9760228361086f565b9150610ca282610c3b565b604082019050919050565b60006020820190508181036000830152610cc681610c8a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000610d2960258361086f565b9150610d3482610ccd565b604082019050919050565b60006020820190508181036000830152610d5881610d1c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000610dbb60238361086f565b9150610dc682610d5f565b604082019050919050565b60006020820190508181036000830152610dea81610dae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000610e4d60268361086f565b9150610e5882610df1565b604082019050919050565b60006020820190508181036000830152610e7c81610e40565b9050919050565b6000610e8e82610979565b9150610e9983610979565b9250828201905080821115610eb157610eb0610b46565b5b9291505056fea2646970667358221220b112d8f6b499fb24db8bc7abd7a93e1045078839707d0575d4c274d3df1e355164736f6c63430008180033

[ 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.