ETH Price: $2,715.82 (+1.77%)

Contract

0xa70dfFf6107Cc7b01c3Dd7412E90b0e149b81C05
 

Overview

ETH Balance

0.039800822469425607 ETH

Eth Value

$108.09 (@ $2,715.82/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer163386212023-01-05 5:52:35776 days ago1672897955IN
0xa70dfFf6...149b81C05
0.06 ETH0.0004217318.15146446

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
189134172024-01-01 15:17:47415 days ago1704122267
0xa70dfFf6...149b81C05
0.0092922 ETH
189134112024-01-01 15:16:35415 days ago1704122195
0xa70dfFf6...149b81C05
0.00783263 ETH
174564982023-06-11 11:12:35619 days ago1686481955
0xa70dfFf6...149b81C05
0.00377949 ETH
163386532023-01-05 5:58:59776 days ago1672898339
0xa70dfFf6...149b81C05
0.00272452 ETH
155595352022-09-18 9:27:11885 days ago1663493231
0xa70dfFf6...149b81C05
0.00223553 ETH
155595352022-09-18 9:27:11885 days ago1663493231
0xa70dfFf6...149b81C05
8.46371077 ETH
155595312022-09-18 9:26:23885 days ago1663493183
0xa70dfFf6...149b81C05
0.00326721 ETH
155595312022-09-18 9:26:23885 days ago1663493183
0xa70dfFf6...149b81C05
8.45 ETH
155595272022-09-18 9:25:35885 days ago1663493135
0xa70dfFf6...149b81C05
0.00084949 ETH
143716762022-03-12 11:30:331075 days ago1647084633
0xa70dfFf6...149b81C05
0.00267951 ETH
143716702022-03-12 11:29:341075 days ago1647084574
0xa70dfFf6...149b81C05
0.00296738 ETH
143716652022-03-12 11:28:071075 days ago1647084487
0xa70dfFf6...149b81C05
0.006368 ETH
138219132021-12-17 9:40:241160 days ago1639734024
0xa70dfFf6...149b81C05
0.0084184 ETH
138219132021-12-17 9:40:241160 days ago1639734024
0xa70dfFf6...149b81C05
10 ETH
138160632021-12-16 11:55:131161 days ago1639655713
0xa70dfFf6...149b81C05
0.00642256 ETH
136217532021-11-15 17:55:081192 days ago1636998908
0xa70dfFf6...149b81C05
0.02155957 ETH
136217532021-11-15 17:55:081192 days ago1636998908
0xa70dfFf6...149b81C05
2 ETH
135884832021-11-10 12:29:131197 days ago1636547353
0xa70dfFf6...149b81C05
0.04440905 ETH
125634932021-06-03 19:47:501357 days ago1622749670
0xa70dfFf6...149b81C05
0.00619084 ETH
114434812020-12-13 8:11:021529 days ago1607847062
0xa70dfFf6...149b81C05
0.00892566 ETH
114434812020-12-13 8:11:021529 days ago1607847062
0xa70dfFf6...149b81C05
1.7 ETH
114373452020-12-12 9:43:011530 days ago1607766181
0xa70dfFf6...149b81C05
0.01045668 ETH
114373452020-12-12 9:43:011530 days ago1607766181
0xa70dfFf6...149b81C05
1.3 ETH
105786732020-08-02 6:12:361662 days ago1596348756
0xa70dfFf6...149b81C05
2.7 ETH
102527682020-06-12 19:30:451713 days ago1591990245
0xa70dfFf6...149b81C05
0.00505197 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.