ETH Price: $3,481.18 (+0.30%)

Contract

0xB5D63103Fe80b11ACE1B710Ae757532e83FFbC20
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer214783762024-12-25 8:44:4716 hrs ago1735116287IN
Fake_Phishing460619
0 ETH0.00010443.52344473
Transfer214718702024-12-24 10:56:1138 hrs ago1735037771IN
Fake_Phishing460619
0 ETH0.000381177.01579431
Transfer214716222024-12-24 10:05:4739 hrs ago1735034747IN
Fake_Phishing460619
0 ETH0.000361936.66167283
Transfer214374992024-12-19 15:35:596 days ago1734622559IN
Fake_Phishing460619
0 ETH0.0011154829.96109957
Transfer214373162024-12-19 14:58:596 days ago1734620339IN
Fake_Phishing460619
0 ETH0.000693421.38875286
Transfer214367632024-12-19 13:08:116 days ago1734613691IN
Fake_Phishing460619
0 ETH0.0006833312.5772686
Transfer214363892024-12-19 11:52:476 days ago1734609167IN
Fake_Phishing460619
0 ETH0.0007739515.62565585
Transfer214307882024-12-18 17:04:477 days ago1734541487IN
Fake_Phishing460619
0 ETH0.0011223834.62130946
Transfer214307552024-12-18 16:58:117 days ago1734541091IN
Fake_Phishing460619
0 ETH0.000912724.52265509
Transfer214233012024-12-17 15:58:118 days ago1734451091IN
Fake_Phishing460619
0 ETH0.0017833547.91525893
Transfer214231202024-12-17 15:21:598 days ago1734448919IN
Fake_Phishing460619
0 ETH0.0025927947.72217243
Transfer214228402024-12-17 14:25:358 days ago1734445535IN
Fake_Phishing460619
0 ETH0.0014731339.5801418
Transfer214222752024-12-17 12:31:598 days ago1734438719IN
Fake_Phishing460619
0 ETH0.0004558612.24434288
Transfer214165442024-12-16 17:22:119 days ago1734369731IN
Fake_Phishing460619
0 ETH0.0017194331.65444763
Transfer214164182024-12-16 16:56:599 days ago1734368219IN
Fake_Phishing460619
0 ETH0.00192135.36533839
Transfer214149412024-12-16 12:00:479 days ago1734350447IN
Fake_Phishing460619
0 ETH0.000830815.29489286
Transfer213948342024-12-13 16:38:2312 days ago1734107903IN
Fake_Phishing460619
0 ETH0.0016181729.78357056
Transfer213942682024-12-13 14:44:1112 days ago1734101051IN
Fake_Phishing460619
0 ETH0.000595418.36590304
Transfer213926822024-12-13 9:25:5912 days ago1734081959IN
Fake_Phishing460619
0 ETH0.0004406613.58787774
Transfer213865362024-12-12 12:50:5913 days ago1734007859IN
Fake_Phishing460619
0 ETH0.0010493619.31438442
Transfer213848352024-12-12 7:08:5913 days ago1733987339IN
Fake_Phishing460619
0 ETH0.0008543617.24912089
Transfer213794562024-12-11 13:07:1114 days ago1733922431IN
Fake_Phishing460619
0 ETH0.0006737518.09651558
Transfer213718292024-12-10 11:32:5915 days ago1733830379IN
Fake_Phishing460619
0 ETH0.0007477413.76588263
Transfer213662662024-12-09 16:53:4716 days ago1733763227IN
Fake_Phishing460619
0 ETH0.0012217837.67337628
Transfer213660872024-12-09 16:17:5916 days ago1733761079IN
Fake_Phishing460619
0 ETH0.0010858733.49502733
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
203111572024-07-15 9:56:35163 days ago1721037395  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.