ETH Price: $2,073.47 (-3.51%)

Contract

0x314205A645e04C6dAB7B542e1d3Fd6b50170fBC2
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer103334492020-06-25 7:06:162100 days ago1593068776IN
0x314205A6...50170fBC2
0.3 ETH0.0009758242
Transfer102709682020-06-15 14:55:552110 days ago1592232955IN
0x314205A6...50170fBC2
0.2 ETH0.0010687646
Transfer101346932020-05-25 11:34:482131 days ago1590406488IN
0x314205A6...50170fBC2
1 ETH0.0008364236

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
-104451012020-07-12 13:50:022083 days ago1594561802
0x314205A6...50170fBC2
0.00741555 ETH
-103334552020-06-25 7:06:552100 days ago1593068815
0x314205A6...50170fBC2
0.3 ETH
-102713292020-06-15 16:13:112110 days ago1592237591
0x314205A6...50170fBC2
0.2 ETH
-101927732020-06-03 12:17:332122 days ago1591186653
0x314205A6...50170fBC2
0.2 ETH
-101889172020-06-02 21:42:492123 days ago1591134169
0x314205A6...50170fBC2
0.25 ETH
-101883822020-06-02 19:45:202123 days ago1591127120
0x314205A6...50170fBC2
0.3 ETH
-101883582020-06-02 19:40:462123 days ago1591126846
0x314205A6...50170fBC2
0.00006387 ETH
-101883582020-06-02 19:40:462123 days ago1591126846
0x314205A6...50170fBC2
0.00042584 ETH
-101883582020-06-02 19:40:462123 days ago1591126846
0x314205A6...50170fBC2
0.04294641 ETH
-101347092020-05-25 11:38:342131 days ago1590406714
0x314205A6...50170fBC2
0.2 ETH
-99694112020-04-29 19:41:502157 days ago1588189310
0x314205A6...50170fBC2
0.04668746 ETH
-99694022020-04-29 19:40:152157 days ago1588189215
0x314205A6...50170fBC2
0.00007013 ETH
-99694022020-04-29 19:40:152157 days ago1588189215
0x314205A6...50170fBC2
0.0467576 ETH
-99618002020-04-28 15:23:292158 days ago1588087409
0x314205A6...50170fBC2
0.10315344 ETH
-99617612020-04-28 15:15:522158 days ago1588086952
0x314205A6...50170fBC2
0.00015496 ETH
-99617612020-04-28 15:15:522158 days ago1588086952
0x314205A6...50170fBC2
0.1033084 ETH
-99477872020-04-26 11:15:112160 days ago1587899711
0x314205A6...50170fBC2
0.1026609 ETH
-99477782020-04-26 11:13:392160 days ago1587899619
0x314205A6...50170fBC2
0.00015422 ETH
-99477782020-04-26 11:13:392160 days ago1587899619
0x314205A6...50170fBC2
0.10281512 ETH
-98823352020-04-16 8:15:242170 days ago1587024924
0x314205A6...50170fBC2
0.09191115 ETH
-98823272020-04-16 8:13:262170 days ago1587024806
0x314205A6...50170fBC2
0.00013807 ETH
-98823272020-04-16 8:13:262170 days ago1587024806
0x314205A6...50170fBC2
0.09204922 ETH
-96836052020-03-16 16:14:162201 days ago1584375256
0x314205A6...50170fBC2
0.13993469 ETH
-96835962020-03-16 16:12:352201 days ago1584375155
0x314205A6...50170fBC2
0.00021021 ETH
-96835962020-03-16 16:12:352201 days ago1584375155
0x314205A6...50170fBC2
0.14014491 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
Proxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-04-23
*/

pragma solidity ^0.4.24;

/**
 * @title Proxy
 * @dev Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <julien@argent.xyz>
 */
contract Proxy {

    address implementation;

    event Received(uint indexed value, address indexed sender, bytes data);

    constructor(address _implementation) public {
        implementation = _implementation;
    }

    function() external payable {

        if(msg.data.length == 0 && msg.value > 0) { 
            emit Received(msg.value, msg.sender, msg.data); 
        }
        else {
            // solium-disable-next-line security/no-inline-assembly
            assembly {
                let target := sload(0)
                calldatacopy(0, 0, calldatasize())
                let result := delegatecall(gas, target, 0, calldatasize(), 0, 0)
                returndatacopy(0, 0, returndatasize())
                switch result 
                case 0 {revert(0, returndatasize())} 
                default {return (0, returndatasize())}
            }
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"name":"_implementation","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"value","type":"uint256"},{"indexed":true,"name":"sender","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"Received","type":"event"}]

0x608060405234801561001057600080fd5b50604051602080610127833981016040525160008054600160a060020a03909216600160a060020a031990921691909117905560d6806100516000396000f30060806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029000000000000000000000000b1dd690cc9af7bb1a906a9b5a94f94191cc553ce

Deployed Bytecode

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0x314205A645e04C6dAB7B542e1d3Fd6b50170fBC2
Loading...
Loading
Loading...
Loading
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.