ETH Price: $2,512.85 (+0.51%)

Contract

0x10702a0490D8978A5D0f5766Dd13602Cf6882E0E
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer198056022024-05-05 18:12:47180 days ago1714932767IN
0x10702a04...Cf6882E0E
0 ETH0.0006396214.70741692
Transfer197748532024-05-01 11:02:47184 days ago1714561367IN
0x10702a04...Cf6882E0E
0 ETH0.000391199
Transfer196680012024-04-16 12:20:11199 days ago1713270011IN
0x10702a04...Cf6882E0E
0 ETH0.0004811911.06756864
Transfer196318372024-04-11 10:38:47204 days ago1712831927IN
0x10702a04...Cf6882E0E
0 ETH0.0008500917.61269169
Transfer196286122024-04-10 23:48:23205 days ago1712792903IN
0x10702a04...Cf6882E0E
0 ETH0.0004984318.1790725
Transfer196188582024-04-09 15:04:11206 days ago1712675051IN
0x10702a04...Cf6882E0E
0 ETH0.0023406248.49436869
Transfer196184282024-04-09 13:37:35206 days ago1712669855IN
0x10702a04...Cf6882E0E
0 ETH0.0015783132.7002905
Transfer196096392024-04-08 8:03:47207 days ago1712563427IN
0x10702a04...Cf6882E0E
0 ETH0.0009256314.15818578
Transfer195895632024-04-05 12:33:23210 days ago1712320403IN
0x10702a04...Cf6882E0E
0 ETH0.0011711917.91427502
Transfer195820472024-04-04 11:16:47211 days ago1712229407IN
0x10702a04...Cf6882E0E
0 ETH0.0009840920.38393089
Transfer195810202024-04-04 7:50:11211 days ago1712217011IN
0x10702a04...Cf6882E0E
0 ETH0.0011356817.37427795
Transfer195753382024-04-03 12:47:35212 days ago1712148455IN
0x10702a04...Cf6882E0E
0 ETH0.0016609125.40016058
Transfer192833582024-02-22 13:10:47253 days ago1708607447IN
0x10702a04...Cf6882E0E
0 ETH0.0016066836.94381635
Transfer192833272024-02-22 13:04:23253 days ago1708607063IN
0x10702a04...Cf6882E0E
0 ETH0.002357736.05605924
Transfer191496962024-02-03 18:46:11272 days ago1706985971IN
0x10702a04...Cf6882E0E
0 ETH0.0010906616.68862985
Transfer191496662024-02-03 18:40:11272 days ago1706985611IN
0x10702a04...Cf6882E0E
0 ETH0.0006728116.54498091
Transfer190900352024-01-26 9:58:59280 days ago1706263139IN
0x10702a04...Cf6882E0E
0 ETH0.0014343221.93486684
Transfer190848662024-01-25 16:36:59281 days ago1706200619IN
0x10702a04...Cf6882E0E
0 ETH0.0025028738.29012522
Transfer190704212024-01-23 16:00:35283 days ago1706025635IN
0x10702a04...Cf6882E0E
0 ETH0.001696825.9584912
Transfer190564552024-01-21 16:32:47285 days ago1705854767IN
0x10702a04...Cf6882E0E
0 ETH0.0009944916.41353817
Transfer190402352024-01-19 10:13:47287 days ago1705659227IN
0x10702a04...Cf6882E0E
0 ETH0.0009952622.88490326
Transfer190343512024-01-18 14:30:11288 days ago1705588211IN
0x10702a04...Cf6882E0E
0 ETH0.001430929.6388008
Transfer190342632024-01-18 14:12:35288 days ago1705587155IN
0x10702a04...Cf6882E0E
0 ETH0.0016325933.81659953
Transfer190269162024-01-17 13:30:23289 days ago1705498223IN
0x10702a04...Cf6882E0E
0 ETH0.0024375437.27709672
Transfer189705662024-01-09 16:22:11297 days ago1704817331IN
0x10702a04...Cf6882E0E
0 ETH0.001247925.84188241
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2697c365...9750aED91
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-10-11
*/

// The MIT License (MIT)
// Copyright (c) 2016-2019 zOS Global Limited
// Copyright (c) 2019-2021 ABC Hosting Ltd.

pragma solidity ^0.4.18;

contract EternalStorage {
    mapping(bytes32 => uint256) internal uintStorage;
    mapping(bytes32 => string) internal stringStorage;
    mapping(bytes32 => address) internal addressStorage;
    mapping(bytes32 => bytes) internal bytesStorage;
    mapping(bytes32 => bool) internal boolStorage;
    mapping(bytes32 => int256) internal intStorage;
}

contract UpgradeabilityStorage {
    string internal _version;
    address internal _implementation;

    function version() public view returns (string) {
        return _version;
    }

    function implementation() public view returns (address) {
        return _implementation;
    }
}

contract TokenImplAddress is EternalStorage, UpgradeabilityStorage {}

contract Proxy {
    TokenImplAddress implAddress;

    function getImplementation() public view returns (address) {
        return implAddress.implementation();
    }

    function () payable public {
        address _impl = getImplementation();
        require(_impl != address(0));

        assembly {
            let ptr := mload(0x40)
            calldatacopy(ptr, 0, calldatasize)
            let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
            let size := returndatasize
            returndatacopy(ptr, 0, size)

            switch result
            case 0 { revert(ptr, size) }
            default { return(ptr, size) }
        }
    }
}

library SafeMath {}

contract Token is EternalStorage, Proxy {
    using SafeMath for uint256;

    function Token(address impl) public {
        implAddress = TokenImplAddress(impl);
        addressStorage[keccak256("owner")] = msg.sender;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"getImplementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"impl","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x606060405260043610610041576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063aaf10f42146100b0575b600061004b610105565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561008957600080fd5b60405136600082376000803683855af43d806000843e81600081146100ac578184f35b8184fd5b34156100bb57600080fd5b6100c3610105565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c60da1b6000604051602001526040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b151561019557600080fd5b6102c65a03f115156101a657600080fd5b505050604051805190509050905600a165627a7a72305820ff62879c7f3d145ded5228c935b3c5df9cc3dbd39561a07ea0db0d6dd95d3aa00029

Deployed Bytecode Sourcemap

1605:234:0:-;;;;;;;;;;;;;;;;;;;;;1103:13;1119:19;:17;:19::i;:::-;1103:35;;1174:1;1157:19;;:5;:19;;;;1149:28;;;;;;;;1231:4;1225:5;1271:12;1268:1;1263:3;1250:12;1359:1;1356;1342:12;1337:3;1330:5;1325:3;1312:12;1387:14;1438:4;1435:1;1430:3;1415:14;1466:6;1491:1;1486:28;;;;1550:4;1545:3;1538:6;1486:28;1507:4;1502:3;1495:6;944:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;994:7;1021:11;;;;;;;;;;;:26;;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1014:35;;944:113;:::o

Swarm Source

bzzr://ff62879c7f3d145ded5228c935b3c5df9cc3dbd39561a07ea0db0d6dd95d3aa0

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  ]

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.