ERC-20
Source Code
Overview
Max Total Supply
8,888,888,888 RWASS
Holders
492
Transfers
-
0
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xF82D1a61...598cc3c17 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MEMERC20
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/**
*Submitted for verification at basescan.org on 2024-04-17
*/
/// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.23;
/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract ERC20 {
/*//////////////////////////////////////////////////////////////
EVENTS
//////////////////////////////////////////////////////////////*/
event Transfer(address indexed from, address indexed to, uint256 amount);
event Approval(address indexed owner, address indexed spender, uint256 amount);
/*//////////////////////////////////////////////////////////////
METADATA STORAGE
//////////////////////////////////////////////////////////////*/
string public name;
string public symbol;
uint8 public immutable decimals;
/*//////////////////////////////////////////////////////////////
ERC20 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 public totalSupply;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256)) public allowance;
/*//////////////////////////////////////////////////////////////
EIP-2612 STORAGE
//////////////////////////////////////////////////////////////*/
uint256 internal immutable INITIAL_CHAIN_ID;
bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;
mapping(address => uint256) public nonces;
/*//////////////////////////////////////////////////////////////
CONSTRUCTOR
//////////////////////////////////////////////////////////////*/
constructor(
string memory _name,
string memory _symbol,
uint8 _decimals
) {
name = _name;
symbol = _symbol;
decimals = _decimals;
INITIAL_CHAIN_ID = block.chainid;
INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
}
/*//////////////////////////////////////////////////////////////
ERC20 LOGIC
//////////////////////////////////////////////////////////////*/
function approve(address spender, uint256 amount) public virtual returns (bool) {
allowance[msg.sender][spender] = amount;
emit Approval(msg.sender, spender, amount);
return true;
}
function transfer(address to, uint256 amount) public virtual returns (bool) {
balanceOf[msg.sender] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(msg.sender, to, amount);
return true;
}
function transferFrom(
address from,
address to,
uint256 amount
) public virtual returns (bool) {
uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.
if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount;
balanceOf[from] -= amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(from, to, amount);
return true;
}
/*//////////////////////////////////////////////////////////////
EIP-2612 LOGIC
//////////////////////////////////////////////////////////////*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");
// Unchecked because the only math done is incrementing
// the owner's nonce which cannot realistically overflow.
unchecked {
address recoveredAddress = ecrecover(
keccak256(
abi.encodePacked(
"\x19\x01",
DOMAIN_SEPARATOR(),
keccak256(
abi.encode(
keccak256(
"Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
),
owner,
spender,
value,
nonces[owner]++,
deadline
)
)
)
),
v,
r,
s
);
require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER");
allowance[recoveredAddress][spender] = value;
}
emit Approval(owner, spender, value);
}
function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator();
}
function computeDomainSeparator() internal view virtual returns (bytes32) {
return
keccak256(
abi.encode(
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"),
keccak256(bytes(name)),
keccak256("1"),
block.chainid,
address(this)
)
);
}
/*//////////////////////////////////////////////////////////////
INTERNAL MINT/BURN LOGIC
//////////////////////////////////////////////////////////////*/
function _mint(address to, uint256 amount) internal virtual {
totalSupply += amount;
// Cannot overflow because the sum of all user
// balances can't exceed the max uint256 value.
unchecked {
balanceOf[to] += amount;
}
emit Transfer(address(0), to, amount);
}
function _burn(address from, uint256 amount) internal virtual {
balanceOf[from] -= amount;
// Cannot underflow because a user's balance
// will never be larger than the total supply.
unchecked {
totalSupply -= amount;
}
emit Transfer(from, address(0), amount);
}
}
library MEMERC20Constant {
/// @dev Total supply of the Meme token
uint256 internal constant TOKEN_TOTAL_SUPPLY = 8_888_888_888 ether;
/// @dev Token decimals
uint8 internal constant TOKEN_DECIMALS = 18;
}
contract MEMERC20 is ERC20 {
address public creator;
constructor(string memory _name, string memory _symbol, address _creator)
ERC20(_name, _symbol, MEMERC20Constant.TOKEN_DECIMALS)
{
_mint(msg.sender, MEMERC20Constant.TOKEN_TOTAL_SUPPLY);
creator = _creator;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_creator","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":"amount","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","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":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"permit","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"}]Contract Creation Code
0x60e06040523480156200001157600080fd5b506040516200102138038062001021833981016040819052620000349162000285565b828260126000620000468482620003a3565b506001620000558382620003a3565b5060ff81166080524660a0526200006b620000b4565b60c052506200008b91503390506b1cb8b7702ae75fb695e0000062000150565b600680546001600160a01b0319166001600160a01b039290921691909117905550620005159050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f6000604051620000e891906200046f565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8060026000828254620001649190620004ed565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e557600080fd5b81516001600160401b0380821115620002025762000202620001bd565b604051601f8301601f19908116603f011681019082821181831017156200022d576200022d620001bd565b81604052838152602092508660208588010111156200024b57600080fd5b600091505b838210156200026f578582018301518183018401529082019062000250565b6000602085830101528094505050505092915050565b6000806000606084860312156200029b57600080fd5b83516001600160401b0380821115620002b357600080fd5b620002c187838801620001d3565b94506020860151915080821115620002d857600080fd5b50620002e786828701620001d3565b604086015190935090506001600160a01b03811681146200030757600080fd5b809150509250925092565b600181811c908216806200032757607f821691505b6020821081036200034857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200039e576000816000526020600020601f850160051c81016020861015620003795750805b601f850160051c820191505b818110156200039a5782815560010162000385565b5050505b505050565b81516001600160401b03811115620003bf57620003bf620001bd565b620003d781620003d0845462000312565b846200034e565b602080601f8311600181146200040f5760008415620003f65750858301515b600019600386901b1c1916600185901b1785556200039a565b600085815260208120601f198616915b8281101562000440578886015182559484019460019091019084016200041f565b50858210156200045f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008083546200047f8162000312565b600182811680156200049a5760018114620004b057620004e1565b60ff1984168752821515830287019450620004e1565b8760005260208060002060005b85811015620004d85781548a820152908401908201620004bd565b50505082870194505b50929695505050505050565b808201808211156200050f57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05160c051610adc620005456000396000610478015260006104430152600061017b0152610adc6000f3fe608060405234801561001057600080fd5b50600436106100df5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b41146101f7578063a9059cbb146101ff578063d505accf14610212578063dd62ed3e1461022757600080fd5b80633644e515146101af57806370a08231146101b75780637ecebe00146101d757600080fd5b806318160ddd116100bd57806318160ddd1461014c57806323b872dd14610163578063313ce5671461017657600080fd5b806302d05d3f146100e457806306fdde0314610114578063095ea7b314610129575b600080fd5b6006546100f7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61011c610252565b60405161010b9190610811565b61013c61013736600461087c565b6102e0565b604051901515815260200161010b565b61015560025481565b60405190815260200161010b565b61013c6101713660046108a6565b61034d565b61019d7f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161010b565b61015561043f565b6101556101c53660046108e2565b60036020526000908152604090205481565b6101556101e53660046108e2565b60056020526000908152604090205481565b61011c61049a565b61013c61020d36600461087c565b6104a7565b610225610220366004610904565b61051f565b005b610155610235366004610977565b600460209081526000928352604080842090915290825290205481565b6000805461025f906109aa565b80601f016020809104026020016040519081016040528092919081815260200182805461028b906109aa565b80156102d85780601f106102ad576101008083540402835291602001916102d8565b820191906000526020600020905b8154815290600101906020018083116102bb57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061033b9086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103a95761038483826109e4565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103d19084906109e4565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061042c9087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461047557610470610777565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b6001805461025f906109aa565b336000908152600360205260408120805483919083906104c89084906109e4565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061033b9086815260200190565b428410156105745760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161058061043f565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561068c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906106c25750876001600160a01b0316816001600160a01b0316145b61070e5760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f5349474e4552000000000000000000000000000000000000604482015260640161056b565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107a99190610a05565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60006020808352835180602085015260005b8181101561083f57858101830151858201604001528201610823565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461087757600080fd5b919050565b6000806040838503121561088f57600080fd5b61089883610860565b946020939093013593505050565b6000806000606084860312156108bb57600080fd5b6108c484610860565b92506108d260208501610860565b9150604084013590509250925092565b6000602082840312156108f457600080fd5b6108fd82610860565b9392505050565b600080600080600080600060e0888a03121561091f57600080fd5b61092888610860565b965061093660208901610860565b95506040880135945060608801359350608088013560ff8116811461095a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561098a57600080fd5b61099383610860565b91506109a160208401610860565b90509250929050565b600181811c908216806109be57607f821691505b6020821081036109de57634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561034757634e487b7160e01b600052601160045260246000fd5b60008083548160018260011c91506001831680610a2357607f831692505b60208084108203610a4257634e487b7160e01b86526022600452602486fd5b818015610a565760018114610a6b57610a98565b60ff1986168952841515850289019650610a98565b60008a81526020902060005b86811015610a905781548b820152908501908301610a77565b505084890196505b50949897505050505050505056fea264697066735822122001bf66f9314eab294827c20f10cbc09f33137d5b802c4e2a5d750bc28a7e81b964736f6c63430008170033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000093e490792a25f9a454893209967d2ae1a0be31a600000000000000000000000000000000000000000000000000000000000000105265616c20576f726c642041737365730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055257415353000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100df5760003560e01c80633644e5151161008c57806395d89b411161006657806395d89b41146101f7578063a9059cbb146101ff578063d505accf14610212578063dd62ed3e1461022757600080fd5b80633644e515146101af57806370a08231146101b75780637ecebe00146101d757600080fd5b806318160ddd116100bd57806318160ddd1461014c57806323b872dd14610163578063313ce5671461017657600080fd5b806302d05d3f146100e457806306fdde0314610114578063095ea7b314610129575b600080fd5b6006546100f7906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b61011c610252565b60405161010b9190610811565b61013c61013736600461087c565b6102e0565b604051901515815260200161010b565b61015560025481565b60405190815260200161010b565b61013c6101713660046108a6565b61034d565b61019d7f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161010b565b61015561043f565b6101556101c53660046108e2565b60036020526000908152604090205481565b6101556101e53660046108e2565b60056020526000908152604090205481565b61011c61049a565b61013c61020d36600461087c565b6104a7565b610225610220366004610904565b61051f565b005b610155610235366004610977565b600460209081526000928352604080842090915290825290205481565b6000805461025f906109aa565b80601f016020809104026020016040519081016040528092919081815260200182805461028b906109aa565b80156102d85780601f106102ad576101008083540402835291602001916102d8565b820191906000526020600020905b8154815290600101906020018083116102bb57829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061033b9086815260200190565b60405180910390a35060015b92915050565b6001600160a01b038316600090815260046020908152604080832033845290915281205460001981146103a95761038483826109e4565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b038516600090815260036020526040812080548592906103d19084906109e4565b90915550506001600160a01b03808516600081815260036020526040908190208054870190555190918716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061042c9087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000002105461461047557610470610777565b905090565b507ffeb17d1636a6e1e7dab49b4c5445226ada7f0d45df04cbd15616da557b61b33890565b6001805461025f906109aa565b336000908152600360205260408120805483919083906104c89084906109e4565b90915550506001600160a01b038316600081815260036020526040908190208054850190555133907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061033b9086815260200190565b428410156105745760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064015b60405180910390fd5b6000600161058061043f565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa15801561068c573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906106c25750876001600160a01b0316816001600160a01b0316145b61070e5760405162461bcd60e51b815260206004820152600e60248201527f494e56414c49445f5349474e4552000000000000000000000000000000000000604482015260640161056b565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516107a99190610a05565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b60006020808352835180602085015260005b8181101561083f57858101830151858201604001528201610823565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461087757600080fd5b919050565b6000806040838503121561088f57600080fd5b61089883610860565b946020939093013593505050565b6000806000606084860312156108bb57600080fd5b6108c484610860565b92506108d260208501610860565b9150604084013590509250925092565b6000602082840312156108f457600080fd5b6108fd82610860565b9392505050565b600080600080600080600060e0888a03121561091f57600080fd5b61092888610860565b965061093660208901610860565b95506040880135945060608801359350608088013560ff8116811461095a57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b6000806040838503121561098a57600080fd5b61099383610860565b91506109a160208401610860565b90509250929050565b600181811c908216806109be57607f821691505b6020821081036109de57634e487b7160e01b600052602260045260246000fd5b50919050565b8181038181111561034757634e487b7160e01b600052601160045260246000fd5b60008083548160018260011c91506001831680610a2357607f831692505b60208084108203610a4257634e487b7160e01b86526022600452602486fd5b818015610a565760018114610a6b57610a98565b60ff1986168952841515850289019650610a98565b60008a81526020902060005b86811015610a905781548b820152908501908301610a77565b505084890196505b50949897505050505050505056fea264697066735822122001bf66f9314eab294827c20f10cbc09f33137d5b802c4e2a5d750bc28a7e81b964736f6c63430008170033
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.
Add Token to MetaMask (Web3)