ETH Price: $3,379.60 (+1.03%)

Contract

0xC9C197a4b2b69Cc73cc3AD52f498Fc1192bf61c0
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute Whitelis...80472452019-06-28 15:59:422010 days ago1561737582IN
0xC9C197a4...192bf61c0
0 ETH0.0009025511
Execute Whitelis...80472042019-06-28 15:52:132010 days ago1561737133IN
0xC9C197a4...192bf61c0
0 ETH0.0017452211
Execute Whitelis...80471582019-06-28 15:41:592010 days ago1561736519IN
0xC9C197a4...192bf61c0
0 ETH0.0014487511
Execute Whitelis...80461202019-06-28 11:40:562010 days ago1561722056IN
0xC9C197a4...192bf61c0
0 ETH0.000774211
Execute Whitelis...80461202019-06-28 11:40:562010 days ago1561722056IN
0xC9C197a4...192bf61c0
0 ETH0.0009025511
Execute Whitelis...80455502019-06-28 9:31:212010 days ago1561714281IN
0xC9C197a4...192bf61c0
0 ETH0.0022020812
Execute Whitelis...80455502019-06-28 9:31:212010 days ago1561714281IN
0xC9C197a4...192bf61c0
0 ETH0.0019679511.24984848
Execute Whitelis...80455032019-06-28 9:18:062010 days ago1561713486IN
0xC9C197a4...192bf61c0
0 ETH0.0014474511
Execute Whitelis...80440932019-06-28 4:00:212010 days ago1561694421IN
0xC9C197a4...192bf61c0
0 ETH0.0007761311
Execute Whitelis...80440912019-06-28 3:59:342010 days ago1561694374IN
0xC9C197a4...192bf61c0
0 ETH0.0009025511
Execute Whitelis...80439032019-06-28 3:15:182010 days ago1561691718IN
0xC9C197a4...192bf61c0
0 ETH0.001988111
Execute Whitelis...80439032019-06-28 3:15:182010 days ago1561691718IN
0xC9C197a4...192bf61c0
0 ETH0.0019545211
Execute Whitelis...80437802019-06-28 2:48:112010 days ago1561690091IN
0xC9C197a4...192bf61c0
0 ETH0.0017606212
Execute Whitelis...80430412019-06-28 0:00:222010 days ago1561680022IN
0xC9C197a4...192bf61c0
0 ETH0.000422296
Execute Whitelis...80430402019-06-28 0:00:152010 days ago1561680015IN
0xC9C197a4...192bf61c0
0 ETH0.00049236
Execute Whitelis...80421572019-06-27 20:44:492010 days ago1561668289IN
0xC9C197a4...192bf61c0
0 ETH0.001468058
Execute Whitelis...80421552019-06-27 20:43:422010 days ago1561668222IN
0xC9C197a4...192bf61c0
0 ETH0.001399458
Execute Whitelis...80421282019-06-27 20:37:572010 days ago1561667877IN
0xC9C197a4...192bf61c0
0 ETH0.001052698
Execute Whitelis...80409242019-06-27 16:00:042011 days ago1561651204IN
0xC9C197a4...192bf61c0
0 ETH0.0009025511
Execute Whitelis...80405312019-06-27 14:33:562011 days ago1561646036IN
0xC9C197a4...192bf61c0
0 ETH0.0036701420
Execute Whitelis...80405282019-06-27 14:32:482011 days ago1561645968IN
0xC9C197a4...192bf61c0
0 ETH0.0034986420
Execute Whitelis...80388032019-06-27 8:00:592011 days ago1561622459IN
0xC9C197a4...192bf61c0
0 ETH0.0014098820
Execute Whitelis...80388032019-06-27 8:00:592011 days ago1561622459IN
0xC9C197a4...192bf61c0
0 ETH0.0016384420
Execute Whitelis...80387992019-06-27 7:59:232011 days ago1561622363IN
0xC9C197a4...192bf61c0
0 ETH0.0036694620
Execute Whitelis...80387992019-06-27 7:59:232011 days ago1561622363IN
0xC9C197a4...192bf61c0
0 ETH0.0028979620
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
74952942019-04-03 12:27:452096 days ago1554294465  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.5.0+commit.1d4f565a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2019-04-03
*/

pragma solidity ^0.5.0;

contract Proxy {

    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    address masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }

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

    function proxyType()
        public
        pure
        returns (uint256)
    {
        return 2;
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"proxyType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_masterCopy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634555d5c91461008b5780635c60da1b146100b6575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415610086573d6000fd5b3d6000f35b34801561009757600080fd5b506100a061010d565b6040518082815260200191505060405180910390f35b3480156100c257600080fd5b506100cb610116565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60006002905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690509056fea165627a7a72305820551643afa6ad5a0e661514e9196f5d113ecc9db4f5bb40ac121ef75261819edb0029

Swarm Source

bzzr://551643afa6ad5a0e661514e9196f5d113ecc9db4f5bb40ac121ef75261819edb

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.