ETH Price: $2,259.01 (-4.19%)
 

Overview

ETH Balance

0.000011505474 ETH

ETH Value

$0.03 (@ $2,259.01/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

Transaction Hash
Block
From
To
Transfer417195002026-02-04 18:05:4774 days ago1770228347IN
Bitfinex: MultiSig 2
0.000001 ETH0.000005530.21323465
0x436f696e389692102025-12-03 2:09:27137 days ago1764727767IN
Bitfinex: MultiSig 2
0 ETH0.000000050.00141982
Exec Transaction312271102025-06-06 20:59:27317 days ago1749243567IN
Bitfinex: MultiSig 2
0 ETH0.000000420.00179935
0x54686520241361602024-12-24 17:34:27481 days ago1735061667IN
Bitfinex: MultiSig 2
0 ETH0.000001540.00872654
0x48554745184580282024-08-15 7:03:23612 days ago1723705403IN
Bitfinex: MultiSig 2
0 ETH0.000000170.00521967
0x57452057181001812024-08-07 0:15:09620 days ago1722989709IN
Bitfinex: MultiSig 2
0 ETH0.00000020.00669528
0x0a776861180638992024-08-06 4:05:45621 days ago1722917145IN
Bitfinex: MultiSig 2
0 ETH0.000000170.00557128
0x53756b69180547262024-08-05 22:59:59621 days ago1722898799IN
Bitfinex: MultiSig 2
0 ETH0.000000380.00988708
Transfer179539602024-08-03 15:01:07624 days ago1722697267IN
Bitfinex: MultiSig 2
0.00000925 ETH0.000000080.00282513
Transfer178381822024-07-31 22:41:51626 days ago1722465711IN
Bitfinex: MultiSig 2
0.00000124 ETH0.000000210.00767563
0x596f75e2177826812024-07-30 15:51:49628 days ago1722354709IN
Bitfinex: MultiSig 2
0 ETH0.000000280.00645657
0x42726961174643062024-07-23 6:59:19635 days ago1721717959IN
Bitfinex: MultiSig 2
0 ETH0.000000430.01399104
0x62757920173396832024-07-20 9:45:13638 days ago1721468713IN
Bitfinex: MultiSig 2
0 ETH0.000000620.01878327
0x54686520173380232024-07-20 8:49:53638 days ago1721465393IN
Bitfinex: MultiSig 2
0 ETH0.000000570.01931199
Transfer*171205412024-07-15 8:00:29643 days ago1721030429IN
Bitfinex: MultiSig 2
0 ETH0.000000290.01009855

Latest 1 internal transaction

Parent Transaction Hash Block From To
159689322024-06-18 16:13:31670 days ago1718727211  Contract Creation0 ETH

Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xac0F293f...a404E9169 in OP Mainnet
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.01f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
Default EvmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2025-06-03
*/

/**
 *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

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

0x608060405234801561001057600080fd5b506040516101e73803806101e78339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101c36024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060aa806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032496e76616c6964206d617374657220636f707920616464726573732070726f766964656400000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0xC61b9BB3A7a0767E3179713f3A5c7a9aeDCE193C
Net Worth in USD
$7,069,598,222.24

Net Worth in ETH
3,129,515.398024

Token Allocations
LEO 93.03%
ETH 6.97%
AMERICA 0.00%
Others 0.00%
Chain Token Portfolio % Price Amount Value
ETH93.03%$10.15648,000,000$6,577,200,000
ETH6.97%$2,258.05218,063.7607$492,398,166.79
ETH<0.01%<$0.000001200,000,000$22.17
ETH<0.01%$110.99$10.99
ETH<0.01%<$0.00000119,031,799,280.8324$9.45
ETH<0.01%$0.05970979.5119$4.75
ETH<0.01%$0.000004549,900$1.92
ETH<0.01%<$0.0000011,293,483$0.4187
ETH<0.01%$0.01976413.3333$0.2635
BASE<0.01%<$0.00000169,420,000$3.71
BASE<0.01%$0.0000919,354.857$1.74
BASE
Ether (ETH)
<0.01%$2,259.010.00001151$0.025991
BSC<0.01%$616.520.00001103$0.006798
ARB<0.01%$2,257.330.000001$0.002257
POL<0.01%$0.0876940.00101$0.000089
OP<0.01%$2,2620.00000001$0.000023
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.