ETH Price: $1,989.56 (+2.09%)

Contract

0xaE8aAc6382ef9cD7FEf997af37fc80C764e2Bb50
 

More Info

Private Name Tags

Multichain Info

Transaction Hash
Method
Block
From
To
Exec Transaction243837632026-02-04 13:23:1132 days ago1770211391IN
0xaE8aAc63...764e2Bb50
0 ETH0.000033090.20500681
Exec Transaction243575312026-01-31 21:26:4736 days ago1769894807IN
0xaE8aAc63...764e2Bb50
0 ETH0.000870971.98102712
Exec Transaction243574692026-01-31 21:14:2336 days ago1769894063IN
0xaE8aAc63...764e2Bb50
0 ETH0.000562071.21117882
Exec Transaction243573102026-01-31 20:42:2336 days ago1769892143IN
0xaE8aAc63...764e2Bb50
0 ETH0.00020251.63324471
Exec Transaction243568812026-01-31 19:15:3536 days ago1769886935IN
0xaE8aAc63...764e2Bb50
0 ETH0.0007483710.0365133
Exec Transaction242114922026-01-11 12:33:2356 days ago1768134803IN
0xaE8aAc63...764e2Bb50
0 ETH0.000023710.0420019
Exec Transaction242114802026-01-11 12:30:5956 days ago1768134659IN
0xaE8aAc63...764e2Bb50
0 ETH0.000016850.03540513
Exec Transaction242114762026-01-11 12:30:1156 days ago1768134611IN
0xaE8aAc63...764e2Bb50
0 ETH0.000017970.03280461
Exec Transaction242114642026-01-11 12:27:4756 days ago1768134467IN
0xaE8aAc63...764e2Bb50
0 ETH0.000016480.0345706
Exec Transaction242113562026-01-11 12:06:1156 days ago1768133171IN
0xaE8aAc63...764e2Bb50
0 ETH0.000019130.0351626
Exec Transaction239342312025-12-03 16:54:1195 days ago1764780851IN
0xaE8aAc63...764e2Bb50
0 ETH0.000021440.04321574
Transfer239197772025-12-01 16:19:1197 days ago1764605951IN
0xaE8aAc63...764e2Bb50
1 ETH0.000047241.7287866
Exec Transaction236680952025-10-27 10:09:35132 days ago1761559775IN
0xaE8aAc63...764e2Bb50
0 ETH0.000145841.1263659
Exec Transaction231057992025-08-09 20:09:47211 days ago1754770187IN
0xaE8aAc63...764e2Bb50
0 ETH0.000274440.63708525
Exec Transaction231057962025-08-09 20:09:11211 days ago1754770151IN
0xaE8aAc63...764e2Bb50
0 ETH0.000291380.60500386
Exec Transaction229609342025-07-20 14:14:59231 days ago1753020899IN
0xaE8aAc63...764e2Bb50
0 ETH0.000907783.04635392
Transfer220682692025-03-17 18:02:23356 days ago1742234543IN
0xaE8aAc63...764e2Bb50
1.03 ETH0.00004161.52237892
Transfer217947342025-02-07 12:49:11394 days ago1738932551IN
0xaE8aAc63...764e2Bb50
0.0123719 ETH0.000032791.2

Latest 8 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer243717042026-02-02 20:57:1134 days ago1770065831
0xaE8aAc63...764e2Bb50
0.55970387 ETH
Transfer242924812026-01-22 19:41:3545 days ago1769110895
0xaE8aAc63...764e2Bb50
0.51163773 ETH
Swap Tokens Sing...239342312025-12-03 16:54:1195 days ago1764780851
0xaE8aAc63...764e2Bb50
1 ETH
Swap Tokens Sing...231057992025-08-09 20:09:47211 days ago1754770187
0xaE8aAc63...764e2Bb50
1 ETH
Swap Tokens Sing...231057962025-08-09 20:09:11211 days ago1754770151
0xaE8aAc63...764e2Bb50
1 ETH
Swap And Start B...229609342025-07-20 14:14:59231 days ago1753020899
0xaE8aAc63...764e2Bb50
1 ETH
Transfer219720532025-03-04 7:32:23369 days ago1741073543
0xaE8aAc63...764e2Bb50
1.02508937 ETH
0x60806040217946662025-02-07 12:35:35394 days ago1738931735  Contract Creation0 ETH
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
0xaE8aAc6382ef9cD7FEf997af37fc80C764e2Bb50
Net Worth in USD
$16,391.69

Net Worth in ETH
8.232556

Token Allocations
USDC 34.97%
ETH 13.82%
BNB 8.25%
Others 42.96%
Chain Token Portfolio % Price Amount Value
ETH27.45%$0.999954,500.4084$4,500.18
ETH
Ether (ETH)
13.82%$1,989.561.1388$2,265.72
ETH5.72%$8.74107.2894$937.71
ETH4.47%$0.2490782,939.9891$732.29
ETH3.00%$0.0988594,976.3798$491.96
ETH1.15%$8.2222.9981$189.04
ETH0.57%$1.3270.3278$92.83
ETH0.29%$0.096687493.3992$47.71
ETH0.08%$0.07467184.928$13.81
ETH0.04%$0.0000051,078,515.58$5.78
ETH<0.01%$0.000.01$0.00
BSC8.25%$624.272.166$1,352.16
BSC7.73%$0.999851,267.8895$1,267.7
BSC0.26%$0.0000058,084,948.9242$43.21
POL7.51%$0.999911,231.3208$1,231.21
POL6.66%$0.09683411,277.4192$1,092.04
HYPEREVM7.32%$30.938.8124$1,199.35
ARB3.15%$0.0971255,317.9674$516.51
OP2.52%$0.1170073,524.2084$412.36
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.