Overview
ETH Balance
142.592852952876859863 ETH
ETH Value
$255,862.54 (@ $1,794.36/ETH)More Info
Private Name Tags
ContractCreator
Latest 2 from a total of 2 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 61395061 | 392 days ago | IN | 24.26880084 ETH | 0.00000033 | ||||
Transfer | 61394791 | 392 days ago | IN | 1.025687 ETH | 0.00000033 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
83369559 | 4 days ago | 0.0029278 ETH | ||||
83369557 | 4 days ago | 0.00498957 ETH | ||||
83248736 | 13 days ago | 0.00275762 ETH | ||||
83248712 | 13 days ago | 0.00391332 ETH | ||||
83152223 | 20 days ago | 0.00225113 ETH | ||||
83152201 | 20 days ago | 0.01364096 ETH | ||||
82830973 | 34 days ago | 0.00133691 ETH | ||||
82830964 | 34 days ago | 0.01131706 ETH | ||||
82693643 | 41 days ago | 0.00366691 ETH | ||||
82693633 | 41 days ago | 0.01730963 ETH | ||||
82559080 | 48 days ago | 0.00380151 ETH | ||||
82559063 | 48 days ago | 0.01348939 ETH | ||||
82461478 | 55 days ago | 0.0025391 ETH | ||||
82461441 | 55 days ago | 0.02344122 ETH | ||||
82403050 | 62 days ago | 0.00517006 ETH | ||||
82268249 | 69 days ago | 0.00246277 ETH | ||||
82268237 | 69 days ago | 0.01036874 ETH | ||||
82150968 | 76 days ago | 0.02096306 ETH | ||||
82150954 | 76 days ago | 0.01119553 ETH | ||||
82030040 | 83 days ago | 0.02151042 ETH | ||||
82030028 | 83 days ago | 0.03038554 ETH | ||||
81823707 | 90 days ago | 0.0524299 ETH | ||||
81823668 | 90 days ago | 0.01475218 ETH | ||||
81636876 | 97 days ago | 0.0156244 ETH | ||||
81636850 | 97 days ago | 0.01495241 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x3cA27a79...41812B2cd 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 - <[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()) } } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_singleton","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ARBNOVA | 100.00% | $1,794.82 | 142.5929 | $255,928.04 |
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.