ERC-20
News
Overview
Max Total Supply
200,000,000 TREE
Holders
1,386 (0.00%)
Market
Price
$0.25 @ 0.000111 ETH (+7.30%)
Onchain Market Cap
$49,459,800.00
Circulating Supply Market Cap
$24,990,352.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,001.088082767383074457 TREEValue
$2,473.26 ( ~1.1103 Eth) [0.0050%]Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Tree
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity Standard Json-Input format)
123456789101112131415161718192021222324// SPDX-License-Identifer: MIT/*Twitter: https://twitter.com/News_Of_AlphaWebsite: https://news.treeofalpha.comDiscord: https://news.treeofalpha.com/discord*/pragma solidity ^0.8.0;import "@openzeppelin/token/ERC20/ERC20.sol";import "@openzeppelin/token/ERC20/extensions/ERC20Permit.sol";import "@openzeppelin/access/Ownable.sol";contract Tree is ERC20, ERC20Permit, Ownable {bool public initialized = false;constructor() ERC20("Tree", "TREE") ERC20Permit("Tree") Ownable(msg.sender) {}function initialize(address _addr) external onlyOwner {require(!initialized, "Already initialized");initialized = true;_mint(_addr, 200_000_000 * 10 ** decimals());}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)pragma solidity ^0.8.20;import {IERC20Permit} from "./IERC20Permit.sol";import {ERC20} from "../ERC20.sol";import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";import {EIP712} from "../../../utils/cryptography/EIP712.sol";import {Nonces} from "../../../utils/Nonces.sol";/*** @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.*/abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {bytes32 private constant PERMIT_TYPEHASH =keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");/*** @dev Permit deadline has expired.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)pragma solidity ^0.8.20;import {MessageHashUtils} from "./MessageHashUtils.sol";import {ShortStrings, ShortString} from "../ShortStrings.sol";import {IERC5267} from "../../interfaces/IERC5267.sol";/*** @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.** The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.** This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA* ({_hashTypedDataV4}).** The implementation of the domain separator was designed to be as efficient as possible while still properly updating* the chain id to protect against replay attacks on an eventual fork of the chain.** NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)pragma solidity ^0.8.20;interface IERC5267 {/*** @dev MAY be emitted to signal that the domain could have changed.*/event EIP712DomainChanged();/*** @dev returns the fields and values that describe the domain separator used by this contract for EIP-712* signature.*/function eip712Domain()externalviewreturns (bytes1 fields,string memory name,string memory version,uint256 chainId,address verifyingContract,bytes32 salt,uint256[] memory extensions
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)pragma solidity ^0.8.20;import {Strings} from "../Strings.sol";/*** @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.** The library provides methods for generating a hash of a message that conforms to the* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]* specifications.*/library MessageHashUtils {/*** @dev Returns the keccak256 digest of an EIP-191 signed data with version* `0x45` (`personal_sign` messages).** The digest is calculated by prefixing a bytes32 `messageHash` with* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.** NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with* keccak256, although any bytes32 value can be safely used because the final digest will* be re-hashed.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev Converts a `uint256` to its ASCII `string` decimal representation.*/function toString(uint256 value) internal pure returns (string memory) {unchecked {uint256 length = Math.log10(value) + 1;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Returns the largest of two signed numbers.*/function max(int256 a, int256 b) internal pure returns (int256) {return a > b ? a : b;}/*** @dev Returns the smallest of two signed numbers.*/function min(int256 a, int256 b) internal pure returns (int256) {return a < b ? a : b;}/*** @dev Returns the average of two signed numbers without overflow.* The result is rounded towards zero.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)pragma solidity ^0.8.20;/*** @dev Standard math utilities missing in the Solidity language.*/library Math {/*** @dev Muldiv operation overflow.*/error MathOverflowedMulDiv();enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an overflow flag.*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {unchecked {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)pragma solidity ^0.8.20;import {StorageSlot} from "./StorageSlot.sol";// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |// | length | 0x BB |type ShortString is bytes32;/*** @dev This library provides functions to convert short memory strings* into a `ShortString` type that can be used as an immutable variable.** Strings of arbitrary length can be optimized using this library if* they are short enough (up to 31 bytes) by packing them with their* length (1 byte) in a single EVM word (32 bytes). Additionally, a* fallback mechanism can be used for every other case.** Usage example:** ```solidity* contract Named {* using ShortStrings for *;*
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.pragma solidity ^0.8.20;/*** @dev Library for reading and writing primitive types to specific storage slots.** Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.* This library helps with reading and writing to such slots without the need for inline assembly.** The functions in this library return Slot structs that contain a `value` member that can be used to read or write.** Example usage to set ERC1967 implementation slot:* ```solidity* contract ERC1967 {* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;** function _getImplementation() internal view returns (address) {* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;* }** function _setImplementation(address newImplementation) internal {* require(newImplementation.code.length > 0);* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)pragma solidity ^0.8.20;/*** @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.** These functions can be used to verify that a message was signed by the holder* of the private keys of a given address.*/library ECDSA {enum RecoverError {NoError,InvalidSignature,InvalidSignatureLength,InvalidSignatureS}/*** @dev The signature derives the `address(0)`.*/error ECDSAInvalidSignature();/*** @dev The signature has an invalid length.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/Nonces.sol)pragma solidity ^0.8.20;/*** @dev Provides tracking nonces for addresses. Nonces will only increment.*/abstract contract Nonces {/*** @dev The nonce used for an `account` is not the expected current nonce.*/error InvalidAccountNonce(address account, uint256 currentNonce);mapping(address account => uint256) private _nonces;/*** @dev Returns the next unused nonce for an address.*/function nonces(address owner) public view virtual returns (uint256) {return _nonces[owner];}/*** @dev Consumes a nonce.** Returns the current value and increments nonce.
1234567891011121314151617181920212223242526// 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
1234567891011121314151617181920212223242526// 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.
1234567891011121314151617181920212223242526// 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);}
1234567891011121314151617181920212223242526// 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.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].** Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't* need to send a transaction, and thus is not required to hold Ether at all.** ==== Security Considerations** There are two important considerations concerning the use of `permit`. The first is that a valid permit signature* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be* considered as an intention to spend the allowance in any specific way. The second is that because permits have* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be* generally recommended is:** ```solidity* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}* doThing(..., value);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
12345678910111213141516171819202122{"optimizer": {"enabled": true,"runs": 200},"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"remappings": ["@openzeppelin=.cache/OpenZeppelin/v5.0.0"],"viaIR": false}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"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"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"ERC2612ExpiredSignature","type":"error"},{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC2612InvalidSigner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"currentNonce","type":"uint256"}],"name":"InvalidAccountNonce","type":"error"},{"inputs":[],"name":"InvalidShortString","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"StringTooLong","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":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"DOMAIN_SEPARATOR","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":"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":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","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":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101606040526008805460ff60a01b191690553480156200001e575f80fd5b5033604051806040016040528060048152602001635472656560e01b81525080604051806040016040528060018152602001603160f81b815250604051806040016040528060048152602001635472656560e01b815250604051806040016040528060048152602001635452454560e01b8152508160039081620000a3919062000316565b506004620000b2828262000316565b50620000c491508390506005620001ad565b61012052620000d5816006620001ad565b61014052815160208084019190912060e052815190820120610100524660a0526200016260e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c052506001600160a01b0381166200019b57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620001a681620001e5565b5062000454565b5f602083511015620001cc57620001c48362000236565b9050620001df565b81620001d9848262000316565b5060ff90505b92915050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f80829050601f8151111562000263578260405163305a27a960e01b8152600401620001929190620003e2565b8051620002708262000430565b179392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002a157607f821691505b602082108103620002c057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200031157805f5260205f20601f840160051c81016020851015620002ed5750805b601f840160051c820191505b818110156200030e575f8155600101620002f9565b50505b505050565b81516001600160401b0381111562000332576200033262000278565b6200034a816200034384546200028c565b84620002c6565b602080601f83116001811462000380575f8415620003685750858301515b5f19600386901b1c1916600185901b178555620003da565b5f85815260208120601f198616915b82811015620003b0578886015182559484019460019091019084016200038f565b5085821015620003ce57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b5f602080835283518060208501525f5b818110156200041057858101830151858201604001528201620003f2565b505f604082860101526040601f19601f8301168501019250505092915050565b80516020808301519190811015620002c0575f1960209190910360031b1b16919050565b60805160a05160c05160e0516101005161012051610140516111f6620004a65f395f6108e701525f6108ba01525f6107e501525f6107bd01525f61071801525f61074201525f61076c01526111f65ff3fe608060405234801561000f575f80fd5b5060043610610111575f3560e01c80637ecebe001161009e578063a9059cbb1161006e578063a9059cbb14610229578063c4d66de81461023c578063d505accf1461024f578063dd62ed3e14610262578063f2fde38b1461029a575f80fd5b80637ecebe00146101d857806384b0196e146101eb5780638da5cb5b1461020657806395d89b4114610221575f80fd5b806323b872dd116100e457806323b872dd1461017c578063313ce5671461018f5780633644e5151461019e57806370a08231146101a6578063715018a6146101ce575f80fd5b806306fdde0314610115578063095ea7b314610133578063158ef93e1461015657806318160ddd1461016a575b5f80fd5b61011d6102ad565b60405161012a9190610e65565b60405180910390f35b610146610141366004610e99565b61033d565b604051901515815260200161012a565b60085461014690600160a01b900460ff1681565b6002545b60405190815260200161012a565b61014661018a366004610ec1565b610356565b6040516012815260200161012a565b61016e610379565b61016e6101b4366004610efa565b6001600160a01b03165f9081526020819052604090205490565b6101d6610387565b005b61016e6101e6366004610efa565b61039a565b6101f36103b7565b60405161012a9796959493929190610f13565b6008546040516001600160a01b03909116815260200161012a565b61011d6103f9565b610146610237366004610e99565b610408565b6101d661024a366004610efa565b610415565b6101d661025d366004610faa565b6104b2565b61016e610270366004611017565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d66102a8366004610efa565b6105e8565b6060600380546102bc90611048565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611048565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f3361034a818585610622565b60019150505b92915050565b5f33610363858285610634565b61036e8585856106af565b506001949350505050565b5f61038261070c565b905090565b61038f610835565b6103985f610862565b565b6001600160a01b0381165f90815260076020526040812054610350565b5f6060805f805f60606103c86108b3565b6103d06108e0565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102bc90611048565b5f3361034a8185856106af565b61041d610835565b600854600160a01b900460ff16156104725760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064015b60405180910390fd5b6008805460ff60a01b1916600160a01b1790556104af81610491601290565b61049c90600a611174565b6104aa90630bebc200611182565b61090d565b50565b834211156104d65760405163313c898160e11b815260048101859052602401610469565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105218c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61057b82610945565b90505f61058a82878787610971565b9050896001600160a01b0316816001600160a01b0316146105d1576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610469565b6105dc8a8a8a610622565b50505050505050505050565b6105f0610835565b6001600160a01b03811661061957604051631e4fbdf760e01b81525f6004820152602401610469565b6104af81610862565b61062f838383600161099d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106a9578181101561069b57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610469565b6106a984848484035f61099d565b50505050565b6001600160a01b0383166106d857604051634b637e8f60e11b81525f6004820152602401610469565b6001600160a01b0382166107015760405163ec442f0560e01b81525f6004820152602401610469565b61062f838383610a6f565b5f306001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614801561076457507f000000000000000000000000000000000000000000000000000000000000000046145b1561078e57507f000000000000000000000000000000000000000000000000000000000000000090565b610382604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6008546001600160a01b031633146103985760405163118cdaa760e01b8152336004820152602401610469565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60606103827f00000000000000000000000000000000000000000000000000000000000000006005610b95565b60606103827f00000000000000000000000000000000000000000000000000000000000000006006610b95565b6001600160a01b0382166109365760405163ec442f0560e01b81525f6004820152602401610469565b6109415f8383610a6f565b5050565b5f61035061095161070c565b8360405161190160f01b8152600281019290925260228201526042902090565b5f805f8061098188888888610c3e565b9250925092506109918282610d06565b50909695505050505050565b6001600160a01b0384166109c65760405163e602df0560e01b81525f6004820152602401610469565b6001600160a01b0383166109ef57604051634a1406b160e11b81525f6004820152602401610469565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106a957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a6191815260200190565b60405180910390a350505050565b6001600160a01b038316610a99578060025f828254610a8e9190611199565b90915550610b099050565b6001600160a01b0383165f9081526020819052604090205481811015610aeb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610469565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b2557600280548290039055610b43565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b8891815260200190565b60405180910390a3505050565b606060ff8314610baf57610ba883610dbe565b9050610350565b818054610bbb90611048565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790611048565b8015610c325780601f10610c0957610100808354040283529160200191610c32565b820191905f5260205f20905b815481529060010190602001808311610c1557829003601f168201915b50505050509050610350565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c7757505f91506003905082610cfc565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610cc8573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116610cf357505f925060019150829050610cfc565b92505f91508190505b9450945094915050565b5f826003811115610d1957610d196111ac565b03610d22575050565b6001826003811115610d3657610d366111ac565b03610d545760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d6857610d686111ac565b03610d895760405163fce698f760e01b815260048101829052602401610469565b6003826003811115610d9d57610d9d6111ac565b03610941576040516335e2f38360e21b815260048101829052602401610469565b60605f610dca83610dfb565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561035057604051632cd44ac360e21b815260040160405180910390fd5b5f81518084525f5b81811015610e4657602081850181015186830182015201610e2a565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610e776020830184610e22565b9392505050565b80356001600160a01b0381168114610e94575f80fd5b919050565b5f8060408385031215610eaa575f80fd5b610eb383610e7e565b946020939093013593505050565b5f805f60608486031215610ed3575f80fd5b610edc84610e7e565b9250610eea60208501610e7e565b9150604084013590509250925092565b5f60208284031215610f0a575f80fd5b610e7782610e7e565b60ff60f81b881681525f602060e06020840152610f3360e084018a610e22565b8381036040850152610f45818a610e22565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825260208088019350909101905f5b81811015610f9857835183529284019291840191600101610f7c565b50909c9b505050505050505050505050565b5f805f805f805f60e0888a031215610fc0575f80fd5b610fc988610e7e565b9650610fd760208901610e7e565b95506040880135945060608801359350608088013560ff81168114610ffa575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611028575f80fd5b61103183610e7e565b915061103f60208401610e7e565b90509250929050565b600181811c9082168061105c57607f821691505b60208210810361107a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156110ce57815f19048211156110b4576110b4611080565b808516156110c157918102915b93841c9390800290611099565b509250929050565b5f826110e457506001610350565b816110f057505f610350565b816001811461110657600281146111105761112c565b6001915050610350565b60ff84111561112157611121611080565b50506001821b610350565b5060208310610133831016604e8410600b841016171561114f575081810a610350565b6111598383611094565b805f190482111561116c5761116c611080565b029392505050565b5f610e7760ff8416836110d6565b808202811582820484141761035057610350611080565b8082018082111561035057610350611080565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d44fc14ea5918a062b04e66c762b77ca47cbed1fccc518381e99072642a1a26564736f6c63430008170033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610111575f3560e01c80637ecebe001161009e578063a9059cbb1161006e578063a9059cbb14610229578063c4d66de81461023c578063d505accf1461024f578063dd62ed3e14610262578063f2fde38b1461029a575f80fd5b80637ecebe00146101d857806384b0196e146101eb5780638da5cb5b1461020657806395d89b4114610221575f80fd5b806323b872dd116100e457806323b872dd1461017c578063313ce5671461018f5780633644e5151461019e57806370a08231146101a6578063715018a6146101ce575f80fd5b806306fdde0314610115578063095ea7b314610133578063158ef93e1461015657806318160ddd1461016a575b5f80fd5b61011d6102ad565b60405161012a9190610e65565b60405180910390f35b610146610141366004610e99565b61033d565b604051901515815260200161012a565b60085461014690600160a01b900460ff1681565b6002545b60405190815260200161012a565b61014661018a366004610ec1565b610356565b6040516012815260200161012a565b61016e610379565b61016e6101b4366004610efa565b6001600160a01b03165f9081526020819052604090205490565b6101d6610387565b005b61016e6101e6366004610efa565b61039a565b6101f36103b7565b60405161012a9796959493929190610f13565b6008546040516001600160a01b03909116815260200161012a565b61011d6103f9565b610146610237366004610e99565b610408565b6101d661024a366004610efa565b610415565b6101d661025d366004610faa565b6104b2565b61016e610270366004611017565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101d66102a8366004610efa565b6105e8565b6060600380546102bc90611048565b80601f01602080910402602001604051908101604052809291908181526020018280546102e890611048565b80156103335780601f1061030a57610100808354040283529160200191610333565b820191905f5260205f20905b81548152906001019060200180831161031657829003601f168201915b5050505050905090565b5f3361034a818585610622565b60019150505b92915050565b5f33610363858285610634565b61036e8585856106af565b506001949350505050565b5f61038261070c565b905090565b61038f610835565b6103985f610862565b565b6001600160a01b0381165f90815260076020526040812054610350565b5f6060805f805f60606103c86108b3565b6103d06108e0565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102bc90611048565b5f3361034a8185856106af565b61041d610835565b600854600160a01b900460ff16156104725760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481a5b9a5d1a585b1a5e9959606a1b60448201526064015b60405180910390fd5b6008805460ff60a01b1916600160a01b1790556104af81610491601290565b61049c90600a611174565b6104aa90630bebc200611182565b61090d565b50565b834211156104d65760405163313c898160e11b815260048101859052602401610469565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105218c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61057b82610945565b90505f61058a82878787610971565b9050896001600160a01b0316816001600160a01b0316146105d1576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610469565b6105dc8a8a8a610622565b50505050505050505050565b6105f0610835565b6001600160a01b03811661061957604051631e4fbdf760e01b81525f6004820152602401610469565b6104af81610862565b61062f838383600161099d565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f1981146106a9578181101561069b57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610469565b6106a984848484035f61099d565b50505050565b6001600160a01b0383166106d857604051634b637e8f60e11b81525f6004820152602401610469565b6001600160a01b0382166107015760405163ec442f0560e01b81525f6004820152602401610469565b61062f838383610a6f565b5f306001600160a01b037f000000000000000000000000ba25b2281214300e4e649fead9a6d6acd25f1c0a1614801561076457507f000000000000000000000000000000000000000000000000000000000000000146145b1561078e57507f1c30a4a84aba7292d189c758c558846abb64c6a54c485e80459c011710c0a14c90565b610382604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f6e5d31f79eb37c0b1071f754bb6063f4c788ad6f4e59aa96152efbe192f9b98a918101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b6008546001600160a01b031633146103985760405163118cdaa760e01b8152336004820152602401610469565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b60606103827f54726565000000000000000000000000000000000000000000000000000000046005610b95565b60606103827f31000000000000000000000000000000000000000000000000000000000000016006610b95565b6001600160a01b0382166109365760405163ec442f0560e01b81525f6004820152602401610469565b6109415f8383610a6f565b5050565b5f61035061095161070c565b8360405161190160f01b8152600281019290925260228201526042902090565b5f805f8061098188888888610c3e565b9250925092506109918282610d06565b50909695505050505050565b6001600160a01b0384166109c65760405163e602df0560e01b81525f6004820152602401610469565b6001600160a01b0383166109ef57604051634a1406b160e11b81525f6004820152602401610469565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106a957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a6191815260200190565b60405180910390a350505050565b6001600160a01b038316610a99578060025f828254610a8e9190611199565b90915550610b099050565b6001600160a01b0383165f9081526020819052604090205481811015610aeb5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610469565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610b2557600280548290039055610b43565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b8891815260200190565b60405180910390a3505050565b606060ff8314610baf57610ba883610dbe565b9050610350565b818054610bbb90611048565b80601f0160208091040260200160405190810160405280929190818152602001828054610be790611048565b8015610c325780601f10610c0957610100808354040283529160200191610c32565b820191905f5260205f20905b815481529060010190602001808311610c1557829003601f168201915b50505050509050610350565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c7757505f91506003905082610cfc565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610cc8573d5f803e3d5ffd5b5050604051601f1901519150506001600160a01b038116610cf357505f925060019150829050610cfc565b92505f91508190505b9450945094915050565b5f826003811115610d1957610d196111ac565b03610d22575050565b6001826003811115610d3657610d366111ac565b03610d545760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d6857610d686111ac565b03610d895760405163fce698f760e01b815260048101829052602401610469565b6003826003811115610d9d57610d9d6111ac565b03610941576040516335e2f38360e21b815260048101829052602401610469565b60605f610dca83610dfb565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561035057604051632cd44ac360e21b815260040160405180910390fd5b5f81518084525f5b81811015610e4657602081850181015186830182015201610e2a565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610e776020830184610e22565b9392505050565b80356001600160a01b0381168114610e94575f80fd5b919050565b5f8060408385031215610eaa575f80fd5b610eb383610e7e565b946020939093013593505050565b5f805f60608486031215610ed3575f80fd5b610edc84610e7e565b9250610eea60208501610e7e565b9150604084013590509250925092565b5f60208284031215610f0a575f80fd5b610e7782610e7e565b60ff60f81b881681525f602060e06020840152610f3360e084018a610e22565b8381036040850152610f45818a610e22565b606085018990526001600160a01b038816608086015260a0850187905284810360c0860152855180825260208088019350909101905f5b81811015610f9857835183529284019291840191600101610f7c565b50909c9b505050505050505050505050565b5f805f805f805f60e0888a031215610fc0575f80fd5b610fc988610e7e565b9650610fd760208901610e7e565b95506040880135945060608801359350608088013560ff81168114610ffa575f80fd5b9699959850939692959460a0840135945060c09093013592915050565b5f8060408385031215611028575f80fd5b61103183610e7e565b915061103f60208401610e7e565b90509250929050565b600181811c9082168061105c57607f821691505b60208210810361107a57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156110ce57815f19048211156110b4576110b4611080565b808516156110c157918102915b93841c9390800290611099565b509250929050565b5f826110e457506001610350565b816110f057505f610350565b816001811461110657600281146111105761112c565b6001915050610350565b60ff84111561112157611121611080565b50506001821b610350565b5060208310610133831016604e8410600b841016171561114f575081810a610350565b6111598383611094565b805f190482111561116c5761116c611080565b029392505050565b5f610e7760ff8416836110d6565b808202811582820484141761035057610350611080565b8082018082111561035057610350611080565b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d44fc14ea5918a062b04e66c762b77ca47cbed1fccc518381e99072642a1a26564736f6c63430008170033
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.