ETH Price: $2,671.92 (+1.31%)

Contract

0x09274438c5683A890aB00ed6c1A3cb2A03eA3Eeb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer195175832024-03-26 8:59:47149 days ago1711443587IN
0x09274438...A03eA3Eeb
0 ETH0.0012360322.75514679
Transfer194910722024-03-22 15:30:59153 days ago1711121459IN
0x09274438...A03eA3Eeb
0 ETH0.0022778746
Transfer194908562024-03-22 14:47:35153 days ago1711118855IN
0x09274438...A03eA3Eeb
0 ETH0.001271434.17115367
Transfer194819692024-03-21 8:51:59154 days ago1711011119IN
0x09274438...A03eA3Eeb
0 ETH0.0011609231.20170662
Transfer194700602024-03-19 16:44:11156 days ago1710866651IN
0x09274438...A03eA3Eeb
0 ETH0.0014634639.33316628
Transfer194694122024-03-19 14:33:23156 days ago1710858803IN
0x09274438...A03eA3Eeb
0 ETH0.0023463443.2051486
Transfer194690642024-03-19 13:22:47156 days ago1710854567IN
0x09274438...A03eA3Eeb
0 ETH0.0016499944.34629483
Transfer194686412024-03-19 11:57:35156 days ago1710849455IN
0x09274438...A03eA3Eeb
0 ETH0.0025987147.85224606
Transfer194623112024-03-18 14:36:47157 days ago1710772607IN
0x09274438...A03eA3Eeb
0 ETH0.0027130949.95840869
Transfer194404122024-03-15 12:41:11160 days ago1710506471IN
0x09274438...A03eA3Eeb
0 ETH0.0015140640.69305046
Transfer194397292024-03-15 10:23:59160 days ago1710498239IN
0x09274438...A03eA3Eeb
0 ETH0.0013048335.05820976
Transfer194330572024-03-14 11:49:47161 days ago1710416987IN
0x09274438...A03eA3Eeb
0 ETH0.0017141446.07044828
Transfer194324352024-03-14 9:43:47161 days ago1710409427IN
0x09274438...A03eA3Eeb
0 ETH0.0016779245.09696837
Transfer194264602024-03-13 13:29:59162 days ago1710336599IN
0x09274438...A03eA3Eeb
0 ETH0.0037221268.52348649
Transfer194251682024-03-13 9:10:11162 days ago1710321011IN
0x09274438...A03eA3Eeb
0 ETH0.0032563987.52106472
Transfer194181682024-03-12 9:41:11163 days ago1710236471IN
0x09274438...A03eA3Eeb
0 ETH0.001710645.97540411
Transfer194109282024-03-11 9:22:11164 days ago1710148931IN
0x09274438...A03eA3Eeb
0 ETH0.0020181654.24161604
Transfer193825072024-03-07 9:50:11168 days ago1709805011IN
0x09274438...A03eA3Eeb
0 ETH0.0016296243.78467262
Transfer193825012024-03-07 9:48:59168 days ago1709804939IN
0x09274438...A03eA3Eeb
0 ETH0.002656648.91833073
Transfer193752732024-03-06 9:36:11169 days ago1709717771IN
0x09274438...A03eA3Eeb
0 ETH0.0022663260.91130446
Transfer193680772024-03-05 9:30:11170 days ago1709631011IN
0x09274438...A03eA3Eeb
0 ETH0.0023234762.46746747
Transfer193619092024-03-04 12:50:35171 days ago1709556635IN
0x09274438...A03eA3Eeb
0 ETH0.0024686266.34831976
Transfer193394632024-03-01 9:34:59174 days ago1709285699IN
0x09274438...A03eA3Eeb
0 ETH0.0014602939.24789357
Transfer193338002024-02-29 14:35:35175 days ago1709217335IN
0x09274438...A03eA3Eeb
0 ETH0.0031443984.51082597
Transfer193332022024-02-29 12:34:35175 days ago1709210075IN
0x09274438...A03eA3Eeb
0 ETH0.0047865988.13951498
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
166270012023-02-14 12:31:11555 days ago1676377871  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.