ETH Price: $3,322.66 (-1.97%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer215150762024-12-30 11:45:2347 hrs ago1735559123IN
0x0CA6BbdF...1A298681B
0 ETH0.000244574.50065937
Transfer214695722024-12-24 3:12:478 days ago1735009967IN
0x0CA6BbdF...1A298681B
0 ETH0.00030198.10677154
Transfer213923942024-12-13 8:27:5919 days ago1734078479IN
0x0CA6BbdF...1A298681B
0 ETH0.0006074711.17640613
Transfer213772192024-12-11 5:35:5921 days ago1733895359IN
0x0CA6BbdF...1A298681B
0 ETH0.0004294111.52692443
Transfer213115762024-12-02 1:34:2330 days ago1733103263IN
0x0CA6BbdF...1A298681B
0 ETH0.0006495217.44102615
Transfer213075822024-12-01 12:12:5930 days ago1733055179IN
0x0CA6BbdF...1A298681B
0 ETH0.000497959.16343599
Transfer212973462024-11-30 1:54:4732 days ago1732931687IN
0x0CA6BbdF...1A298681B
0 ETH0.000306428.22549011
Transfer212973312024-11-30 1:51:4732 days ago1732931507IN
0x0CA6BbdF...1A298681B
0 ETH0.000462048.50271182
Transfer212909712024-11-29 4:28:3533 days ago1732854515IN
0x0CA6BbdF...1A298681B
0 ETH0.000294855.42489967
Transfer212908252024-11-29 3:59:1133 days ago1732852751IN
0x0CA6BbdF...1A298681B
0 ETH0.000198566.11845238
Transfer212795642024-11-27 14:03:3534 days ago1732716215IN
0x0CA6BbdF...1A298681B
0 ETH0.0009449317.38891471
Transfer212558662024-11-24 6:38:3538 days ago1732430315IN
0x0CA6BbdF...1A298681B
0 ETH0.000335559.01045099
Transfer212558332024-11-24 6:31:5938 days ago1732429919IN
0x0CA6BbdF...1A298681B
0 ETH0.000345849.2865902
Transfer212557422024-11-24 6:13:4738 days ago1732428827IN
0x0CA6BbdF...1A298681B
0 ETH0.000354299.5105432
Transfer212411232024-11-22 5:16:1140 days ago1732252571IN
0x0CA6BbdF...1A298681B
0 ETH0.0005474410.07207797
Transfer212403862024-11-22 2:48:2340 days ago1732243703IN
0x0CA6BbdF...1A298681B
0 ETH0.0003416611.52685586
Transfer212224452024-11-19 14:42:1142 days ago1732027331IN
0x0CA6BbdF...1A298681B
0 ETH0.0015775629.03081814
Transfer212224282024-11-19 14:38:4742 days ago1732027127IN
0x0CA6BbdF...1A298681B
0 ETH0.0012122.2668197
Transfer211848722024-11-14 8:54:3548 days ago1731574475IN
0x0CA6BbdF...1A298681B
0 ETH0.0018963838.26982107
Transfer211771092024-11-13 6:54:4749 days ago1731480887IN
0x0CA6BbdF...1A298681B
0 ETH0.0009962318.33299389
Transfer211344182024-11-07 7:55:3555 days ago1730966135IN
0x0CA6BbdF...1A298681B
0 ETH0.000475938.76018537
Transfer211323612024-11-07 1:02:2355 days ago1730941343IN
0x0CA6BbdF...1A298681B
0 ETH0.0009787718.01181273
Transfer211281052024-11-06 10:46:4756 days ago1730890007IN
0x0CA6BbdF...1A298681B
0 ETH0.0005301814.23666886
Transfer211274432024-11-06 8:33:1156 days ago1730881991IN
0x0CA6BbdF...1A298681B
0 ETH0.0014098825.9451545
Transfer211262062024-11-06 4:24:3556 days ago1730867075IN
0x0CA6BbdF...1A298681B
0 ETH0.0011283830.29950527
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
127007432021-06-25 2:52:361286 days ago1624589556  Contract Creation0 ETH
Loading...
Loading

Minimal Proxy Contract for 0x85351262f7474ebe23ffacd633cf20a491f1325d

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-01-24
*/

// 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;
    uint256 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,
        uint256 _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":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"_decimals","type":"uint256"}],"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.