ETH Price: $2,272.44 (-4.68%)

Contract

0xD4841ab94f324Ae109B8a0adD95eD34580066881
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer169047852023-03-25 13:30:11531 days ago1679751011IN
0xD4841ab9...580066881
0 ETH0.0010735219.76327626
Transfer168966652023-03-24 10:08:11532 days ago1679652491IN
0xD4841ab9...580066881
0 ETH0.0009401117.30734726
Transfer168966622023-03-24 10:07:35532 days ago1679652455IN
0xD4841ab9...580066881
0 ETH0.0009708817.87762287
Transfer168893982023-03-23 9:37:47533 days ago1679564267IN
0xD4841ab9...580066881
0 ETH0.000706513.00658177
Transfer168848232023-03-22 18:10:35534 days ago1679508635IN
0xD4841ab9...580066881
0 ETH0.0020538737.81130174
Transfer168816822023-03-22 7:35:23534 days ago1679470523IN
0xD4841ab9...580066881
0 ETH0.0006531312.02398661
Transfer168778632023-03-21 18:43:59535 days ago1679424239IN
0xD4841ab9...580066881
0 ETH0.0011040420.32967841
Transfer168771022023-03-21 16:08:35535 days ago1679414915IN
0xD4841ab9...580066881
0 ETH0.0021895740.31849383
Transfer168575672023-03-18 22:18:47538 days ago1679177927IN
0xD4841ab9...580066881
0 ETH0.0007260313.36612949
Transfer168565332023-03-18 18:50:47538 days ago1679165447IN
0xD4841ab9...580066881
0 ETH0.0007661814.10524301
Transfer168473892023-03-17 11:59:11539 days ago1679054351IN
0xD4841ab9...580066881
0 ETH0.0013248224.38965149
Transfer168328192023-03-15 10:51:35541 days ago1678877495IN
0xD4841ab9...580066881
0 ETH0.0008053921.64632446
Transfer168327772023-03-15 10:42:47541 days ago1678876967IN
0xD4841ab9...580066881
0 ETH0.0010342619.04477913
Transfer168327602023-03-15 10:39:11541 days ago1678876751IN
0xD4841ab9...580066881
0 ETH0.0010329219.02017616
Transfer168316822023-03-15 7:00:23541 days ago1678863623IN
0xD4841ab9...580066881
0 ETH0.0011501421.17390065
Transfer168282072023-03-14 19:15:35542 days ago1678821335IN
0xD4841ab9...580066881
0 ETH0.0034867964.19114518
Transfer168278032023-03-14 17:53:35542 days ago1678816415IN
0xD4841ab9...580066881
0 ETH0.0015012927.63855511
Transfer168274522023-03-14 16:42:47542 days ago1678812167IN
0xD4841ab9...580066881
0 ETH0.0021269639.1569672
Transfer168272762023-03-14 16:07:35542 days ago1678810055IN
0xD4841ab9...580066881
0 ETH0.0029372754.07453828
Transfer168265712023-03-14 13:45:23542 days ago1678801523IN
0xD4841ab9...580066881
0 ETH0.0026716249.19488475
Transfer168261422023-03-14 12:19:23542 days ago1678796363IN
0xD4841ab9...580066881
0 ETH0.0013192524.28709374
Transfer168260162023-03-14 11:53:59542 days ago1678794839IN
0xD4841ab9...580066881
0 ETH0.0011510721.19102631
Transfer168255242023-03-14 10:14:35542 days ago1678788875IN
0xD4841ab9...580066881
0 ETH0.0009331517.18300971
Transfer168254492023-03-14 9:59:35542 days ago1678787975IN
0xD4841ab9...580066881
0 ETH0.0009144716.83521916
Transfer168251982023-03-14 9:08:59542 days ago1678784939IN
0xD4841ab9...580066881
0 ETH0.0014434326.573334
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
167555212023-03-04 13:58:11552 days ago1677938291  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.