Overview
ETH Balance
30.370645091125302373 ETH
ETH Value
$54,524.21 (@ $1,795.29/ETH)More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
83369557 | 4 days ago | 0.00496296 ETH | ||||
83248712 | 13 days ago | 0.00389245 ETH | ||||
83152201 | 20 days ago | 0.01356821 ETH | ||||
82830964 | 34 days ago | 0.0112567 ETH | ||||
82693633 | 41 days ago | 0.01721731 ETH | ||||
82559063 | 48 days ago | 0.01341745 ETH | ||||
82461441 | 55 days ago | 0.0233162 ETH | ||||
82268237 | 69 days ago | 0.01031344 ETH | ||||
82150954 | 76 days ago | 0.01113582 ETH | ||||
82030028 | 83 days ago | 0.03022348 ETH | ||||
81636850 | 97 days ago | 0.01487266 ETH | ||||
81442088 | 104 days ago | 0.00199808 ETH | ||||
81416924 | 105 days ago | 0.11303744 ETH | ||||
80122145 | 145 days ago | 0.07311184 ETH | ||||
79175078 | 174 days ago | 0.08157525 ETH | ||||
77131347 | 207 days ago | 0.05753484 ETH | ||||
75414084 | 238 days ago | 0.03226659 ETH | ||||
74842110 | 262 days ago | 0.04796172 ETH | ||||
73952929 | 290 days ago | 0.04002503 ETH | ||||
73205892 | 311 days ago | 0.59034338 ETH | ||||
72492362 | 325 days ago | 1.03817464 ETH | ||||
71461241 | 332 days ago | 1.32367102 ETH | ||||
70458657 | 339 days ago | 1.57581104 ETH | ||||
69504767 | 346 days ago | 1.57513663 ETH | ||||
68482464 | 353 days ago | 1.56280975 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,795.29 | 30.3706 | $54,524.21 |
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.