ETH Price: $2,667.76 (+1.97%)

Contract

0x91B5279f8AD68883cB07Cf9B9b849d14Db59e532
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer115257932020-12-25 23:40:101507 days ago1608939610IN
0x91B5279f...4Db59e532
0.05 ETH0.0014663863.00000156
Transfer111480142020-10-28 22:58:241565 days ago1603925904IN
0x91B5279f...4Db59e532
0.01 ETH0.000581925.00000156
Transfer109353752020-09-26 1:45:491598 days ago1601084749IN
0x91B5279f...4Db59e532
0.01 ETH0.001256954.00000156

Latest 9 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
127456342021-07-02 2:55:371319 days ago1625194537
0x91B5279f...4Db59e532
0.06 ETH
126556352021-06-18 2:04:081333 days ago1623981848
0x91B5279f...4Db59e532
0.01 ETH
115168922020-12-24 14:38:381509 days ago1608820718
0x91B5279f...4Db59e532
0.045 ETH
115168052020-12-24 14:21:471509 days ago1608819707
0x91B5279f...4Db59e532
0.005 ETH
115164032020-12-24 12:52:401509 days ago1608814360
0x91B5279f...4Db59e532
0.025 ETH
115163402020-12-24 12:39:131509 days ago1608813553
0x91B5279f...4Db59e532
0.025 ETH
111480532020-10-28 23:09:311565 days ago1603926571
0x91B5279f...4Db59e532
0.01 ETH
109354442020-09-26 2:01:291598 days ago1601085689
0x91B5279f...4Db59e532
0.01 ETH
93023532020-01-18 1:37:421850 days ago1579311462  Contract Creation0 ETH
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
/**
 *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

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

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 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.