ETH Price: $3,103.65 (+1.07%)
Gas: 7 Gwei

Contract

0x306A20056b86b0013aA457e2c08b0Da5EAF3a958
 
Transaction Hash
Method
Block
From
To
Value
Transfer154179642022-08-26 22:22:24683 days ago1661552544IN
0x306A2005...5EAF3a958
0.00364872 ETH0.0002664411.44730189
Transfer148847882022-06-01 12:28:55769 days ago1654086535IN
0x306A2005...5EAF3a958
0.120476 ETH0.0010566945.39849355
Transfer120012942021-03-09 1:11:301219 days ago1615252290IN
0x306A2005...5EAF3a958
0.9938821 ETH0.00626124269
Transfer119352902021-02-26 21:30:451229 days ago1614375045IN
0x306A2005...5EAF3a958
0.06713705 ETH0.00286294123
Transfer101194342020-05-23 2:37:521509 days ago1590201472IN
0x306A2005...5EAF3a958
1 ETH0.0008230335.36

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
198652702024-05-14 2:28:2357 days ago1715653703
0x306A2005...5EAF3a958
0.00238157 ETH
198652702024-05-14 2:28:2357 days ago1715653703
0x306A2005...5EAF3a958
0.01132184 ETH
198652702024-05-14 2:28:2357 days ago1715653703
0x306A2005...5EAF3a958
2.27574754 ETH
185555492023-11-12 11:31:11241 days ago1699788671
0x306A2005...5EAF3a958
0.14671 ETH
154934342022-09-08 0:29:36671 days ago1662596976
0x306A2005...5EAF3a958
0.00173954 ETH
154934342022-09-08 0:29:36671 days ago1662596976
0x306A2005...5EAF3a958
0.15 ETH
146534382022-04-25 11:08:13807 days ago1650884893
0x306A2005...5EAF3a958
0.00664501 ETH
146475152022-04-24 12:42:24807 days ago1650804144
0x306A2005...5EAF3a958
0.01611539 ETH
141458682022-02-05 11:55:19886 days ago1644062119
0x306A2005...5EAF3a958
0.00873068 ETH
128683032021-07-21 6:48:421085 days ago1626850122
0x306A2005...5EAF3a958
0.00174364 ETH
128681402021-07-21 6:16:511085 days ago1626848211
0x306A2005...5EAF3a958
0.00219434 ETH
125910792021-06-08 1:56:591128 days ago1623117419
0x306A2005...5EAF3a958
2 ETH
113430542020-11-27 21:57:041320 days ago1606514224
0x306A2005...5EAF3a958
0.00112 ETH
113430542020-11-27 21:57:041320 days ago1606514224
0x306A2005...5EAF3a958
1.65 ETH
104658752020-07-15 19:12:271455 days ago1594840347
0x306A2005...5EAF3a958
0.00445662 ETH
104658712020-07-15 19:10:241455 days ago1594840224
0x306A2005...5EAF3a958
0.00581855 ETH
103306062020-06-24 20:21:461476 days ago1593030106
0x306A2005...5EAF3a958
0.00096674 ETH
103306062020-06-24 20:21:461476 days ago1593030106
0x306A2005...5EAF3a958
0.64449917 ETH
103266862020-06-24 5:57:041477 days ago1592978224
0x306A2005...5EAF3a958
0.00030386 ETH
103266862020-06-24 5:57:041477 days ago1592978224
0x306A2005...5EAF3a958
0.20257635 ETH
103265412020-06-24 5:26:081477 days ago1592976368
0x306A2005...5EAF3a958
0.0006009 ETH
103265412020-06-24 5:26:081477 days ago1592976368
0x306A2005...5EAF3a958
0.4 ETH
102481022020-06-12 2:10:361489 days ago1591927836
0x306A2005...5EAF3a958
0.00064455 ETH
102481022020-06-12 2:10:361489 days ago1591927836
0x306A2005...5EAF3a958
0.42970301 ETH
102480942020-06-12 2:09:431489 days ago1591927783
0x306A2005...5EAF3a958
0.00758813 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xE1C7fe72...04b8910A6
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.4+commit.9549d8ff

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2020-03-11
*/

// Copyright (C) 2018  Argent Labs Ltd. <https://argent.xyz>

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity ^0.5.4;

/**
 * @title Proxy
 * @dev Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <[email protected]>
 */
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

[{"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"}]

Deployed Bytecode

0x60806040523615801560115750600034115b156092573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a360b8565b6000543660008037600080366000845af43d6000803e80801560b3573d6000f35b3d6000fd5b00fea165627a7a7230582050a0cdc6737cfe5402762d0a4a4467b912e656e93ff13e1f2bfcdcb8215725080029

Deployed Bytecode Sourcemap

951:901:0:-;;;1233:8;:20;:37;;;;;1269:1;1257:9;:13;1233:37;1229:613;;;1312:10;1292:41;;1301:9;1292:41;1324:8;;1292:41;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;1292:41:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;1292:41:0;;;;-1:-1:-1;1292:41:0;;-1:-1:-1;;;;1292:41:0;1229:613;;;1483:1;1477:8;1522:14;1519:1;1516;1503:34;1617:1;1614;1598:14;1595:1;1587:6;1582:3;1569:50;1658:16;1655:1;1652;1637:38;1700:6;1724:36;;;;1798:16;1795:1;1787:28;1724:36;1742:16;1739:1;1732:27;1444:387;951:901

Swarm Source

bzzr://50a0cdc6737cfe5402762d0a4a4467b912e656e93ff13e1f2bfcdcb821572508

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.