ETH Price: $2,063.01 (-2.73%)

Contract

0xE3D4Fde09Bfc2448a5F6DA61b60DED478cc7F752
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer108316072020-09-10 3:38:232024 days ago1599709103IN
0xE3D4Fde0...78cc7F752
1.02785119 ETH0.0035845154
Transfer107096812020-08-22 11:07:542042 days ago1598094474IN
0xE3D4Fde0...78cc7F752
2 ETH0.0022987998.76249804
Transfer101401302020-05-26 8:06:272130 days ago1590480387IN
0xE3D4Fde0...78cc7F752
0.9211729 ETH0.0008169835.1
Transfer96867822020-03-17 3:57:152201 days ago1584417435IN
0xE3D4Fde0...78cc7F752
3.38 ETH0.0003328414.3
Transfer96673122020-03-14 4:07:462204 days ago1584158866IN
0xE3D4Fde0...78cc7F752
5.6266 ETH0.000116845.02

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
-136252332021-11-16 7:15:561591 days ago1637046956
0xE3D4Fde0...78cc7F752
0.27078649 ETH
-136230892021-11-15 22:52:311592 days ago1637016751
0xE3D4Fde0...78cc7F752
0.5 ETH
-136192192021-11-15 8:19:031592 days ago1636964343
0xE3D4Fde0...78cc7F752
0.48920562 ETH
-133443652021-10-03 5:29:321636 days ago1633238972
0xE3D4Fde0...78cc7F752
0.27158087 ETH
-131631452021-09-05 2:54:571664 days ago1630810497
0xE3D4Fde0...78cc7F752
0.22204077 ETH
-130819052021-08-23 13:45:531676 days ago1629726353
0xE3D4Fde0...78cc7F752
0.2251212 ETH
-130533722021-08-19 4:01:291681 days ago1629345689
0xE3D4Fde0...78cc7F752
0.09691009 ETH
-124560032021-05-18 3:37:141774 days ago1621309034
0xE3D4Fde0...78cc7F752
0.00051942 ETH
-124560032021-05-18 3:37:141774 days ago1621309034
0xE3D4Fde0...78cc7F752
0.10440418 ETH
-123718982021-05-05 3:47:391787 days ago1620186459
0xE3D4Fde0...78cc7F752
0.5 ETH
-115855092021-01-04 3:15:061908 days ago1609730106
0xE3D4Fde0...78cc7F752
2.5 ETH
-111092422020-10-23 0:12:181981 days ago1603411938
0xE3D4Fde0...78cc7F752
1 ETH
-109701322020-10-01 12:22:002002 days ago1601554920
0xE3D4Fde0...78cc7F752
0.97607328 ETH
-109039082020-09-21 5:38:392013 days ago1600666719
0xE3D4Fde0...78cc7F752
0.72960575 ETH
-108761702020-09-16 23:44:102017 days ago1600299850
0xE3D4Fde0...78cc7F752
0.2817 ETH
-107166192020-08-23 12:39:242041 days ago1598186364
0xE3D4Fde0...78cc7F752
2 ETH
-107099162020-08-22 12:03:092042 days ago1598097789
0xE3D4Fde0...78cc7F752
1.08127162 ETH
-107069162020-08-22 0:46:212043 days ago1598057181
0xE3D4Fde0...78cc7F752
0.01013146 ETH
-107069162020-08-22 0:46:212043 days ago1598057181
0xE3D4Fde0...78cc7F752
0.67058265 ETH
-106975872020-08-20 14:26:412044 days ago1597933601
0xE3D4Fde0...78cc7F752
1.07949599 ETH
-106975182020-08-20 14:10:232044 days ago1597932623
0xE3D4Fde0...78cc7F752
2 ETH
-106946382020-08-20 3:32:242045 days ago1597894344
0xE3D4Fde0...78cc7F752
0.2517 ETH
-106945872020-08-20 3:20:022045 days ago1597893602
0xE3D4Fde0...78cc7F752
0.252 ETH
-106888132020-08-19 5:56:542046 days ago1597816614
0xE3D4Fde0...78cc7F752
0.19196578 ETH
-106885472020-08-19 4:58:572046 days ago1597813137
0xE3D4Fde0...78cc7F752
0.38 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 0x053A6507...2D9A711a1
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AccountProxy

Compiler Version
v0.5.4+commit.9549d8ff

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-01-14
*/

pragma solidity ^0.5.4;

contract AccountProxy {

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

0x608060405234801561001057600080fd5b506040516020806101478339810180604052602081101561003057600080fd5b505160008054600160a060020a03909216600160a060020a031990921691909117905560e6806100616000396000f3fe60806040523615801560115750600034115b156092573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a360b8565b6000543660008037600080366000845af43d6000803e80801560b3573d6000f35b3d6000fd5b00fea165627a7a72305820ab958cd41bd56370ba9252b9e9c197efc53c37cbc2ab5237c07b5590a42abe240029000000000000000000000000ef004d954999eb9162aeb3989279eff2161d5095

Deployed Bytecode

0x60806040523615801560115750600034115b156092573373ffffffffffffffffffffffffffffffffffffffff16347f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef73860003660405180806020018281038252848482818152602001925080828437600083820152604051601f909101601f19169092018290039550909350505050a360b8565b6000543660008037600080366000845af43d6000803e80801560b3573d6000f35b3d6000fd5b00fea165627a7a72305820ab958cd41bd56370ba9252b9e9c197efc53c37cbc2ab5237c07b5590a42abe240029

Deployed Bytecode Sourcemap

27:916:0:-;;;315:8;:20;:37;;;;;351:1;339:9;:13;315:37;312:621;;;394:10;374:41;;383:9;374:41;406:8;;374:41;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;;74:27;374:41:0;;137:4:-1;117:14;;;-1:-1;;113:30;157:16;;;374:41:0;;;;-1:-1:-1;374:41:0;;-1:-1:-1;;;;374:41:0;312:621;;;574:1;568:8;613:14;610:1;607;594:34;708:1;705;689:14;686:1;678:6;673:3;660:50;749:16;746:1;743;728:38;791:6;815:36;;;;889:16;886:1;878:28;815:36;833:16;830:1;823:27;535:387;27:916

Swarm Source

bzzr://ab958cd41bd56370ba9252b9e9c197efc53c37cbc2ab5237c07b5590a42abe24

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.