ETH Price: $1,977.86 (-1.88%)
 

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer115652942021-01-01 1:00:281886 days ago1609462828IN
0x723D082E...2FEE0e285
5.51910666 ETH0.0015594967
Transfer114157602020-12-09 1:45:081909 days ago1607478308IN
0x723D082E...2FEE0e285
6.5217 ETH0.001838879.00000145
Transfer96612452020-03-13 5:15:462179 days ago1584076546IN
0x723D082E...2FEE0e285
5 ETH0.0013965660

Latest 15 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
-122896722021-04-22 11:15:341774 days ago1619090134
0x723D082E...2FEE0e285
5.51960413 ETH
-115735612021-01-02 7:16:451884 days ago1609571805
0x723D082E...2FEE0e285
0.005 ETH
-114205912020-12-09 19:38:031908 days ago1607542683
0x723D082E...2FEE0e285
6.52626252 ETH
-114205912020-12-09 19:38:031908 days ago1607542683
0x723D082E...2FEE0e285
0.00549747 ETH
-113921832020-12-05 10:48:381912 days ago1607165318
0x723D082E...2FEE0e285
0.01 ETH
-108054392020-09-06 3:14:152003 days ago1599362055
0x723D082E...2FEE0e285
4.0509 ETH
-107188832020-08-23 20:51:002016 days ago1598215860
0x723D082E...2FEE0e285
1 ETH
-105268592020-07-25 5:54:212045 days ago1595656461
0x723D082E...2FEE0e285
5.015534 ETH
-104304602020-07-10 7:41:232060 days ago1594366883
0x723D082E...2FEE0e285
5 ETH
-103903242020-07-04 2:44:552067 days ago1593830695
0x723D082E...2FEE0e285
5.006347 ETH
-102939522020-06-19 4:18:512082 days ago1592540331
0x723D082E...2FEE0e285
5 ETH
-102306332020-06-09 9:17:492091 days ago1591694269
0x723D082E...2FEE0e285
5.029079 ETH
-99999652020-05-04 13:13:582127 days ago1588598038
0x723D082E...2FEE0e285
5.0044 ETH
-97560392020-03-27 21:58:472165 days ago1585346327
0x723D082E...2FEE0e285
0.0044 ETH
-92856192020-01-15 12:11:222237 days ago1579090282  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 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.