ETH Price: $3,065.03 (+3.17%)
Gas: 9 Gwei

Contract

0x221CAB7Fedb291e8ADA476Abe8195C04c9c0f825
 

Multichain Info

Transaction Hash
Method
Block
From
To
Value
Transfer104542902020-07-13 23:50:451456 days ago1594684245IN
0x221CAB7F...4c9c0f825
4.17684773 ETH0.0005808525
Transfer95667422020-02-27 16:28:591593 days ago1582820939IN
0x221CAB7F...4c9c0f825
1 ETH0.00014146.0860215
Transfer73028642019-03-04 12:10:231954 days ago1551701423IN
0x221CAB7F...4c9c0f825
0.08019568 ETH0.00013946

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To Value
195425572024-03-29 22:15:47101 days ago1711750547
0x221CAB7F...4c9c0f825
0.01467704 ETH
195425482024-03-29 22:13:59101 days ago1711750439
0x221CAB7F...4c9c0f825
0.00445375 ETH
129102802021-07-27 20:47:431077 days ago1627418863
0x221CAB7F...4c9c0f825
0.00546819 ETH
129102802021-07-27 20:47:431077 days ago1627418863
0x221CAB7F...4c9c0f825
0.5 ETH
126279032021-06-13 18:59:251121 days ago1623610765
0x221CAB7F...4c9c0f825
0.00196961 ETH
126279032021-06-13 18:59:251121 days ago1623610765
0x221CAB7F...4c9c0f825
1 ETH
124286552021-05-13 21:59:001152 days ago1620943140
0x221CAB7F...4c9c0f825
0.01360504 ETH
124286552021-05-13 21:59:001152 days ago1620943140
0x221CAB7F...4c9c0f825
0.5 ETH
118061642021-02-07 0:59:451248 days ago1612659585
0x221CAB7F...4c9c0f825
0.01218593 ETH
116149432021-01-08 15:37:521278 days ago1610120272
0x221CAB7F...4c9c0f825
0.04985482 ETH
116149432021-01-08 15:37:521278 days ago1610120272
0x221CAB7F...4c9c0f825
2 ETH
112969532020-11-20 19:51:551326 days ago1605901915
0x221CAB7F...4c9c0f825
0.0051833 ETH
112969532020-11-20 19:51:551326 days ago1605901915
0x221CAB7F...4c9c0f825
0.00197464 ETH
112387692020-11-11 21:34:581335 days ago1605130498
0x221CAB7F...4c9c0f825
0.00430539 ETH
112387692020-11-11 21:34:581335 days ago1605130498
0x221CAB7F...4c9c0f825
0.01086392 ETH
112256332020-11-09 21:07:431337 days ago1604956063
0x221CAB7F...4c9c0f825
0.0037186 ETH
112256332020-11-09 21:07:431337 days ago1604956063
0x221CAB7F...4c9c0f825
0.0045028 ETH
112256002020-11-09 20:59:101337 days ago1604955550
0x221CAB7F...4c9c0f825
0.1 ETH
112255982020-11-09 20:58:131337 days ago1604955493
0x221CAB7F...4c9c0f825
0.00248402 ETH
112053792020-11-06 18:19:261340 days ago1604686766
0x221CAB7F...4c9c0f825
0.00404283 ETH
112053792020-11-06 18:19:261340 days ago1604686766
0x221CAB7F...4c9c0f825
0.00455728 ETH
110284332020-10-10 15:18:081368 days ago1602343088
0x221CAB7F...4c9c0f825
0.01099724 ETH
110168582020-10-08 19:53:051369 days ago1602186785
0x221CAB7F...4c9c0f825
0.0069384 ETH
110168562020-10-08 19:52:321369 days ago1602186752
0x221CAB7F...4c9c0f825
0.00693719 ETH
110168522020-10-08 19:51:361369 days ago1602186696
0x221CAB7F...4c9c0f825
0.0069384 ETH
View All Internal Transactions
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
/**
 *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 - <[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

0x60806040523615801560115750600034115b156082573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef7386000366040518080602001828103825284848281815260200192508082843760405192018290039550909350505050a360a8565b6000543660008037600080366000845af43d6000803e80801560a3573d6000f35b3d6000fd5b0000a165627a7a7230582009ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f0029

Swarm Source

bzzr://09ad600070879c5d9739059132e69cc1b5b90d2b945f553b3f45ceea43d65c8f

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.