ETH Price: $3,350.38 (-0.92%)

Contract

0x2E8223bDa058ef8178425E4dB5245746f9CD6703
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer214903302024-12-27 0:50:472 days ago1735260647IN
0x2E8223bD...6f9CD6703
0 ETH0.000194866.00872485
Transfer214891432024-12-26 20:51:472 days ago1735246307IN
0x2E8223bD...6f9CD6703
0 ETH0.000414317.62578398
Transfer214709892024-12-24 7:58:115 days ago1735027091IN
0x2E8223bD...6f9CD6703
0 ETH0.000271945.00526307
Transfer213984782024-12-14 4:50:5915 days ago1734151859IN
0x2E8223bD...6f9CD6703
0 ETH0.0003699311.40681613
Transfer213972862024-12-14 0:51:3515 days ago1734137495IN
0x2E8223bD...6f9CD6703
0 ETH0.0007109113.08483079
Transfer212879722024-11-28 18:25:2330 days ago1732818323IN
0x2E8223bD...6f9CD6703
0 ETH0.0008139814.98865608
Transfer212878322024-11-28 17:56:5930 days ago1732816619IN
0x2E8223bD...6f9CD6703
0 ETH0.0008051614.82296902
Transfer212866452024-11-28 13:58:3531 days ago1732802315IN
0x2E8223bD...6f9CD6703
0 ETH0.000638411.75296341
Transfer212427932024-11-22 10:52:1137 days ago1732272731IN
0x2E8223bD...6f9CD6703
0 ETH0.0006316411.62848768
Transfer212290882024-11-20 12:56:1139 days ago1732107371IN
0x2E8223bD...6f9CD6703
0 ETH0.0006529712.02110025
Transfer212289262024-11-20 12:23:2339 days ago1732105403IN
0x2E8223bD...6f9CD6703
0 ETH0.00047598.76130385
Transfer212287342024-11-20 11:44:4739 days ago1732103087IN
0x2E8223bD...6f9CD6703
0 ETH0.0006314611.62504553
Transfer212133572024-11-18 8:18:1141 days ago1731917891IN
0x2E8223bD...6f9CD6703
0 ETH0.0004246811.40674688
Transfer211636712024-11-11 9:53:2348 days ago1731318803IN
0x2E8223bD...6f9CD6703
0 ETH0.0008446415.54625188
Transfer211148202024-11-04 14:15:4755 days ago1730729747IN
0x2E8223bD...6f9CD6703
0 ETH0.000498979.18199371
Transfer211137792024-11-04 10:46:4755 days ago1730717207IN
0x2E8223bD...6f9CD6703
0 ETH0.000275365.06830618
Transfer210988782024-11-02 8:50:3557 days ago1730537435IN
0x2E8223bD...6f9CD6703
0 ETH0.000212556.55400711
Transfer210952942024-11-01 20:49:4757 days ago1730494187IN
0x2E8223bD...6f9CD6703
0 ETH0.000455598.38554709
Transfer210941162024-11-01 16:53:2357 days ago1730480003IN
0x2E8223bD...6f9CD6703
0 ETH0.0007272222.42385262
Transfer210929122024-11-01 12:51:2358 days ago1730465483IN
0x2E8223bD...6f9CD6703
0 ETH0.000668512.30424581
Transfer210761802024-10-30 4:49:2360 days ago1730263763IN
0x2E8223bD...6f9CD6703
0 ETH0.000323749.98248959
Transfer210749852024-10-30 0:49:2360 days ago1730249363IN
0x2E8223bD...6f9CD6703
0 ETH0.00045398.35447439
Transfer210618522024-10-28 4:49:2362 days ago1730090963IN
0x2E8223bD...6f9CD6703
0 ETH0.000194886.00932014
Transfer210606592024-10-28 0:49:2362 days ago1730076563IN
0x2E8223bD...6f9CD6703
0 ETH0.000368866.78926357
Transfer210439352024-10-25 16:50:3565 days ago1729875035IN
0x2E8223bD...6f9CD6703
0 ETH0.0004144212.77858995
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
168413882023-03-16 15:46:47654 days ago1678981607  Contract Creation0 ETH
Loading...
Loading

Minimal Proxy Contract for 0x8443a5bd91c8f68582f90dd3354f750900c5e8cc

Contract Name:
InitializableERC20

Compiler Version
v0.6.9+commit.3e3065ac

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license
/**
 *Submitted for verification at Etherscan.io on 2021-07-01
*/

/**
 *Submitted for verification at BscScan.com on 2021-07-01
*/

// File: contracts/lib/SafeMath.sol

/*

    Copyright 2020 DODO ZOO.
    SPDX-License-Identifier: Apache-2.0

*/

pragma solidity 0.6.9;


/**
 * @title SafeMath
 * @author DODO Breeder
 *
 * @notice Math operations with safety checks that revert on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "MUL_ERROR");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "DIVIDING_ERROR");
        return a / b;
    }

    function divCeil(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 quotient = div(a, b);
        uint256 remainder = a - quotient * b;
        if (remainder > 0) {
            return quotient + 1;
        } else {
            return quotient;
        }
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SUB_ERROR");
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "ADD_ERROR");
        return c;
    }

    function sqrt(uint256 x) internal pure returns (uint256 y) {
        uint256 z = x / 2 + 1;
        y = x;
        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
}

// File: contracts/external/ERC20/InitializableERC20.sol



contract InitializableERC20 {
    using SafeMath for uint256;

    string public name;
    uint8 public decimals;
    string public symbol;
    uint256 public totalSupply;

    bool public initialized;

    mapping(address => uint256) balances;
    mapping(address => mapping(address => uint256)) internal allowed;

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

    function init(
        address _creator,
        uint256 _totalSupply,
        string memory _name,
        string memory _symbol,
        uint8 _decimals
    ) public {
        require(!initialized, "TOKEN_INITIALIZED");
        initialized = true;
        totalSupply = _totalSupply;
        balances[_creator] = _totalSupply;
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        emit Transfer(address(0), _creator, _totalSupply);
    }

    function transfer(address to, uint256 amount) public returns (bool) {
        require(to != address(0), "TO_ADDRESS_IS_EMPTY");
        require(amount <= balances[msg.sender], "BALANCE_NOT_ENOUGH");

        balances[msg.sender] = balances[msg.sender].sub(amount);
        balances[to] = balances[to].add(amount);
        emit Transfer(msg.sender, to, amount);
        return true;
    }

    function balanceOf(address owner) public view returns (uint256 balance) {
        return balances[owner];
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public returns (bool) {
        require(to != address(0), "TO_ADDRESS_IS_EMPTY");
        require(amount <= balances[from], "BALANCE_NOT_ENOUGH");
        require(amount <= allowed[from][msg.sender], "ALLOWANCE_NOT_ENOUGH");

        balances[from] = balances[from].sub(amount);
        balances[to] = balances[to].add(amount);
        allowed[from][msg.sender] = allowed[from][msg.sender].sub(amount);
        emit Transfer(from, to, amount);
        return true;
    }

    function approve(address spender, uint256 amount) public returns (bool) {
        allowed[msg.sender][spender] = amount;
        emit Approval(msg.sender, spender, amount);
        return true;
    }

    function allowance(address owner, address spender) public view returns (uint256) {
        return allowed[owner][spender];
    }
}

Contract ABI

[{"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":[{"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":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_creator","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimals","type":"uint8"}],"name":"init","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":[],"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"}]

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.