ETH Price: $3,702.96 (+2.97%)

Contract

0xBf46b218fA7b5C23c686251406A374cDFe508bAC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer206201942024-08-27 13:22:5995 days ago1724764979IN
Fake_Phishing187700
0 ETH0.000050621.56048517
Transfer202904252024-07-12 12:29:23141 days ago1720787363IN
Fake_Phishing187700
0 ETH0.000117133.1462764
Transfer202904232024-07-12 12:28:59141 days ago1720787339IN
Fake_Phishing187700
0 ETH0.000123013.30527139
Transfer201963202024-06-29 9:02:35154 days ago1719651755IN
Fake_Phishing187700
0 ETH0.000058191.9639951
Transfer200850242024-06-13 19:36:59170 days ago1718307419IN
Fake_Phishing187700
0 ETH0.000749213.79274561
Transfer200824552024-06-13 10:58:47170 days ago1718276327IN
Fake_Phishing187700
0 ETH0.0004209411.30984643
Transfer200823982024-06-13 10:47:23170 days ago1718275643IN
Fake_Phishing187700
0 ETH0.0003800810.21221809
Transfer200823692024-06-13 10:41:35170 days ago1718275295IN
Fake_Phishing187700
0 ETH0.000535939.86855387
Transfer200315282024-06-06 8:14:59177 days ago1717661699IN
Fake_Phishing187700
0 ETH0.0008127214.96212572
Transfer199407482024-05-24 15:51:23190 days ago1716565883IN
Fake_Phishing187700
0 ETH0.0004720112.67791102
Transfer198830792024-05-16 14:17:35198 days ago1715869055IN
Fake_Phishing187700
0 ETH0.000313625.7738116
Transfer198740772024-05-15 8:06:47199 days ago1715760407IN
Fake_Phishing187700
0 ETH0.000482212.95172528
Transfer198603832024-05-13 10:05:11201 days ago1715594711IN
Fake_Phishing187700
0 ETH0.000175814.72233891
Transfer198261762024-05-08 15:16:47206 days ago1715181407IN
Fake_Phishing187700
0 ETH0.000365269.81388132
Transfer198254052024-05-08 12:40:59206 days ago1715172059IN
Fake_Phishing187700
0 ETH0.000290355.34532222
Transfer198239652024-05-08 7:50:47206 days ago1715154647IN
Fake_Phishing187700
0 ETH0.000193525.19784799
Transfer198171882024-05-07 9:07:11207 days ago1715072831IN
Fake_Phishing187700
0 ETH0.000370486.82058558
Transfer198157612024-05-07 4:18:23207 days ago1715055503IN
Fake_Phishing187700
0 ETH0.000151634.07401329
Transfer198157522024-05-07 4:16:23207 days ago1715055383IN
Fake_Phishing187700
0 ETH0.000218164.0163433
Transfer198156032024-05-07 3:46:35207 days ago1715053595IN
Fake_Phishing187700
0 ETH0.000215333.96428619
Transfer197894812024-05-03 12:06:35211 days ago1714737995IN
Fake_Phishing187700
0 ETH0.000232676.25356849
Transfer197691092024-04-30 15:46:11214 days ago1714491971IN
Fake_Phishing187700
0 ETH0.0006054416.26173284
Transfer197601392024-04-29 9:41:11215 days ago1714383671IN
Fake_Phishing187700
0 ETH0.000334938.99612431
Transfer197601342024-04-29 9:40:11215 days ago1714383611IN
Fake_Phishing187700
0 ETH0.000343679.23675789
Transfer197593742024-04-29 7:06:59215 days ago1714374419IN
Fake_Phishing187700
0 ETH0.000282937.6042198
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
182131882023-09-25 13:46:23432 days ago1695649583  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.