ERC-20
DeFi
Overview
Max Total Supply
66,551,080.327442716049382717 ZERO
Holders
988 (0.00%)
Market
Price
$0.12 @ 0.000048 ETH
Onchain Market Cap
$7,980,206.59
Circulating Supply Market Cap
$933,312.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
26.181778977913515531 ZEROValue
$3.14 ( ~0.00125935158863069 Eth) [0.0000%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Zero
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.19; import "openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Burnable.sol"; /// @title Zero /// @author @ZackZeroLiquid contract Zero is ERC20Burnable { // keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)") bytes32 private constant EIP712DOMAIN_HASH = 0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f; // bytes32 private constant NAME_HASH = keccak256("ZeroLiquid") bytes32 private constant NAME_HASH = 0x9fc5531c8f04e54c6c2994c78c65c4819d190f30bfbe7a71a777e7424e10aeb4; // bytes32 private constant VERSION_HASH = keccak256("1") bytes32 private constant VERSION_HASH = 0xc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6; // keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9; // keccak256("TransferWithAuthorization(address from,address to,uint256 value,uint256 validAfter,uint256 // validBefore,bytes32 nonce)"); bytes32 public constant TRANSFER_WITH_AUTHORIZATION_TYPEHASH = 0x7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a2267; // ERC-2612 state mapping(address => uint256) public nonces; // ERC-3009 state mapping(address => mapping(bytes32 => bool)) public authorizationState; // ERC-3009 event event AuthorizationUsed(address indexed authorizer, bytes32 indexed nonce); constructor(address[] memory addresses, uint256[] memory amounts) ERC20("ZeroLiquid", "ZERO") { _mintZeroTokens(addresses, amounts); } function _mintZeroTokens(address[] memory addresses, uint256[] memory amounts) internal { for (uint256 i = 0; i < addresses.length; i++) { _mint(addresses[i], amounts[i]); } } function _validateSignedData(address signer, bytes32 encodeData, uint8 v, bytes32 r, bytes32 s) internal view { bytes32 digest = keccak256(abi.encodePacked("\x19\x01", getDomainSeparator(), encodeData)); address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0) && recoveredAddress == signer, "ZERO:: INVALID_SIGNATURE"); } function getDomainSeparator() public view returns (bytes32) { return keccak256(abi.encode(EIP712DOMAIN_HASH, NAME_HASH, VERSION_HASH, getChainId(), address(this))); } function getChainId() public view returns (uint256 chainId) { assembly { chainId := chainid() } } function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external { require(deadline >= block.timestamp, "ZERO:: AUTH_EXPIRED"); bytes32 encodeData = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner], deadline)); nonces[owner] = nonces[owner] + 1; _validateSignedData(owner, encodeData, v, r, s); _approve(owner, spender, value); } function transferWithAuthorization( address from, address to, uint256 value, uint256 validAfter, uint256 validBefore, bytes32 nonce, uint8 v, bytes32 r, bytes32 s ) external { require(block.timestamp > validAfter, "ZERO:: AUTH_NOT_YET_VALID"); require(block.timestamp < validBefore, "ZERO:: AUTH_EXPIRED"); require(!authorizationState[from][nonce], "ZERO:: AUTH_ALREADY_USED"); bytes32 encodeData = keccak256(abi.encode(TRANSFER_WITH_AUTHORIZATION_TYPEHASH, from, to, value, validAfter, validBefore, nonce)); _validateSignedData(from, encodeData, v, r, s); authorizationState[from][nonce] = true; emit AuthorizationUsed(from, nonce); _transfer(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ 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}. * * 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 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 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "remappings": [ "@prb/test/=lib/prb-test/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "prb-math/=lib/prb-math/src/", "prb-test/=lib/prb-test/src/", "src/=src/" ], "optimizer": { "enabled": true, "runs": 10000 }, "metadata": { "bytecodeHash": "none", "appendCBOR": false }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"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":"authorizer","type":"address"},{"indexed":true,"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"AuthorizationUsed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_WITH_AUTHORIZATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"authorizationState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"chainId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeparator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","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":[{"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"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"validAfter","type":"uint256"},{"internalType":"uint256","name":"validBefore","type":"uint256"},{"internalType":"bytes32","name":"nonce","type":"bytes32"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"transferWithAuthorization","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001a7038038062001a708339810160408190526200003491620002ca565b6040518060400160405280600a81526020016916995c9bd31a5c5d5a5960b21b815250604051806040016040528060048152602001635a45524f60e01b815250816003908162000085919062000436565b50600462000094828262000436565b505050620000a98282620000b160201b60201c565b505062000566565b60005b82518110156200011d5762000108838281518110620000d757620000d762000502565b6020026020010151838381518110620000f457620000f462000502565b60200260200101516200012260201b60201c565b8062000114816200052e565b915050620000b4565b505050565b6001600160a01b0382166200017d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b80600260008282546200019191906200054a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620002295762000229620001e8565b604052919050565b60006001600160401b038211156200024d576200024d620001e8565b5060051b60200190565b600082601f8301126200026957600080fd5b81516020620002826200027c8362000231565b620001fe565b82815260059290921b84018101918181019086841115620002a257600080fd5b8286015b84811015620002bf5780518352918301918301620002a6565b509695505050505050565b60008060408385031215620002de57600080fd5b82516001600160401b0380821115620002f657600080fd5b818501915085601f8301126200030b57600080fd5b815160206200031e6200027c8362000231565b82815260059290921b840181019181810190898411156200033e57600080fd5b948201945b83861015620003755785516001600160a01b0381168114620003655760008081fd5b8252948201949082019062000343565b918801519196509093505050808211156200038f57600080fd5b506200039e8582860162000257565b9150509250929050565b600181811c90821680620003bd57607f821691505b602082108103620003de57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200011d57600081815260208120601f850160051c810160208610156200040d5750805b601f850160051c820191505b818110156200042e5782815560010162000419565b505050505050565b81516001600160401b03811115620004525762000452620001e8565b6200046a81620004638454620003a8565b84620003e4565b602080601f831160018114620004a25760008415620004895750858301515b600019600386901b1c1916600185901b1785556200042e565b600085815260208120601f198616915b82811015620004d357888601518255948401946001909101908401620004b2565b5085821015620004f25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006001820162000543576200054362000518565b5060010190565b8082018082111562000560576200056062000518565b92915050565b6114fa80620005766000396000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063e3ee160e11610066578063e3ee160e1461035d578063e94a010214610370578063ed24911d1461039e57600080fd5b8063a9059cbb146102f1578063d505accf14610304578063dd62ed3e1461031757600080fd5b806395d89b41116100bd57806395d89b41146102af578063a0cc6a68146102b7578063a457c2d7146102de57600080fd5b806379cc67901461027c5780637ecebe001461028f57600080fd5b8063313ce5671161012f5780633950935111610114578063395093511461021e57806342966c681461023157806370a082311461024657600080fd5b8063313ce567146102095780633408e4701461021857600080fd5b806318160ddd1161016057806318160ddd146101bd57806323b872dd146101cf57806330adf81f146101e257600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610447565b604051610191919061120b565b60405180910390f35b6101ad6101a83660046112a0565b6104d9565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101ad6101dd3660046112ca565b6104f3565b6101c17f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60405160128152602001610191565b466101c1565b6101ad61022c3660046112a0565b610517565b61024461023f366004611306565b610563565b005b6101c161025436600461131f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61024461028a3660046112a0565b610570565b6101c161029d36600461131f565b60056020526000908152604090205481565b610184610589565b6101c17f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b6101ad6102ec3660046112a0565b610598565b6101ad6102ff3660046112a0565b610654565b610244610312366004611352565b610662565b6101c16103253660046113bc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61024461036b3660046113ef565b61079c565b6101ad61037e3660046112a0565b600660209081526000928352604080842090915290825290205460ff1681565b6101c160007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9fc5531c8f04e54c6c2994c78c65c4819d190f30bfbe7a71a777e7424e10aeb47fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646604080516020810195909552840192909252606083015260808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6060600380546104569061146d565b80601f01602080910402602001604051908101604052809291908181526020018280546104829061146d565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000336104e78185856109e6565b60019150505b92915050565b600033610501858285610b66565b61050c858585610c23565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906104e7908290869061055e9087906114c0565b6109e6565b61056d3382610e44565b50565b61057b823383610b66565b6105858282610e44565b5050565b6060600480546104569061146d565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61050c82868684036109e6565b6000336104e7818585610c23565b428410156106b25760405162461bcd60e51b815260206004820152601360248201527f5a45524f3a3a20415554485f4558504952454400000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff87811660008181526005602081815260408084205481517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981850152808301879052968d166060880152608087018c905260a0870181905260c08088018c90528251808903909101815260e0909701909152855195820195909520939092529052906107549060016114c0565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600560205260409020556107878882868686610fcc565b6107928888886109e6565b5050505050505050565b8542116107eb5760405162461bcd60e51b815260206004820152601960248201527f5a45524f3a3a20415554485f4e4f545f5945545f56414c494400000000000000604482015260640161063e565b84421061083a5760405162461bcd60e51b815260206004820152601360248201527f5a45524f3a3a20415554485f4558504952454400000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260066020908152604080832087845290915290205460ff16156108bb5760405162461bcd60e51b815260206004820152601860248201527f5a45524f3a3a20415554485f414c52454144595f555345440000000000000000604482015260640161063e565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208083019190915273ffffffffffffffffffffffffffffffffffffffff8c8116838501528b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252805191012061094e8a82868686610fcc565b73ffffffffffffffffffffffffffffffffffffffff8a16600081815260066020908152604080832089845290915280822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055518792917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a36109da8a8a8a610c23565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a6e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610af75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c1d5781811015610c105760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161063e565b610c1d84848484036109e6565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610d355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610dd15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c1d565b73ffffffffffffffffffffffffffffffffffffffff8216610ecd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f695760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b59565b600061107760007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9fc5531c8f04e54c6c2994c78c65c4819d190f30bfbe7a71a777e7424e10aeb47fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646604080516020810195909552840192909252606083015260808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101869052606201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa15801561113b573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116158015906111b657508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6112025760405162461bcd60e51b815260206004820152601860248201527f5a45524f3a3a20494e56414c49445f5349474e41545552450000000000000000604482015260640161063e565b50505050505050565b600060208083528351808285015260005b818110156112385785810183015185820160400152820161121c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461129b57600080fd5b919050565b600080604083850312156112b357600080fd5b6112bc83611277565b946020939093013593505050565b6000806000606084860312156112df57600080fd5b6112e884611277565b92506112f660208501611277565b9150604084013590509250925092565b60006020828403121561131857600080fd5b5035919050565b60006020828403121561133157600080fd5b61133a82611277565b9392505050565b803560ff8116811461129b57600080fd5b600080600080600080600060e0888a03121561136d57600080fd5b61137688611277565b965061138460208901611277565b955060408801359450606088013593506113a060808901611341565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156113cf57600080fd5b6113d883611277565b91506113e660208401611277565b90509250929050565b60008060008060008060008060006101208a8c03121561140e57600080fd5b6114178a611277565b985061142560208b01611277565b975060408a0135965060608a0135955060808a0135945060a08a0135935061144f60c08b01611341565b925060e08a013591506101008a013590509295985092959850929598565b600181811c9082168061148157607f821691505b6020821081036114ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b808201808211156104ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000060000000000000000000000008df0eb73f815c500c49058d96f71e76aadf548f50000000000000000000000006ff9474923510c0d41d246b9f39259cbf4e5eba30000000000000000000000002ae5e92d24edcb56e780f90c7bf69f014eb0b1aa0000000000000000000000005b4ec57143b57aa4716da35b79f40ca65e980b8b000000000000000000000000a78605f5390a206e09c2b91b04e6d4fbaba0a985000000000000000000000000e172ae4e0861b9591a37600cfb9a67dd2faaf835000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000004f68ca6d8cd91c600000000000000000000000000000000000000000000000000be951906eba2aa80000000000000000000000000000000000000000000000018122a293518363380000000000000000000000000000000000000000000000022bdd88fed9efc6a0000000000000000000000000000000000000000000000000fb768105935a2f3000000000000000000000000000000000000000000000000027b46536c66c8e3000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101775760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063e3ee160e11610066578063e3ee160e1461035d578063e94a010214610370578063ed24911d1461039e57600080fd5b8063a9059cbb146102f1578063d505accf14610304578063dd62ed3e1461031757600080fd5b806395d89b41116100bd57806395d89b41146102af578063a0cc6a68146102b7578063a457c2d7146102de57600080fd5b806379cc67901461027c5780637ecebe001461028f57600080fd5b8063313ce5671161012f5780633950935111610114578063395093511461021e57806342966c681461023157806370a082311461024657600080fd5b8063313ce567146102095780633408e4701461021857600080fd5b806318160ddd1161016057806318160ddd146101bd57806323b872dd146101cf57806330adf81f146101e257600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b610184610447565b604051610191919061120b565b60405180910390f35b6101ad6101a83660046112a0565b6104d9565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101ad6101dd3660046112ca565b6104f3565b6101c17f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b60405160128152602001610191565b466101c1565b6101ad61022c3660046112a0565b610517565b61024461023f366004611306565b610563565b005b6101c161025436600461131f565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61024461028a3660046112a0565b610570565b6101c161029d36600461131f565b60056020526000908152604090205481565b610184610589565b6101c17f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226781565b6101ad6102ec3660046112a0565b610598565b6101ad6102ff3660046112a0565b610654565b610244610312366004611352565b610662565b6101c16103253660046113bc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61024461036b3660046113ef565b61079c565b6101ad61037e3660046112a0565b600660209081526000928352604080842090915290825290205460ff1681565b6101c160007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9fc5531c8f04e54c6c2994c78c65c4819d190f30bfbe7a71a777e7424e10aeb47fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646604080516020810195909552840192909252606083015260808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6060600380546104569061146d565b80601f01602080910402602001604051908101604052809291908181526020018280546104829061146d565b80156104cf5780601f106104a4576101008083540402835291602001916104cf565b820191906000526020600020905b8154815290600101906020018083116104b257829003601f168201915b5050505050905090565b6000336104e78185856109e6565b60019150505b92915050565b600033610501858285610b66565b61050c858585610c23565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906104e7908290869061055e9087906114c0565b6109e6565b61056d3382610e44565b50565b61057b823383610b66565b6105858282610e44565b5050565b6060600480546104569061146d565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156106475760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61050c82868684036109e6565b6000336104e7818585610c23565b428410156106b25760405162461bcd60e51b815260206004820152601360248201527f5a45524f3a3a20415554485f4558504952454400000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff87811660008181526005602081815260408084205481517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981850152808301879052968d166060880152608087018c905260a0870181905260c08088018c90528251808903909101815260e0909701909152855195820195909520939092529052906107549060016114c0565b73ffffffffffffffffffffffffffffffffffffffff89166000908152600560205260409020556107878882868686610fcc565b6107928888886109e6565b5050505050505050565b8542116107eb5760405162461bcd60e51b815260206004820152601960248201527f5a45524f3a3a20415554485f4e4f545f5945545f56414c494400000000000000604482015260640161063e565b84421061083a5760405162461bcd60e51b815260206004820152601360248201527f5a45524f3a3a20415554485f4558504952454400000000000000000000000000604482015260640161063e565b73ffffffffffffffffffffffffffffffffffffffff8916600090815260066020908152604080832087845290915290205460ff16156108bb5760405162461bcd60e51b815260206004820152601860248201527f5a45524f3a3a20415554485f414c52454144595f555345440000000000000000604482015260640161063e565b604080517f7c7c6cdb67a18743f49ec6fa9b35f50d52ed05cbed4cc592e13b44501c1a226760208083019190915273ffffffffffffffffffffffffffffffffffffffff8c8116838501528b166060830152608082018a905260a0820189905260c0820188905260e080830188905283518084039091018152610100909201909252805191012061094e8a82868686610fcc565b73ffffffffffffffffffffffffffffffffffffffff8a16600081815260066020908152604080832089845290915280822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055518792917f98de503528ee59b575ef0c0a2576a82497bfc029a5685b209e9ec333479b10a591a36109da8a8a8a610c23565b50505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316610a6e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610af75760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c1d5781811015610c105760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161063e565b610c1d84848484036109e6565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610cac5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff8216610d355760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610dd15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c1d565b73ffffffffffffffffffffffffffffffffffffffff8216610ecd5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015610f695760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161063e565b73ffffffffffffffffffffffffffffffffffffffff83166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610b59565b600061107760007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f9fc5531c8f04e54c6c2994c78c65c4819d190f30bfbe7a71a777e7424e10aeb47fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc646604080516020810195909552840192909252606083015260808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101869052606201604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181528282528051602091820120600080855291840180845281905260ff88169284019290925260608301869052608083018590529092509060019060a0016020604051602081039080840390855afa15801561113b573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0015191505073ffffffffffffffffffffffffffffffffffffffff8116158015906111b657508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b6112025760405162461bcd60e51b815260206004820152601860248201527f5a45524f3a3a20494e56414c49445f5349474e41545552450000000000000000604482015260640161063e565b50505050505050565b600060208083528351808285015260005b818110156112385785810183015185820160400152820161121c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461129b57600080fd5b919050565b600080604083850312156112b357600080fd5b6112bc83611277565b946020939093013593505050565b6000806000606084860312156112df57600080fd5b6112e884611277565b92506112f660208501611277565b9150604084013590509250925092565b60006020828403121561131857600080fd5b5035919050565b60006020828403121561133157600080fd5b61133a82611277565b9392505050565b803560ff8116811461129b57600080fd5b600080600080600080600060e0888a03121561136d57600080fd5b61137688611277565b965061138460208901611277565b955060408801359450606088013593506113a060808901611341565b925060a0880135915060c0880135905092959891949750929550565b600080604083850312156113cf57600080fd5b6113d883611277565b91506113e660208401611277565b90509250929050565b60008060008060008060008060006101208a8c03121561140e57600080fd5b6114178a611277565b985061142560208b01611277565b975060408a0135965060608a0135955060808a0135945060a08a0135935061144f60c08b01611341565b925060e08a013591506101008a013590509295985092959850929598565b600181811c9082168061148157607f821691505b6020821081036114ba577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b808201808211156104ed577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000060000000000000000000000008df0eb73f815c500c49058d96f71e76aadf548f50000000000000000000000006ff9474923510c0d41d246b9f39259cbf4e5eba30000000000000000000000002ae5e92d24edcb56e780f90c7bf69f014eb0b1aa0000000000000000000000005b4ec57143b57aa4716da35b79f40ca65e980b8b000000000000000000000000a78605f5390a206e09c2b91b04e6d4fbaba0a985000000000000000000000000e172ae4e0861b9591a37600cfb9a67dd2faaf835000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000004f68ca6d8cd91c600000000000000000000000000000000000000000000000000be951906eba2aa80000000000000000000000000000000000000000000000018122a293518363380000000000000000000000000000000000000000000000022bdd88fed9efc6a0000000000000000000000000000000000000000000000000fb768105935a2f3000000000000000000000000000000000000000000000000027b46536c66c8e3000000
-----Decoded View---------------
Arg [0] : addresses (address[]): 0x8DF0EB73f815C500C49058d96F71E76aaDf548F5,0x6fF9474923510C0D41d246b9f39259cbf4E5ebA3,0x2ae5e92D24edcB56E780F90C7bF69F014eB0B1aA,0x5b4Ec57143B57aa4716Da35b79F40CA65E980B8B,0xa78605F5390a206E09C2B91b04e6D4fBaBa0A985,0xE172ae4E0861B9591a37600cFB9A67dD2FaAf835
Arg [1] : amounts (uint256[]): 6000000000000000000000000,900000000000000000000000,29100000000000000000000000,42000000000000000000000000,19000000000000000000000000,3000000000000000000000000
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [3] : 0000000000000000000000008df0eb73f815c500c49058d96f71e76aadf548f5
Arg [4] : 0000000000000000000000006ff9474923510c0d41d246b9f39259cbf4e5eba3
Arg [5] : 0000000000000000000000002ae5e92d24edcb56e780f90c7bf69f014eb0b1aa
Arg [6] : 0000000000000000000000005b4ec57143b57aa4716da35b79f40ca65e980b8b
Arg [7] : 000000000000000000000000a78605f5390a206e09c2b91b04e6d4fbaba0a985
Arg [8] : 000000000000000000000000e172ae4e0861b9591a37600cfb9a67dd2faaf835
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 00000000000000000000000000000000000000000004f68ca6d8cd91c6000000
Arg [11] : 00000000000000000000000000000000000000000000be951906eba2aa800000
Arg [12] : 00000000000000000000000000000000000000000018122a2935183633800000
Arg [13] : 00000000000000000000000000000000000000000022bdd88fed9efc6a000000
Arg [14] : 0000000000000000000000000000000000000000000fb768105935a2f3000000
Arg [15] : 000000000000000000000000000000000000000000027b46536c66c8e3000000
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.