ERC-20
Overview
Max Total Supply
100,000,000,000,142,601.09999999999279104 TST
Holders
5
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 Source Code Verified (Exact Match)
Contract Name:
ERC20Mock
Compiler Version
v0.8.26+commit.8a97fa7a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode z
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.8.22; import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract ERC20Mock is ERC20 { constructor(string memory name, string memory symbol) ERC20(name, symbol) { } function mint(address account, uint256 value) external { _mint(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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 `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` 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 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
{ "optimizer": { "enabled": true, "mode": "z", "fallback_to_optimizing_for_size": true }, "viaIR": true, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"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":"value","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":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[],"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":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
9c4d535b0000000000000000000000000000000000000000000000000000000000000000010000eb4217ba72deaac4f6820a3a95abdb8d96f397c875c0278c2e86e76639000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5465737420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035453540000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00060000000000020000008004000039000000400040043f0000006003100270000000c403300197000000010020019000000000020004160000000306000039000000380000c13d000000040030008c000001ff0000413d000000000401043b000000e004400270000000cf0040009c000000ed0000613d000000d00040009c000000850000613d000000d10040009c000001050000613d000000d20040009c000000b80000613d000000d30040009c000000e90000613d000000d40040009c000000db0000613d000000d50040009c000000780000613d000000d60040009c000000a30000613d000000d70040009c000000940000613d000000d80040009c000001ff0000c13d000000000002004b000001ff0000c13d000000000206041a000000010420019000000001012002700000007f0310018f00000000010360190000001f0010008c00000000050000390000000105002039000000000054004b000000b10000c13d000000800010043f000000000004004b0000019a0000c13d000001000100008a000000000112016f000000a00010043f000000000003004b000000200200003900000000020060390000003f012000390000013f0000013d000000000002004b000001ff0000c13d0000001f02300039000000c5022001970000008002200039000000400020043f0000001f0530018f000000c6063001980000008002600039000000470000613d000000000701034f000000007807043c0000000004840436000000000024004b000000430000c13d000000000005004b000000540000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c000001ff0000413d000000800100043d000000c70010009c000001ff0000213d00000080023000390000008001100039000600000002001d030a02410000040f0000000003010019000000a00100043d000000c70010009c000001ff0000213d00000080011000390000000602000029000600000003001d030a02410000040f00000006090000290000000008090433000000c70080009c000001680000213d00000000050100190000000304000039000000000104041a000000010210019000000001011002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000032004b0000010c0000613d000000cd01000041000000000010043f00000022010000390000016b0000013d000000240030008c000001ff0000413d000000000002004b000001ff0000c13d0000000401100370000000000101043b000000d90010009c000001ff0000213d000000000010043f000000200000043f00000040020000390000000001000019000001030000013d000000440030008c000001ff0000413d000000000002004b000001ff0000c13d0000000402100370000000000302043b000000d90030009c000001ff0000213d0000002401100370000000000101043b0000000002000411000000000002004b000001890000c13d000000e2010000410000018c0000013d000000440030008c000001ff0000413d000000000002004b000001ff0000c13d0000000402100370000000000202043b000000d90020009c000001ff0000213d0000002401100370000000000301043b0000000001000411030a028e0000040f0000000102000039000000400100043d000001fb0000013d000000000002004b000001ff0000c13d0000000403000039000000000203041a000000010520019000000001012002700000007f0410018f00000000010460190000001f0010008c00000000060000390000000106002039000000000662013f0000000100600190000001350000613d000000cd01000041000000000010043f0000002201000039000000040010043f00000024020000390000000001000019030a02ce0000040f000000640030008c000001ff0000413d000000000002004b000001ff0000c13d0000000402100370000000000302043b000000d90030009c000001ff0000213d0000002402100370000000000202043b000000d90020009c000001ff0000213d000400000002001d0000004401100370000000000101043b000600000001001d000000000030043f000100cb0000003d000003050000013d000500000003001d030a02e00000040f0000000002000411000000d902200197000300000002001d000100d20000003d000002ff0000013d000000000101041a000000010200008a000000000021004b000002010000c13d000000050100002900000004020000290000000603000029030a028e0000040f000001f90000013d000000440030008c000001ff0000413d000000000002004b000001ff0000c13d0000000402100370000000000302043b000000d90030009c000001ff0000213d0000002401100370000000000401043b000000000003004b000001a50000c13d000000dd010000410000018c0000013d000000000002004b000001ff0000c13d0000001201000039000001090000013d000000440030008c000001ff0000413d000000000002004b000001ff0000c13d0000000402100370000000000202043b000000d90020009c000001ff0000213d0000002401100370000000000101043b000000d90010009c000001ff0000213d000000000020043f000600000001001d000100fd0000003d000003050000013d030a02e00000040f0000000602000029000000000020043f000000200010043f00000000010000190000004002000039030a02e00000040f000001080000013d000000000002004b000001ff0000c13d0000000201000039000000000101041a000000800010043f0000008001000039000001fc0000013d000000200010008c0000011c0000413d000000000040043f0000001f028000390000000502200270000000c80220009a000000200080008c000000c9020040410000001f011000390000000501100270000000c80110009a000000000012004b0000011c0000813d000000000002041b0000000102200039000001170000013d0000001f0080008c000000010600008a0000014b0000a13d000000000040043f00000020020000390000000001000019000500000005001d000400000008001d030a02e00000040f000000200900003900000006060000290000000408000029000000200700008a0000000505000029000000000278016f0000000003000019000000000023004b0000000004690019000001570000813d0000000004040433000000000041041b0000002003300039000000200990003900000001011000390000012c0000013d000000800010043f000000000005004b0000018f0000c13d000001000100008a000000000112016f000000a00010043f000000000004004b000000c004000039000000a004006039000000610140008a000000200200008a000000000121016f000000da0010009c000001680000213d0000008001100039000600000001001d000000400010043f0000008002000039030a02790000040f000000060210006a0000000601000029000001fd0000013d000000000008004b0000000001000019000001500000613d000000200190003900000000010104330000000302800210000000000226022f000000000262013f000000000121016f0000000102800210000000000121019f000001640000013d000000000082004b000000010600008a000001610000813d0000000302800210000000f80220018f000000000226022f000000000262013f0000000003040433000000000223016f000000000021041b000000010180021000000001011001bf0000000304000039000000000014041b0000000008050433000000c70080009c0000016e0000a13d000000cd01000041000000000010043f0000004101000039000000040010043f000000ce010000410000030c000104300000000404000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f0000000100200190000000740000c13d000000200010008c000001c70000413d000000000040043f0000001f028000390000000502200270000000ca0220009a000000200080008c000000cb020040410000001f011000390000000501100270000000ca0110009a000000000012004b000001c70000813d000000000002041b0000000102200039000001840000013d000000000003004b000001e00000c13d000000e101000041000000000010043f000000040000043f0000016c0000013d000000000030043f000000cb020000410000000003000019000000a004300039000000000013004b0000013e0000813d000000000502041a000000000054043500000020033000390000000102200039000001920000013d000000000060043f000000c9030000410000000002000019000000000012004b000000360000813d000000000403041a000000a0052000390000000000450435000000200220003900000001033000390000019d0000013d0000000201000039000000000201041a000000000042001a0000023d0000413d0000000002420019000000000021041b000000000030043f000000200000043f00000040020000390000000001000019000600000003001d000500000004001d030a02e00000040f000000000201041a00000005030000290000000002320019000000000021041b000000800030043f0000000001000414000000c40010009c000000c401008041000000c001100210000000db011001c70000800d020000390000000303000039000000dc0400004100000000050000190000000606000029030a02f50000040f0000000100200190000001ff0000613d00000000010000190000000002000019000001fd0000013d00000020090000390000001f0080008c0000020e0000a13d000000000040043f00000000010000190000000002090019000500000005001d000600000008001d030a02e00000040f000000200900003900000006070000290000000506000029000000200200008a000000000227016f00000000030900190000000004000019000000000024004b0000000005630019000002190000813d0000000005050433000000000051041b000000200440003900000020033000390000000101100039000001d70000013d000000000020043f000500000001001d000101e40000003d000003050000013d000600000003001d030a02e00000040f0000000602000029000101e90000003d000002ff0000013d0000000502000029000000000021041b000000800020043f0000000001000414000000c40010009c000000c401008041000000c001100210000000db011001c70000800d020000390000000303000039000000e00400004100000000050004110000000606000029030a02f50000040f0000000100200190000001ff0000613d000000400100043d0000000102000039000000000021043500000020020000390000000003000019030a02d60000040f00000000010000190000030c00010430000000010200003900000005030000290000000604000029000000000541004b0000022c0000813d000000de02000041000000000020043f0000000002000411000000040020043f000000240010043f000000440040043f000000df010000410000030c00010430000000000008004b0000000001000019000002130000613d000000200150003900000000010104330000000302800210000000000226022f000000000262013f000000000221016f0000000101800210000002260000013d000000000072004b000002230000813d0000000302700210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003050433000000000223016f000000000021041b000000010100003900000001027002100000000404000039000000000112019f000000000014041b00000100009004430000012000000443000000cc010000410000030b0001042e000000000003004b000000920000613d0000000001000411000000000001004b0000018b0000613d000000000030043f000000200020043f00000040020000390000000001000019000200000005001d030a02e00000040f00000003020000290001023a0000003d000002ff0000013d0000000202000029000000000021041b000000d60000013d000000cd01000041000000000010043f00000011010000390000016b0000013d0000001f03100039000000000023004b0000000004000019000000e304004041000000e305200197000000e303300197000000000653013f000000000053004b0000000003000019000000e303002041000000e30060009c000000000304c019000000000003004b000002770000613d0000000043010434000000e40030009c000002710000813d0000001f01300039000000200500008a000000000151016f0000003f01100039000000000551016f000000400100043d0000000005510019000000000015004b00000000060000390000000106004039000000c70050009c000002710000213d0000000100600190000002710000c13d000000400050043f00000000053104360000000006340019000000000026004b000002770000213d0000000002000019000000000032004b0000026e0000813d00000000062500190000000007240019000000000707043300000000007604350000002002200039000002660000013d00000000023500190000000000020435000000000001042d000000cd01000041000000000010043f0000004101000039000000040010043f000000ce010000410000030c0001043000000000010000190000030c00010430000000200300003900000000043104360000000032020434000000000024043500000040011000390000000004000019000000000024004b000002870000813d000000000541001900000000064300190000000006060433000000000065043500000020044000390000027f0000013d000000000321001900000000000304350000001f02200039000000200300008a000000000232016f0000000001210019000000000001042d0003000000000002000000d904100198000002bc0000613d000300000003001d000200d90020019c000002be0000613d000000000040043f000000200000043f00000040020000390000000001000019000100000004001d030a02e00000040f000000000201041a000000030320006c000002c30000413d000000000031041b0000000201000029000000000010043f000000200000043f00000040020000390000000001000019030a02e00000040f000000000201041a00000003030000290000000002320019000000000021041b000000400100043d0000000000310435000000c40010009c000000c40100804100000040011002100000000002000414000000c40020009c000000c402008041000000c002200210000000000112019f000000e5011001c70000800d020000390000000303000039000000dc0400004100000001050000290000000206000029030a02f50000040f0000000100200190000002cc0000613d000000000001042d000000e701000041000002bf0000013d000000dd01000041000000000010043f000000040000043f000000ce010000410000030c00010430000000e601000041000000000010043f0000000101000029000000040010043f000000240020043f0000000301000029000000440010043f000000df010000410000030c0001043000000000010000190000030c00010430000000c40010009c000000c4010080410000004001100210000000c40020009c000000c4020080410000006002200210000000000112019f0000030c00010430000000c40010009c000000c4010080410000004001100210000000c40020009c000000c4020080410000006002200210000000000112019f000000e002300210000000000121019f0000030b0001042e000000c40010009c000000c4010080410000004001100210000000c40020009c000000c4020080410000006002200210000000000112019f0000000002000414000000c40020009c000000c402008041000000c002200210000000000112019f000000e8011001c70000801002000039030a02fa0000040f0000000100200190000002f30000613d000000000101043b000000000001042d00000000010000190000030c00010430000002f8002104210000000102000039000000000001042d0000000002000019000000000001042d000002fd002104230000000102000039000000000001042d0000000002000019000000000001042d000000000020043f000000200010043f00000000010000190000004002000039030a02e00000040f000000010000013b0000000101000039000000200010043f00000040020000390000000001000019000000010000013b0000030a000004320000030b0001042e0000030c0001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff3da8a5f161a6c3ff06a60736d0ed24d7963cc6a5c4fafd2fa1dae9bb908e07a5c2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b75ca53043ea007e5c65182cbb028f60d7179ff4b55739a3949b401801c942e658a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b00000002000000000000000000000000000000400000010000000000000000004e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce5670000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a9059cbb0000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffff7f0200000000000000000000000000000000000020000000800000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efec442f0500000000000000000000000000000000000000000000000000000000fb8f41b20000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92594280d6200000000000000000000000000000000000000000000000000000000e602df0500000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000200000000000000000000000000000000000020000000000000000000000000e450d38c0000000000000000000000000000000000000000000000000000000096c6fd1e0000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000af565151a508c5b8443890baf71ef6779f1294930e0acff754983bc64e49e46c
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a5465737420546f6b656e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035453540000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Test Token
Arg [1] : symbol (string): TST
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 5465737420546f6b656e00000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5453540000000000000000000000000000000000000000000000000000000000
[ 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.