ETH Price: $2,325.83 (+1.65%)

Contract

0xC5C0E021a76E618f5A87B2807A5d7d2f3510eEA7
 

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction227831952025-06-25 18:18:47264 days ago1750875527IN
0xC5C0E021...f3510eEA7
0 ETH0.0002062.59012811
Exec Transaction227830462025-06-25 17:48:23264 days ago1750873703IN
0xC5C0E021...f3510eEA7
0 ETH0.000260542.56882005

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer244632792026-02-15 16:03:5929 days ago1771171439
0xC5C0E021...f3510eEA7
0.00004689 ETH
Transfer244632792026-02-15 16:03:5929 days ago1771171439
0xC5C0E021...f3510eEA7
0.00004689 ETH
Transfer243975382026-02-06 11:38:5939 days ago1770377939
0xC5C0E021...f3510eEA7
0.00004689 ETH
Transfer243844702026-02-04 15:45:1140 days ago1770219911
0xC5C0E021...f3510eEA7
0.00004689 ETH
Transfer243844612026-02-04 15:43:2340 days ago1770219803
0xC5C0E021...f3510eEA7
0.00004689 ETH
Transfer243175852026-01-26 7:43:1150 days ago1769413391
0xC5C0E021...f3510eEA7
0.00004824 ETH
Transfer243159722026-01-26 2:19:5950 days ago1769393999
0xC5C0E021...f3510eEA7
0.00004824 ETH
Transfer243154152026-01-26 0:28:2350 days ago1769387303
0xC5C0E021...f3510eEA7
0.00004824 ETH
Transfer243154092026-01-26 0:27:1150 days ago1769387231
0xC5C0E021...f3510eEA7
0.00004824 ETH
Transfer243152672026-01-25 23:58:4750 days ago1769385527
0xC5C0E021...f3510eEA7
0.00004824 ETH
Transfer243146532026-01-25 21:55:3550 days ago1769378135
0xC5C0E021...f3510eEA7
0.00006174 ETH
Transfer243146512026-01-25 21:55:1150 days ago1769378111
0xC5C0E021...f3510eEA7
0.00006174 ETH
Transfer243146502026-01-25 21:54:5950 days ago1769378099
0xC5C0E021...f3510eEA7
0.00006174 ETH
Transfer242770052026-01-20 15:52:1155 days ago1768924331
0xC5C0E021...f3510eEA7
0.00009033 ETH
Transfer242734602026-01-20 4:00:1156 days ago1768881611
0xC5C0E021...f3510eEA7
0.00005227 ETH
Transfer242548682026-01-17 13:49:3559 days ago1768657775
0xC5C0E021...f3510eEA7
0.00013561 ETH
Transfer242438022026-01-16 0:49:1160 days ago1768524551
0xC5C0E021...f3510eEA7
0.00008761 ETH
Transfer242413072026-01-15 16:28:3560 days ago1768494515
0xC5C0E021...f3510eEA7
0.00008671 ETH
Transfer242191712026-01-12 14:16:3563 days ago1768227395
0xC5C0E021...f3510eEA7
0.00023751 ETH
Transfer241816832026-01-07 8:43:4769 days ago1767775427
0xC5C0E021...f3510eEA7
0.00042164 ETH
Transfer241816762026-01-07 8:42:2369 days ago1767775343
0xC5C0E021...f3510eEA7
0.00205357 ETH
Transfer241702122026-01-05 18:19:4770 days ago1767637187
0xC5C0E021...f3510eEA7
0.00108174 ETH
Transfer240616572025-12-21 14:43:4785 days ago1766328227
0xC5C0E021...f3510eEA7
0.00024629 ETH
Transfer239947682025-12-12 6:26:5995 days ago1765520819
0xC5C0E021...f3510eEA7
0.00008525 ETH
Transfer239350122025-12-03 19:31:47103 days ago1764790307
0xC5C0E021...f3510eEA7
0.0000824 ETH
View All Internal Transactions
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 0xbe6E7581...0978C932f
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/**
 * @title IProxy - Helper interface to access the singleton address of the Proxy on-chain.
 * @author Richard Meissner - @rmeissner
 */
interface IProxy {
    function masterCopy() external view returns (address);
}

/**
 * @title SafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
 * @author Stefan George - <stefan@gnosis.io>
 * @author Richard Meissner - <richard@gnosis.io>
 */
contract SafeProxy {
    // Singleton 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 singleton;

    /**
     * @notice Constructor function sets address of singleton contract.
     * @param _singleton Singleton address.
     */
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;
    }

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

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

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000041675c099f32341bf84bfc5382af534df5c7461a

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0xC5C0E021a76E618f5A87B2807A5d7d2f3510eEA7
Net Worth in USD
$6,749.44

Net Worth in ETH
2.901944

Token Allocations
BSC-USD 85.90%
USDC 3.47%
BTG 2.73%
Others 7.90%
Chain Token Portfolio % Price Amount Value
BSC85.90%$15,797.7779$5,797.78
BSC2.73%$3.6350.8038$184.55
BSC0.33%$664.680.0331$21.97
BSC0.14%$0.007.1093$0.00
BSC0.04%$667.80.00356962$2.38
BSC0.02%$0.768741.8961$1.46
BSC0.01%$2,336.910.00041877$0.9786
BSC0.01%$0.9998860.7484$0.7482
BSC<0.01%$267.710.00239827$0.642
BSC<0.01%$1.350.4481$0.6049
BSC<0.01%$0.102922.2693$0.2335
BSC<0.01%$1.480.1056$0.1563
ARB2.15%$0.999939144.9064$144.9
ARB1.72%$76,1770.00152091$115.86
ARB1.16%$2,325.380.0338$78.5
ARB0.41%$0.99843828.0356$27.99
ARB0.25%$2,258.880.00755782$17.07
ARB0.05%$1.592.0134$3.2
ARB0.03%$0.10714419.7806$2.12
ARB0.03%$0.9999391.8893$1.89
ARB<0.01%$1.340.1269$0.17
ETH1.08%$0.99991173.1545$73.15
ETH1.01%$73,501.30.00092608$68.07
ETH0.92%$120.560.5158$62.18
ETH0.39%$9.772.711$26.49
ETH0.29%$119.7284$19.73
ETH
Ether (ETH)
0.24%$2,325.830.0070287$16.35
ETH<0.01%$0.1402654.2222$0.5922
BASE0.32%$2,326.390.00937836$21.82
BASE0.18%$0.99993411.8203$11.82
BASE0.06%$76,3310.00005167$3.94
BASE<0.01%$0.0000836,087.1511$0.5024
BASE<0.01%$0.01778916.9533$0.3015
BASE<0.01%$0.7752160.1998$0.1549
BASE<0.01%$0.3456270.4406$0.1522
UNI0.21%$2,325.830.00611022$14.21
POL0.12%$0.09962282.4193$8.21
POL0.03%$2,321.40.00095591$2.22
POL<0.01%$73,5200.00000179$0.1316
OP0.04%$2,326.390.00114418$2.66
OP0.03%$0.9998991.973$1.97
AVAX0.02%$11.65$1.65
AVAX<0.01%$10.260.0658$0.674871
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.