ETH Price: $3,414.38 (+3.09%)

Contract

0xD3f38425194990CDeAcC82C6b15A463cD1351939
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer211705512024-11-12 8:57:1111 days ago1731401831IN
Fake_Phishing187463
0 ETH0.0010169627.32371383
Transfer209789712024-10-16 15:18:2338 days ago1729091903IN
Fake_Phishing187463
0 ETH0.0010575119.46438173
Transfer209789092024-10-16 15:05:5938 days ago1729091159IN
Fake_Phishing187463
0 ETH0.0005677619.16119993
Transfer209342952024-10-10 9:24:3544 days ago1728552275IN
Fake_Phishing187463
0 ETH0.000594110.93728327
Transfer209004082024-10-05 16:03:5949 days ago1728144239IN
Fake_Phishing187463
0 ETH0.000276247.41968589
Transfer208989682024-10-05 11:14:4749 days ago1728126887IN
Fake_Phishing187463
0 ETH0.000263497.07740942
Transfer208922052024-10-04 12:37:3550 days ago1728045455IN
Fake_Phishing187463
0 ETH0.000371356.83660904
Transfer208909482024-10-04 8:25:3550 days ago1728030335IN
Fake_Phishing187463
0 ETH0.000183184.92177807
Transfer208852522024-10-03 13:21:1151 days ago1727961671IN
Fake_Phishing187463
0 ETH0.0005594710.29984798
Transfer208850572024-10-03 12:41:5951 days ago1727959319IN
Fake_Phishing187463
0 ETH0.000394537.26327247
Transfer208840052024-10-03 9:10:4751 days ago1727946647IN
Fake_Phishing187463
0 ETH0.0005591810.29211033
Transfer208410652024-09-27 9:28:4757 days ago1727429327IN
Fake_Phishing187463
0 ETH0.0008629815.88731791
Transfer207904602024-09-20 7:58:5964 days ago1726819139IN
Fake_Phishing187463
0 ETH0.000826515.21569488
Transfer207903992024-09-20 7:46:4764 days ago1726818407IN
Fake_Phishing187463
0 ETH0.0003445210.6233723
Transfer207903052024-09-20 7:27:3564 days ago1726817255IN
Fake_Phishing187463
0 ETH0.00054099.95789237
Transfer207783622024-09-18 15:26:1166 days ago1726673171IN
Fake_Phishing187463
0 ETH0.0007149213.16158116
Transfer207621152024-09-16 8:52:3568 days ago1726476755IN
Fake_Phishing187463
0 ETH0.000845615.56389628
Transfer205187612024-08-13 9:18:59102 days ago1723540739IN
Fake_Phishing187463
0 ETH0.000049391.52302247
Transfer205136912024-08-12 16:21:23103 days ago1723479683IN
Fake_Phishing187463
0 ETH0.000261027.01104158
Transfer204919192024-08-09 15:24:23106 days ago1723217063IN
Fake_Phishing187463
0 ETH0.000222445.97283892
Transfer204918072024-08-09 15:01:47106 days ago1723215707IN
Fake_Phishing187463
0 ETH0.000500859.21849423
Transfer204914322024-08-09 13:46:11106 days ago1723211171IN
Fake_Phishing187463
0 ETH0.000493329.08007654
Transfer204792592024-08-07 21:02:47108 days ago1723064567IN
Fake_Phishing187463
0 ETH0.000258754.76262951
Transfer204766022024-08-07 12:09:35108 days ago1723032575IN
Fake_Phishing187463
0 ETH0.000106961.9692098
Transfer204614802024-08-05 9:30:23110 days ago1722850223IN
Fake_Phishing187463
0 ETH0.0008676815.97041945
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block From To
181407952023-09-15 9:41:23435 days ago1694770883  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.