ETH Price: $2,333.41 (-1.04%)

Contract

0xEf8925cebCa6D9c01B0eA962f30a4D37D5704Be7
 

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and > 10 Token Transfers found.

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Call Bridge Call224588202025-05-11 8:10:11310 days ago1746951011
0xEf8925ce...7D5704Be7
0.00005756 ETH
Transfer224588202025-05-11 8:10:11310 days ago1746951011
0xEf8925ce...7D5704Be7
0.00006027 ETH
Call Bridge Call224325312025-05-07 15:06:47314 days ago1746630407
0xEf8925ce...7D5704Be7
0.0000566 ETH
Transfer224325312025-05-07 15:06:47314 days ago1746630407
0xEf8925ce...7D5704Be7
0.00005904 ETH
Call Bridge Call223821392025-04-30 13:24:11321 days ago1746019451
0xEf8925ce...7D5704Be7
0.00006679 ETH
Transfer223821392025-04-30 13:24:11321 days ago1746019451
0xEf8925ce...7D5704Be7
0.00006962 ETH
Call Bridge Call222761292025-04-15 18:19:47336 days ago1744741187
0xEf8925ce...7D5704Be7
0.00005311 ETH
Transfer222761292025-04-15 18:19:47336 days ago1744741187
0xEf8925ce...7D5704Be7
0.0000552 ETH
Call Bridge Call222309312025-04-09 11:04:59342 days ago1744196699
0xEf8925ce...7D5704Be7
0.00006844 ETH
Transfer222309312025-04-09 11:04:59342 days ago1744196699
0xEf8925ce...7D5704Be7
0.00007164 ETH
Transfer221660532025-03-31 9:38:23351 days ago1743413903
0xEf8925ce...7D5704Be7
0.00000154 ETH
0x95950dee221660532025-03-31 9:38:23351 days ago1743413903
0xEf8925ce...7D5704Be7
0.00001185 ETH
Call Bridge Call221541992025-03-29 17:58:23353 days ago1743271103
0xEf8925ce...7D5704Be7
0.00005488 ETH
Transfer221541992025-03-29 17:58:23353 days ago1743271103
0xEf8925ce...7D5704Be7
0.00005762 ETH
Call Bridge Call221447022025-03-28 10:05:35354 days ago1743156335
0xEf8925ce...7D5704Be7
0.00005728 ETH
Transfer221447022025-03-28 10:05:35354 days ago1743156335
0xEf8925ce...7D5704Be7
0.0000601 ETH
Call Bridge Call221441982025-03-28 8:24:11354 days ago1743150251
0xEf8925ce...7D5704Be7
0.00005729 ETH
Transfer221441982025-03-28 8:24:11354 days ago1743150251
0xEf8925ce...7D5704Be7
0.00006011 ETH
Call Bridge Call221315712025-03-26 14:06:47356 days ago1742998007
0xEf8925ce...7D5704Be7
0.00007406 ETH
Transfer221315712025-03-26 14:06:47356 days ago1742998007
0xEf8925ce...7D5704Be7
0.00007751 ETH
Call Bridge Call220953922025-03-21 12:58:23361 days ago1742561903
0xEf8925ce...7D5704Be7
0.00005497 ETH
Transfer220953922025-03-21 12:58:23361 days ago1742561903
0xEf8925ce...7D5704Be7
0.00005731 ETH
Call Bridge Call220741892025-03-18 13:54:23364 days ago1742306063
0xEf8925ce...7D5704Be7
0.00005778 ETH
Transfer220741892025-03-18 13:54:23364 days ago1742306063
0xEf8925ce...7D5704Be7
0.00006023 ETH
Call Bridge Call220586182025-03-16 9:42:35366 days ago1742118155
0xEf8925ce...7D5704Be7
0.000058 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading

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"}]

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000029fcb43b46531bca003ddc8fcb67ffe91900c762

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0xEf8925cebCa6D9c01B0eA962f30a4D37D5704Be7
Net Worth in USD
$820.40

Net Worth in ETH
0.351586

Token Allocations
VIRTUAL 9.56%
KAS 7.73%
ETH 7.47%
Others 75.24%
Chain Token Portfolio % Price Amount Value
BSC6.74%$0.0042.4521$0.00
BSC6.52%$3.2416.5217$53.53
BSC5.76%$1.2438.1206$47.27
BSC2.90%$2,340.370.0102$23.76
BSC2.77%$0.000032719,718.6285$22.71
BSC2.36%$0.0000072,881,321.2323$19.36
BSC2.16%$0.101596174.6105$17.74
BSC2.14%$0.080639217.456$17.54
BSC1.60%$1.359.7512$13.16
BSC1.50%$0.02353522.8152$12.3
BSC1.43%$1.975.9603$11.72
BSC1.38%$0.0014837,663.5283$11.36
BSC1.27%$0.49894720.8184$10.39
BSC0.83%<$0.00000129,543,271.443$6.8
BSC0.66%$1.363.9926$5.43
BSC0.45%$0.04851576.8519$3.73
BSC0.45%$0.000004994,004.48$3.7
BSC0.32%$0.02662999.9997$2.66
BSC0.06%$672.540.00068473$0.460509
BASE9.56%$0.79383498.7722$78.41
BASE4.56%$2,333.220.016$37.38
BASE3.48%$1.1225.485$28.54
BASE2.21%$0.00000130,537,294.9022$18.17
BASE1.57%$0.34982236.8579$12.89
BASE1.08%$0.001,713.8051$0.00
BASE1.08%$0.34947425.2888$8.84
BASE0.93%$0.026813284.3835$7.63
BASE0.60%<$0.00000128,063,397.3471$4.92
BASE0.58%$0.034656137.8223$4.78
BASE0.52%$0.0021132,000.7408$4.23
BASE0.39%$0.019895160$3.18
BASE0.13%$0.09437710.9624$1.03
POL3.11%$95.420.2677$25.55
POL3.09%$0.32293878.5859$25.38
POL2.41%$2.348.4356$19.74
POL1.97%$0.0026616,063.15$16.13
POL1.81%$74,4040.0002$14.88
POL0.74%$0.10325858.566$6.05
POL0.64%$0.06555180.2881$5.26
POL0.04%$0.0997023.696$0.368502
ETH7.73%$0.00488312,983.4833$63.4
ETH2.90%$0.118275200.9806$23.77
ETH1.98%$0.018975855.0076$16.22
ETH0.24%$2.090.945$1.97
ETH0.16%$11.314$1.31
ETH
Ether (ETH)
0.01%$2,333.020.00005055$0.117931
ARB3.05%$0.248789100.5746$25.02
ARB1.01%$2.093.9527$8.26
ARB0.59%$2.392.0161$4.82
ARB0.48%$0.003927999.9977$3.93
ARB<0.01%$2,333.280.00002665$0.062181
AVAX0.04%$0.00000482,626.7401$0.3296
AVAX<0.01%$10.290.00007397$0.000761
GNO<0.01%$0.9999720.0383$0.038294
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.