ETH Price: $1,938.60 (+2.13%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer220664232025-03-17 11:49:5942 hrs ago1742212199IN
Fake_Phishing183466
0 ETH0.000027750.51086892
Transfer220438532025-03-14 8:14:354 days ago1741940075IN
Fake_Phishing183466
0 ETH0.000030740.56586618
Transfer219885952025-03-06 14:58:2312 days ago1741273103IN
Fake_Phishing183466
0 ETH0.000075761.39449153
Transfer219869312025-03-06 9:23:4712 days ago1741253027IN
Fake_Phishing183466
0 ETH0.000043460.7999775
Transfer219319742025-02-26 17:23:1120 days ago1740590591IN
Fake_Phishing183466
0 ETH0.000056421.13924054
Transfer219315312025-02-26 15:53:5920 days ago1740585239IN
Fake_Phishing183466
0 ETH0.000067281.23837418
Transfer219245952025-02-25 16:40:1121 days ago1740501611IN
Fake_Phishing183466
0 ETH0.000221564.07806388
Transfer218873872025-02-20 11:51:2326 days ago1740052283IN
Fake_Phishing183466
0 ETH0.00004820.88724078
Transfer218870902025-02-20 10:51:2326 days ago1740048683IN
Fake_Phishing183466
0 ETH0.000037060.74844808
Transfer218746572025-02-18 17:09:2328 days ago1739898563IN
Fake_Phishing183466
0 ETH0.000284835.24263513
Transfer218742762025-02-18 15:52:4728 days ago1739893967IN
Fake_Phishing183466
0 ETH0.000123782.49919837
Transfer218677232025-02-17 17:55:3529 days ago1739814935IN
Fake_Phishing183466
0 ETH0.00027475.0561916
Transfer218459442025-02-14 16:38:5932 days ago1739551139IN
Fake_Phishing183466
0 ETH0.000075591.391351
Transfer218447702025-02-14 12:42:2332 days ago1739536943IN
Fake_Phishing183466
0 ETH0.000071981.32497395
Transfer217718732025-02-04 8:13:5942 days ago1738656839IN
Fake_Phishing183466
0 ETH0.000112332.26910086
Transfer216862812025-01-23 9:25:3554 days ago1737624335IN
Fake_Phishing183466
0 ETH0.000305485.62264203
Transfer216721522025-01-21 10:05:1156 days ago1737453911IN
Fake_Phishing183466
0 ETH0.0007585213.96420007
Transfer216166932025-01-13 16:15:3564 days ago1736784935IN
Fake_Phishing183466
0 ETH0.0005991612.09977939
Transfer216166112025-01-13 15:59:1164 days ago1736783951IN
Fake_Phishing183466
0 ETH0.0006242412.60607546
Transfer215860012025-01-09 9:22:3568 days ago1736414555IN
Fake_Phishing183466
0 ETH0.000251264.62469026
Transfer215809772025-01-08 16:33:3569 days ago1736354015IN
Fake_Phishing183466
0 ETH0.0005695610.48559926
Transfer215677712025-01-06 20:20:4771 days ago1736194847IN
Fake_Phishing183466
0 ETH0.0009824418.08663691
Transfer214288002024-12-18 10:24:1190 days ago1734517451IN
Fake_Phishing183466
0 ETH0.0009426117.34951472
Transfer213804392024-12-11 16:24:4797 days ago1733934287IN
Fake_Phishing183466
0 ETH0.0015624228.75751708
Transfer213804112024-12-11 16:19:1197 days ago1733933951IN
Fake_Phishing183466
0 ETH0.0009065532.41168754
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x3d602d80176285432023-07-05 15:22:35622 days ago1688570555  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

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 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.