ETH Price: $3,401.54 (+2.01%)

Contract

0x62003030F45b8BCd272d54AB8F782C1aE894eAf6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer215017652024-12-28 15:09:3519 hrs ago1735398575IN
Fake_Phishing186362
0 ETH0.000240956.47390802
Transfer215017612024-12-28 15:08:4719 hrs ago1735398527IN
Fake_Phishing186362
0 ETH0.000254116.82743458
Transfer215017582024-12-28 15:08:1119 hrs ago1735398491IN
Fake_Phishing186362
0 ETH0.000256886.90187077
Transfer215017532024-12-28 15:07:1119 hrs ago1735398431IN
Fake_Phishing186362
0 ETH0.000229016.15327714
Transfer215017512024-12-28 15:06:4719 hrs ago1735398407IN
Fake_Phishing186362
0 ETH0.000239346.43071278
Transfer215017462024-12-28 15:05:4719 hrs ago1735398347IN
Fake_Phishing186362
0 ETH0.000240476.46102
Transfer215015312024-12-28 14:22:4720 hrs ago1735395767IN
Fake_Phishing186362
0 ETH0.00024756.64983356
Transfer215015172024-12-28 14:19:5920 hrs ago1735395599IN
Fake_Phishing186362
0 ETH0.000267587.19173637
Transfer215004022024-12-28 10:35:3523 hrs ago1735382135IN
Fake_Phishing186362
0 ETH0.00017394.6740226
Transfer215002252024-12-28 9:59:5924 hrs ago1735379999IN
Fake_Phishing186362
0 ETH0.000172864.64445008
Transfer214944012024-12-27 14:29:5944 hrs ago1735309799IN
Fake_Phishing186362
0 ETH0.000279567.51365235
Transfer214943982024-12-27 14:29:2344 hrs ago1735309763IN
Fake_Phishing186362
0 ETH0.000280717.54463527
Transfer214937162024-12-27 12:12:3546 hrs ago1735301555IN
Fake_Phishing186362
0 ETH0.000260967.01613538
Transfer214929582024-12-27 9:40:232 days ago1735292423IN
Fake_Phishing186362
0 ETH0.000201585.41266309
Transfer214927542024-12-27 8:59:112 days ago1735289951IN
Fake_Phishing186362
0 ETH0.00019775.31354296
Transfer214877782024-12-26 16:17:112 days ago1735229831IN
Fake_Phishing186362
0 ETH0.000321788.6456926
Transfer214875292024-12-26 15:27:112 days ago1735226831IN
Fake_Phishing186362
0 ETH0.000326368.76884093
Transfer214875202024-12-26 15:25:232 days ago1735226723IN
Fake_Phishing186362
0 ETH0.000314718.45574871
Transfer214875152024-12-26 15:24:232 days ago1735226663IN
Fake_Phishing186362
0 ETH0.000308418.28651467
Transfer214875122024-12-26 15:23:472 days ago1735226627IN
Fake_Phishing186362
0 ETH0.000286797.70567531
Transfer214875102024-12-26 15:23:232 days ago1735226603IN
Fake_Phishing186362
0 ETH0.000307118.25155371
Transfer214875082024-12-26 15:22:592 days ago1735226579IN
Fake_Phishing186362
0 ETH0.000305018.19506012
Transfer214875052024-12-26 15:22:232 days ago1735226543IN
Fake_Phishing186362
0 ETH0.000318578.56213163
Transfer214875022024-12-26 15:21:472 days ago1735226507IN
Fake_Phishing186362
0 ETH0.000331378.90339314
Transfer214870692024-12-26 13:54:472 days ago1735221287IN
Fake_Phishing186362
0 ETH0.00038697.12284026
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
179212722023-08-15 15:56:23501 days ago1692114983  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.