ETH Price: $1,584.88 (-1.26%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer222947582025-04-18 8:41:118 hrs ago1744965671IN
Fake_Phishing363319
0 ETH0.000034770.64000112
Transfer222876162025-04-17 8:47:3532 hrs ago1744879655IN
Fake_Phishing363319
0 ETH0.000048610.89475492
Transfer222813232025-04-16 11:41:352 days ago1744803695IN
Fake_Phishing363319
0 ETH0.000058731.08122333
Transfer222812952025-04-16 11:35:592 days ago1744803359IN
Fake_Phishing363319
0 ETH0.000018180.48847818
Transfer222812392025-04-16 11:24:352 days ago1744802675IN
Fake_Phishing363319
0 ETH0.000015720.4848878
Transfer222812302025-04-16 11:22:472 days ago1744802567IN
Fake_Phishing363319
0 ETH0.000017590.47256842
Transfer222802522025-04-16 8:06:232 days ago1744790783IN
Fake_Phishing363319
0 ETH0.000028090.51712623
Transfer222753862025-04-15 15:50:233 days ago1744732223IN
Fake_Phishing363319
0 ETH0.000118552.18200023
Transfer222743302025-04-15 12:17:353 days ago1744719455IN
Fake_Phishing363319
0 ETH0.000056411.03837477
Transfer222735672025-04-15 9:44:113 days ago1744710251IN
Fake_Phishing363319
0 ETH0.000046810.86175208
Transfer222465972025-04-11 15:28:357 days ago1744385315IN
Fake_Phishing363319
0 ETH0.000083042.23050467
Transfer222370902025-04-10 7:39:598 days ago1744270799IN
Fake_Phishing363319
0 ETH0.000154062.83567667
Transfer222370552025-04-10 7:32:598 days ago1744270379IN
Fake_Phishing363319
0 ETH0.000155292.85900422
Transfer222321082025-04-09 15:01:119 days ago1744210871IN
Fake_Phishing363319
0 ETH0.000077792.08940086
Transfer222245372025-04-08 13:38:5910 days ago1744119539IN
Fake_Phishing363319
0 ETH0.000112272.06653958
Transfer222245122025-04-08 13:33:5910 days ago1744119239IN
Fake_Phishing363319
0 ETH0.000103841.91136296
Transfer222162162025-04-07 9:45:3511 days ago1744019135IN
Fake_Phishing363319
0 ETH0.00017264.6375087
Transfer222158062025-04-07 8:22:5911 days ago1744014179IN
Fake_Phishing363319
0 ETH0.0008541915.72204345
Transfer222157612025-04-07 8:13:5911 days ago1744013639IN
Fake_Phishing363319
0 ETH0.0007747714.26034456
Transfer221962802025-04-04 14:53:5914 days ago1743778439IN
Fake_Phishing363319
0 ETH0.000071311.91607187
Transfer221961732025-04-04 14:32:3514 days ago1743777155IN
Fake_Phishing363319
0 ETH0.000048861.31341675
Transfer221958372025-04-04 13:25:2314 days ago1743773123IN
Fake_Phishing363319
0 ETH0.000040061.07650348
Transfer221957272025-04-04 13:03:2314 days ago1743771803IN
Fake_Phishing363319
0 ETH0.000049041.3178661
Transfer221954792025-04-04 12:13:3514 days ago1743768815IN
Fake_Phishing363319
0 ETH0.00005951.09526511
Transfer221895762025-04-03 16:27:4715 days ago1743697667IN
Fake_Phishing363319
0 ETH0.00003650.98081316
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x3d602d80177771542023-07-26 12:08:35632 days ago1690373315  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.