ETH Price: $3,324.23 (+1.62%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction207151812024-09-09 19:35:59144 days ago1725910559IN
0x321e897e...d3140a8bb
0 ETH0.00066257.78522727
Exec Transaction207151782024-09-09 19:35:23144 days ago1725910523IN
0x321e897e...d3140a8bb
0 ETH0.000435387.26202934
Exec Transaction207106622024-09-09 4:27:23144 days ago1725856043IN
0x321e897e...d3140a8bb
0 ETH0.000088581.47761267
Exec Transaction200210972024-06-04 21:18:47241 days ago1717535927IN
0x321e897e...d3140a8bb
0 ETH0.0019416110.48981302
Exec Transaction200210892024-06-04 21:17:11241 days ago1717535831IN
0x321e897e...d3140a8bb
0 ETH0.0020913615.92562402
Exec Transaction200209442024-06-04 20:48:11241 days ago1717534091IN
0x321e897e...d3140a8bb
0 ETH0.0011222815.84275965
Exec Transaction159976882022-11-18 15:06:35805 days ago1668783995IN
0x321e897e...d3140a8bb
0 ETH0.0017884722.25440003
Exec Transaction156847142022-10-05 21:53:35849 days ago1665006815IN
0x321e897e...d3140a8bb
0 ETH0.002359059.02427112
Exec Transaction155333442022-09-14 14:11:07870 days ago1663164667IN
0x321e897e...d3140a8bb
0 ETH0.0012783414
Exec Transaction145938482022-04-16 3:04:331021 days ago1650078273IN
0x321e897e...d3140a8bb
0 ETH0.0037014340.5890282
Exec Transaction145936322022-04-16 2:12:201021 days ago1650075140IN
0x321e897e...d3140a8bb
0 ETH0.0040479126.99330165
Exec Transaction145933982022-04-16 1:24:331022 days ago1650072273IN
0x321e897e...d3140a8bb
0 ETH0.0050133232.20936134
Exec Transaction140771802022-01-25 21:31:331102 days ago1643146293IN
0x321e897e...d3140a8bb
0 ETH0.01366762149.6444406
Exec Transaction138614172021-12-23 12:30:561135 days ago1640262656IN
0x321e897e...d3140a8bb
0 ETH0.0249825854.05590134
Exec Transaction136934262021-11-27 2:28:551161 days ago1637980135IN
0x321e897e...d3140a8bb
0 ETH0.0361819895
Exec Transaction133103652021-09-27 21:49:071222 days ago1632779347IN
0x321e897e...d3140a8bb
0 ETH0.0173881471.02389128
Exec Transaction133103132021-09-27 21:40:111222 days ago1632778811IN
0x321e897e...d3140a8bb
0 ETH0.08121185115
Exec Transaction133102482021-09-27 21:28:191222 days ago1632778099IN
0x321e897e...d3140a8bb
0 ETH0.03766632120
Exec Transaction133099472021-09-27 20:17:451222 days ago1632773865IN
0x321e897e...d3140a8bb
0 ETH0.4659817680
Exec Transaction133078782021-09-27 12:54:371222 days ago1632747277IN
0x321e897e...d3140a8bb
0 ETH0.0297167867.64022571
Exec Transaction132725042021-09-22 0:57:441228 days ago1632272264IN
0x321e897e...d3140a8bb
0 ETH0.02856375
Exec Transaction131719002021-09-06 11:30:351243 days ago1630927835IN
0x321e897e...d3140a8bb
0 ETH0.0230915275
Exec Transaction131498522021-09-03 1:39:001246 days ago1630633140IN
0x321e897e...d3140a8bb
0 ETH0.0148081383.10910905
Exec Transaction130757642021-08-22 14:54:551258 days ago1629644095IN
0x321e897e...d3140a8bb
0 ETH0.021534370.4
Exec Transaction130443562021-08-17 18:37:481263 days ago1629225468IN
0x321e897e...d3140a8bb
0 ETH0.0036968840
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Block
From
To
126388802021-06-15 11:50:231326 days ago1623757823  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x655A9e6b...77e966e18
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.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.5.3;

/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
contract Proxy {

    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, masterCopy)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Deployed Bytecode Sourcemap

245:1554:0:-;;;1155:42;1151:1;1145:8;1141:57;1335:66;1331:1;1318:15;1315:87;1312:2;;;1432:10;1429:1;1422:21;1471:4;1468:1;1461:15;1312:2;1524:14;1521:1;1518;1505:34;1620:1;1617;1601:14;1598:1;1586:10;1581:3;1568:54;1657:16;1654:1;1651;1636:38;1703:1;1694:7;1691:14;1688:2;;;1718:16;1715:1;1708:27;1688:2;1761:16;1758:1;1751:27

Swarm Source

bzzr://d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff

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.