ETH Price: $2,388.37 (-1.07%)

Token

Ease Token (EASE)
 

Overview

Max Total Supply

750,000,000 EASE

Holders

260 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
76,625.27672 EASE

Value
$0.00
0x9f0004e85aB1a65d569cBd9a59A46ef0c84Cf470
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ease uses a novel, DeFi-native coverage model to protect users' DeFi investments from hacks and scams with no upfront premiums, no underwriters, and no maintenance needed.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EaseToken

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 2 : EaseToken.sol
/// SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.11;

import "../external/SolmateERC20.sol";

contract EaseToken is SolmateERC20 {
    /// @notice Address of easeDAO
    address public owner;

    modifier onlyOwner() {
        require(msg.sender == owner, "Only owner!");
        _;
    }

    constructor(address _owner) SolmateERC20("Ease Token", "EASE", 18) {
        _mint(msg.sender, 750_000_000e18);
        owner = _owner;
    }

    function burn(uint256 _amount) external {
        _burn(msg.sender, _amount);
    }

    /// @notice Allows easeDAO to remint the burned token if the vote passes
    /// in favour of reminting them.
    function mint() external onlyOwner {
        _mint(owner, 250_000_000e18);
        _renounceOwnership();
    }

    /// @notice Allows easeDAO to renounce ownership if vote fails
    function renounceOwnership() external onlyOwner {
        _renounceOwnership();
    }

    function _renounceOwnership() internal {
        owner = address(0);
    }
}

File 2 of 2 : SolmateERC20.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.11;

// solhint-disable var-name-mixedcase
// solhint-disable func-name-mixedcase
// solhint-disable not-rely-on-time

/// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC20.sol)
/// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
/// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
abstract contract SolmateERC20 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event Transfer(address indexed from, address indexed to, uint256 amount);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );

    /*//////////////////////////////////////////////////////////////
                            METADATA STORAGE
    //////////////////////////////////////////////////////////////*/

    string public name;

    string public symbol;

    uint8 public immutable decimals;

    /*//////////////////////////////////////////////////////////////
                              ERC20 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 public totalSupply;

    mapping(address => uint256) public balanceOf;

    mapping(address => mapping(address => uint256)) public allowance;

    /*//////////////////////////////////////////////////////////////
                            EIP-2612 STORAGE
    //////////////////////////////////////////////////////////////*/

    uint256 internal immutable INITIAL_CHAIN_ID;

    bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR;

    mapping(address => uint256) public nonces;

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;

        INITIAL_CHAIN_ID = block.chainid;
        INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator();
    }

    /*//////////////////////////////////////////////////////////////
                               ERC20 LOGIC
    //////////////////////////////////////////////////////////////*/

    function approve(address spender, uint256 amount)
        public
        virtual
        returns (bool)
    {
        allowance[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);

        return true;
    }

    function transfer(address to, uint256 amount)
        public
        virtual
        returns (bool)
    {
        balanceOf[msg.sender] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(msg.sender, to, amount);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals.

        if (allowed != type(uint256).max)
            allowance[from][msg.sender] = allowed - amount;

        balanceOf[from] -= amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(from, to, amount);

        return true;
    }

    /*//////////////////////////////////////////////////////////////
                             EIP-2612 LOGIC
    //////////////////////////////////////////////////////////////*/

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public virtual {
        require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED");

        // Unchecked because the only math done is incrementing
        // the owner's nonce which cannot realistically overflow.
        unchecked {
            address recoveredAddress = ecrecover(
                keccak256(
                    abi.encodePacked(
                        "\x19\x01",
                        DOMAIN_SEPARATOR(),
                        keccak256(
                            abi.encode(
                                keccak256(
                                    "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)"
                                ),
                                owner,
                                spender,
                                value,
                                nonces[owner]++,
                                deadline
                            )
                        )
                    )
                ),
                v,
                r,
                s
            );

            require(
                recoveredAddress != address(0) && recoveredAddress == owner,
                "INVALID_SIGNER"
            );

            allowance[recoveredAddress][spender] = value;
        }

        emit Approval(owner, spender, value);
    }

    function DOMAIN_SEPARATOR() public view virtual returns (bytes32) {
        return
            block.chainid == INITIAL_CHAIN_ID
                ? INITIAL_DOMAIN_SEPARATOR
                : computeDomainSeparator();
    }

    function computeDomainSeparator() internal view virtual returns (bytes32) {
        return
            keccak256(
                abi.encode(
                    keccak256(
                        "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
                    ),
                    keccak256(bytes(name)),
                    keccak256("1"),
                    block.chainid,
                    address(this)
                )
            );
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(address to, uint256 amount) internal virtual {
        totalSupply += amount;

        // Cannot overflow because the sum of all user
        // balances can't exceed the max uint256 value.
        unchecked {
            balanceOf[to] += amount;
        }

        emit Transfer(address(0), to, amount);
    }

    function _burn(address from, uint256 amount) internal virtual {
        balanceOf[from] -= amount;

        // Cannot underflow because a user's balance
        // will never be larger than the total supply.
        unchecked {
            totalSupply -= amount;
        }

        emit Transfer(from, address(0), amount);
    }
}

Settings
{
  "metadata": {
    "bytecodeHash": "none"
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"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":[],"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":"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"}]

60e06040523480156200001157600080fd5b50604051620010c8380380620010c88339810160408190526200003491620002a7565b604080518082018252600a81526922b0b9b2902a37b5b2b760b11b6020808301918252835180850190945260048452634541534560e01b90840152815191929160129162000086916000919062000201565b5081516200009c90600190602085019062000201565b5060ff81166080524660a052620000b2620000f8565b60c05250620000d291503390506b026c62ad77dc602dae00000062000194565b600680546001600160a01b0319166001600160a01b0392909216919091179055620003e1565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516200012c919062000316565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b8060026000828254620001a89190620003ba565b90915550506001600160a01b0382166000818152600360209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b8280546200020f90620002d9565b90600052602060002090601f0160209004810192826200023357600085556200027e565b82601f106200024e57805160ff19168380011785556200027e565b828001600101855582156200027e579182015b828111156200027e57825182559160200191906001019062000261565b506200028c92915062000290565b5090565b5b808211156200028c576000815560010162000291565b600060208284031215620002ba57600080fd5b81516001600160a01b0381168114620002d257600080fd5b9392505050565b600181811c90821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b600080835481600182811c9150808316806200033357607f831692505b60208084108214156200035457634e487b7160e01b86526022600452602486fd5b8180156200036b57600181146200037d57620003ac565b60ff19861689528489019650620003ac565b60008a81526020902060005b86811015620003a45781548b82015290850190830162000389565b505084890196505b509498975050505050505050565b60008219821115620003dc57634e487b7160e01b600052601160045260246000fd5b500190565b60805160a05160c051610cb7620004116000396000610532015260006104fd0152600061017f0152610cb76000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610241578063a9059cbb14610249578063d505accf1461025c578063dd62ed3e1461026f57600080fd5b806370a08231146101ce578063715018a6146101ee5780637ecebe00146101f65780638da5cb5b1461021657600080fd5b806323b872dd116100d357806323b872dd14610167578063313ce5671461017a5780633644e515146101b357806342966c68146101bb57600080fd5b806306fdde0314610105578063095ea7b3146101235780631249c58b1461014657806318160ddd14610150575b600080fd5b61010d61029a565b60405161011a91906109b6565b60405180910390f35b610136610131366004610a27565b610328565b604051901515815260200161011a565b61014e610394565b005b61015960025481565b60405190815260200161011a565b610136610175366004610a51565b610419565b6101a17f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161011a565b6101596104f9565b61014e6101c9366004610a8d565b610554565b6101596101dc366004610aa6565b60036020526000908152604090205481565b61014e610561565b610159610204366004610aa6565b60056020526000908152604090205481565b600654610229906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b61010d6105a9565b610136610257366004610a27565b6105b6565b61014e61026a366004610ac8565b61061c565b61015961027d366004610b3b565b600460209081526000928352604080842090915290825290205481565b600080546102a790610b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610b6e565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103839086815260200190565b60405180910390a350600192915050565b6006546001600160a01b031633146103e15760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c79206f776e65722160a81b60448201526064015b60405180910390fd5b600654610402906001600160a01b03166acecb8f27f4200f3a000000610860565b610417600680546001600160a01b0319169055565b565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610475576104508382610bbf565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b0385166000908152600360205260408120805485929061049d908490610bbf565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610c8b833981519152906104e69087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000000461461052f5761052a6108ba565b905090565b507f000000000000000000000000000000000000000000000000000000000000000090565b61055e3382610954565b50565b6006546001600160a01b031633146104025760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c79206f776e65722160a81b60448201526064016103d8565b600180546102a790610b6e565b336000908152600360205260408120805483919083906105d7908490610bbf565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610c8b833981519152906103839086815260200190565b4284101561066c5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064016103d8565b600060016106786104f9565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610784573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906107ba5750876001600160a01b0316816001600160a01b0316145b6107f75760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016103d8565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b80600260008282546108729190610bd6565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610c8b83398151915291015b60405180910390a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516108ec9190610bee565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6001600160a01b0382166000908152600360205260408120805483929061097c908490610bbf565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610c8b833981519152906020016108ae565b600060208083528351808285015260005b818110156109e3578581018301518582016040015282016109c7565b818111156109f5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a2257600080fd5b919050565b60008060408385031215610a3a57600080fd5b610a4383610a0b565b946020939093013593505050565b600080600060608486031215610a6657600080fd5b610a6f84610a0b565b9250610a7d60208501610a0b565b9150604084013590509250925092565b600060208284031215610a9f57600080fd5b5035919050565b600060208284031215610ab857600080fd5b610ac182610a0b565b9392505050565b600080600080600080600060e0888a031215610ae357600080fd5b610aec88610a0b565b9650610afa60208901610a0b565b95506040880135945060608801359350608088013560ff81168114610b1e57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610b4e57600080fd5b610b5783610a0b565b9150610b6560208401610a0b565b90509250929050565b600181811c90821680610b8257607f821691505b60208210811415610ba357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610bd157610bd1610ba9565b500390565b60008219821115610be957610be9610ba9565b500190565b600080835481600182811c915080831680610c0a57607f831692505b6020808410821415610c2a57634e487b7160e01b86526022600452602486fd5b818015610c3e5760018114610c4f57610c7c565b60ff19861689528489019650610c7c565b60008a81526020902060005b86811015610c745781548b820152908501908301610c5b565b505084890196505b50949897505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa164736f6c634300080b000a000000000000000000000000ea5edef1401e8c312c797c27a9842e03eb0e557a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610241578063a9059cbb14610249578063d505accf1461025c578063dd62ed3e1461026f57600080fd5b806370a08231146101ce578063715018a6146101ee5780637ecebe00146101f65780638da5cb5b1461021657600080fd5b806323b872dd116100d357806323b872dd14610167578063313ce5671461017a5780633644e515146101b357806342966c68146101bb57600080fd5b806306fdde0314610105578063095ea7b3146101235780631249c58b1461014657806318160ddd14610150575b600080fd5b61010d61029a565b60405161011a91906109b6565b60405180910390f35b610136610131366004610a27565b610328565b604051901515815260200161011a565b61014e610394565b005b61015960025481565b60405190815260200161011a565b610136610175366004610a51565b610419565b6101a17f000000000000000000000000000000000000000000000000000000000000001281565b60405160ff909116815260200161011a565b6101596104f9565b61014e6101c9366004610a8d565b610554565b6101596101dc366004610aa6565b60036020526000908152604090205481565b61014e610561565b610159610204366004610aa6565b60056020526000908152604090205481565b600654610229906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b61010d6105a9565b610136610257366004610a27565b6105b6565b61014e61026a366004610ac8565b61061c565b61015961027d366004610b3b565b600460209081526000928352604080842090915290825290205481565b600080546102a790610b6e565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610b6e565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552925280832085905551919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906103839086815260200190565b60405180910390a350600192915050565b6006546001600160a01b031633146103e15760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c79206f776e65722160a81b60448201526064015b60405180910390fd5b600654610402906001600160a01b03166acecb8f27f4200f3a000000610860565b610417600680546001600160a01b0319169055565b565b6001600160a01b03831660009081526004602090815260408083203384529091528120546000198114610475576104508382610bbf565b6001600160a01b03861660009081526004602090815260408083203384529091529020555b6001600160a01b0385166000908152600360205260408120805485929061049d908490610bbf565b90915550506001600160a01b0380851660008181526003602052604090819020805487019055519091871690600080516020610c8b833981519152906104e69087815260200190565b60405180910390a3506001949350505050565b60007f0000000000000000000000000000000000000000000000000000000000000001461461052f5761052a6108ba565b905090565b507fd1506caf8f1567c88ef88798fc3ed28597683b0dc3b277bd697d9c55ed65970890565b61055e3382610954565b50565b6006546001600160a01b031633146104025760405162461bcd60e51b815260206004820152600b60248201526a4f6e6c79206f776e65722160a81b60448201526064016103d8565b600180546102a790610b6e565b336000908152600360205260408120805483919083906105d7908490610bbf565b90915550506001600160a01b03831660008181526003602052604090819020805485019055513390600080516020610c8b833981519152906103839086815260200190565b4284101561066c5760405162461bcd60e51b815260206004820152601760248201527f5045524d49545f444541444c494e455f4558504952454400000000000000000060448201526064016103d8565b600060016106786104f9565b6001600160a01b038a811660008181526005602090815260409182902080546001810190915582517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98184015280840194909452938d166060840152608083018c905260a083019390935260c08083018b90528151808403909101815260e08301909152805192019190912061190160f01b6101008301526101028201929092526101228101919091526101420160408051601f198184030181528282528051602091820120600084529083018083525260ff871690820152606081018590526080810184905260a0016020604051602081039080840390855afa158015610784573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906107ba5750876001600160a01b0316816001600160a01b0316145b6107f75760405162461bcd60e51b815260206004820152600e60248201526d24a72b20a624a22fa9a4a3a722a960911b60448201526064016103d8565b6001600160a01b0390811660009081526004602090815260408083208a8516808552908352928190208990555188815291928a16917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a350505050505050565b80600260008282546108729190610bd6565b90915550506001600160a01b038216600081815260036020908152604080832080548601905551848152600080516020610c8b83398151915291015b60405180910390a35050565b60007f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60006040516108ec9190610bee565b6040805191829003822060208301939093528101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a082015260c00160405160208183030381529060405280519060200120905090565b6001600160a01b0382166000908152600360205260408120805483929061097c908490610bbf565b90915550506002805482900390556040518181526000906001600160a01b03841690600080516020610c8b833981519152906020016108ae565b600060208083528351808285015260005b818110156109e3578581018301518582016040015282016109c7565b818111156109f5576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610a2257600080fd5b919050565b60008060408385031215610a3a57600080fd5b610a4383610a0b565b946020939093013593505050565b600080600060608486031215610a6657600080fd5b610a6f84610a0b565b9250610a7d60208501610a0b565b9150604084013590509250925092565b600060208284031215610a9f57600080fd5b5035919050565b600060208284031215610ab857600080fd5b610ac182610a0b565b9392505050565b600080600080600080600060e0888a031215610ae357600080fd5b610aec88610a0b565b9650610afa60208901610a0b565b95506040880135945060608801359350608088013560ff81168114610b1e57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b60008060408385031215610b4e57600080fd5b610b5783610a0b565b9150610b6560208401610a0b565b90509250929050565b600181811c90821680610b8257607f821691505b60208210811415610ba357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082821015610bd157610bd1610ba9565b500390565b60008219821115610be957610be9610ba9565b500190565b600080835481600182811c915080831680610c0a57607f831692505b6020808410821415610c2a57634e487b7160e01b86526022600452602486fd5b818015610c3e5760018114610c4f57610c7c565b60ff19861689528489019650610c7c565b60008a81526020902060005b86811015610c745781548b820152908501908301610c5b565b505084890196505b50949897505050505050505056feddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa164736f6c634300080b000a

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ea5edef1401e8c312c797c27a9842e03eb0e557a

-----Decoded View---------------
Arg [0] : _owner (address): 0xEA5edEf1401e8C312c797c27a9842e03Eb0e557a

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ea5edef1401e8c312c797c27a9842e03eb0e557a


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.