ETH Price: $3,263.68 (+5.24%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer122737032021-04-20 0:18:421381 days ago1618877922IN
0xEc0663D0...E6f119960
1.2537 ETH0.02274818455
Transfer122547172021-04-17 1:43:321384 days ago1618623812IN
0xEc0663D0...E6f119960
0.312 ETH0.00704943141
Transfer122241732021-04-12 8:30:021389 days ago1618216202IN
0xEc0663D0...E6f119960
0.4503826 ETH0.00411899
Transfer121990722021-04-08 12:13:171393 days ago1617883997IN
0xEc0663D0...E6f119960
1.5185 ETH0.00457556110

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
122737032021-04-20 0:18:421381 days ago1618877922
0xEc0663D0...E6f119960
1.2537 ETH
122547172021-04-17 1:43:321384 days ago1618623812
0xEc0663D0...E6f119960
0.312 ETH
122241732021-04-12 8:30:021389 days ago1618216202
0xEc0663D0...E6f119960
0.4503826 ETH
121990722021-04-08 12:13:171393 days ago1617883997
0xEc0663D0...E6f119960
1.5185 ETH
121987122021-04-08 10:50:331393 days ago1617879033  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x50e1a50e...C6F69Ea83
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-09-15
*/

// File: contracts/Proxy.sol

pragma solidity 0.5.16;

contract Proxy {
    // Code position in storage is keccak256("PROXIABLE") = "0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7"
    // constructor(bytes memory constructData, address contractLogic) public {
    constructor(address contractLogic) public {
        // save the code address
        assembly { // solium-disable-line
            sstore(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7, contractLogic)
        }
    }

    function() external payable {
        assembly { // solium-disable-line
            let contractLogic := sload(0xc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf7)
            let ptr := mload(0x40)
            calldatacopy(ptr, 0x0, calldatasize)
            let success := delegatecall(gas, contractLogic, ptr, calldatasize, 0, 0)
            let retSz := returndatasize
            returndatacopy(ptr, 0, retSz)
            switch success
            case 0 {
                revert(ptr, retSz)
            }
            default {
                return(ptr, retSz)
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"contractLogic","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040527fc5f16f0fcc639fa48a6947836d9850f504798523bf8c9a3a87d5876cf622bcf75460405136600082376000803683855af43d806000843e81600081146048578184f35b8184fdfea265627a7a72315820acfee51c1552fe4a3f8b6429569d780426ad30a32897f8f6ca72ade16b56c84064736f6c63430005100032

Deployed Bytecode Sourcemap

59:1113:0:-;;;653:66;647:73;751:4;745:11;793:12;788:3;783;770:36;890:1;887;873:12;868:3;853:13;848:3;835:57;919:14;970:5;967:1;962:3;947:29;997:7;1023:1;1018:59;;;;1130:5;1125:3;1118:18;1018:59;1056:5;1051:3;1044:18

Swarm Source

bzzr://acfee51c1552fe4a3f8b6429569d780426ad30a32897f8f6ca72ade16b56c840

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.