ETH Price: $2,136.37 (+2.60%)

Contract

0xd6FB07c7AA3D28D31C2E07e8aED6dc1b21dbde0C
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve220776212025-03-19 1:24:59369 days ago1742347499IN
0xd6FB07c7...b21dbde0C
0 ETH0.00002550.9538258
Transfer211965462024-11-16 0:02:59492 days ago1731715379IN
0xd6FB07c7...b21dbde0C
0 ETH0.0010920.06675844
Approve211456652024-11-08 21:39:23499 days ago1731101963IN
0xd6FB07c7...b21dbde0C
0 ETH0.0003747914.01734387
Approve207964982024-09-21 4:13:47548 days ago1726892027IN
0xd6FB07c7...b21dbde0C
0 ETH0.0002863110.71288141
Approve207964822024-09-21 4:10:35548 days ago1726891835IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007353315
Approve207964722024-09-21 4:08:35548 days ago1726891715IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006180112.60685988
Approve207964712024-09-21 4:08:23548 days ago1726891703IN
0xd6FB07c7...b21dbde0C
0 ETH0.0008073116.47246652
Approve207964662024-09-21 4:07:23548 days ago1726891643IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007243614.85633022
Approve207964622024-09-21 4:06:35548 days ago1726891595IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006198212.64388933
Approve207964612024-09-21 4:06:23548 days ago1726891583IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007833715.98003564
Approve207964612024-09-21 4:06:23548 days ago1726891583IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007833715.98003564
Approve207964602024-09-21 4:06:11548 days ago1726891571IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006429113.17928676
Approve207964602024-09-21 4:06:11548 days ago1726891571IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007929416.17928676
Approve207964592024-09-21 4:05:59548 days ago1726891559IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007450115.21608855
Approve207964592024-09-21 4:05:59548 days ago1726891559IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007974316.2669732
Approve207964572024-09-21 4:05:35548 days ago1726891535IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006726313.721035
Approve207964562024-09-21 4:05:23548 days ago1726891523IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006232912.71464493
Approve207964562024-09-21 4:05:23548 days ago1726891523IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006232912.71464493
Approve207964562024-09-21 4:05:23548 days ago1726891523IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006962614.280035
Approve207964562024-09-21 4:05:23548 days ago1726891523IN
0xd6FB07c7...b21dbde0C
0 ETH0.0006962614.280035
Approve207964562024-09-21 4:05:23548 days ago1726891523IN
0xd6FB07c7...b21dbde0C
0 ETH0.0008196416.720035
Approve207964542024-09-21 4:04:59548 days ago1726891499IN
0xd6FB07c7...b21dbde0C
0 ETH0.0005825611.88673631
Approve207964532024-09-21 4:04:47548 days ago1726891487IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007333714.96014395
Approve207964532024-09-21 4:04:47548 days ago1726891487IN
0xd6FB07c7...b21dbde0C
0 ETH0.0008314216.96014395
Approve207964522024-09-21 4:04:35548 days ago1726891475IN
0xd6FB07c7...b21dbde0C
0 ETH0.0007391215.07732327
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x3d602d80207962802024-09-21 3:29:47548 days ago1726889387  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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

Contract Source Code (Solidity)

/**
 *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

API
[{"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 Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.