ETH Price: $1,992.83 (+0.08%)

Contract

0x2d5feaaed6b946ccD7d2bA61E4483B1D00AfA08F
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer109082952020-09-21 21:28:422014 days ago1600723722IN
0x2d5feaae...D00AfA08F
1.493 ETH0.00281131121
Transfer95602802020-02-26 16:39:402222 days ago1582735180IN
0x2d5feaae...D00AfA08F
0.00898836 ETH0.0002323410

Latest 16 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer198574872024-05-13 0:21:59684 days ago1715559719
0x2d5feaae...D00AfA08F
0.00035853 ETH
Transfer198574872024-05-13 0:21:59684 days ago1715559719
0x2d5feaae...D00AfA08F
1.26 ETH
Transfer198574662024-05-13 0:17:47684 days ago1715559467
0x2d5feaae...D00AfA08F
0.00176457 ETH
Transfer198574662024-05-13 0:17:47684 days ago1715559467
0x2d5feaae...D00AfA08F
0.00459112 ETH
Transfer198574662024-05-13 0:17:47684 days ago1715559467
0x2d5feaae...D00AfA08F
0.92283901 ETH
-136397822021-11-18 14:11:191591 days ago1637244679
0x2d5feaae...D00AfA08F
0.0429668 ETH
-120678602021-03-19 7:31:451835 days ago1616139105
0x2d5feaae...D00AfA08F
0.01659095 ETH
-120678602021-03-19 7:31:451835 days ago1616139105
0x2d5feaae...D00AfA08F
0.5 ETH
-110108682020-10-07 21:05:341998 days ago1602104734
0x2d5feaae...D00AfA08F
0.01755 ETH
-109892392020-10-04 12:00:272001 days ago1601812827
0x2d5feaae...D00AfA08F
0.512 ETH
-109141482020-09-22 19:22:482013 days ago1600802568
0x2d5feaae...D00AfA08F
0.012 ETH
-109105532020-09-22 5:56:132013 days ago1600754173
0x2d5feaae...D00AfA08F
0.01165718 ETH
-109104162020-09-22 5:27:122013 days ago1600752432
0x2d5feaae...D00AfA08F
0.02503537 ETH
-109103942020-09-22 5:24:092013 days ago1600752249
0x2d5feaae...D00AfA08F
0.02503683 ETH
-109103912020-09-22 5:23:262013 days ago1600752206
0x2d5feaae...D00AfA08F
0.01021232 ETH
-85230172019-09-10 15:56:412391 days ago1568131001  Contract Creation0 ETH
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
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.