ETH Price: $2,325.59 (-5.08%)

Contract

0xAa19a68709BBd7f36c0c4b9ce5eC4AB1d5951aA8
 

Overview

ETH Balance

0.00000212 ETH

Eth Value

Less Than $0.01 (@ $2,325.59/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction208836452024-10-03 7:58:235 hrs ago1727942303IN
0xAa19a687...1d5951aA8
0 ETH0.00072776.24245002
Exec Transaction208836342024-10-03 7:56:115 hrs ago1727942171IN
0xAa19a687...1d5951aA8
0 ETH0.000585556.81833459
Exec Transaction208836102024-10-03 7:51:235 hrs ago1727941883IN
0xAa19a687...1d5951aA8
0 ETH0.003402646.6
Exec Transaction208835952024-10-03 7:48:235 hrs ago1727941703IN
0xAa19a687...1d5951aA8
0 ETH0.000484676
Exec Transaction208835892024-10-03 7:47:115 hrs ago1727941631IN
0xAa19a687...1d5951aA8
0 ETH0.00303945.96211111
Exec Transaction208835832024-10-03 7:45:595 hrs ago1727941559IN
0xAa19a687...1d5951aA8
0 ETH0.00313436.3
Exec Transaction208835752024-10-03 7:44:235 hrs ago1727941463IN
0xAa19a687...1d5951aA8
0 ETH0.000529256.02049274
Exec Transaction208835532024-10-03 7:39:595 hrs ago1727941199IN
0xAa19a687...1d5951aA8
0 ETH0.001152216.44893122
Transfer208835162024-10-03 7:32:355 hrs ago1727940755IN
0xAa19a687...1d5951aA8
34 ETH0.000192447.04179585
Transfer208834372024-10-03 7:16:476 hrs ago1727939807IN
0xAa19a687...1d5951aA8
2.70338147 ETH0.000185666.79366648
Exec Transaction208833752024-10-03 7:04:236 hrs ago1727939063IN
0xAa19a687...1d5951aA8
0 ETH0.00029743.88257402
Transfer208833382024-10-03 6:56:596 hrs ago1727938619IN
0xAa19a687...1d5951aA8
0.1 ETH0.000139585.10739569

Latest 5 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
208835892024-10-03 7:47:115 hrs ago1727941631
0xAa19a687...1d5951aA8
148.08478 ETH
208835532024-10-03 7:39:595 hrs ago1727941199
0xAa19a687...1d5951aA8
150 ETH
208835252024-10-03 7:34:235 hrs ago1727940863
0xAa19a687...1d5951aA8
261.29140065 ETH
208833752024-10-03 7:04:236 hrs ago1727939063
0xAa19a687...1d5951aA8
0.01 ETH
208833042024-10-03 6:50:116 hrs ago1727938211  Contract Creation0 ETH
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
File 1 of 1 : SafeProxy.sol
// 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 - <[email protected]>
 * @author Richard Meissner - <[email protected]>
 */
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

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

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.