Source Code
Overview
ETH Balance
0.00032509233465091 ETH
Token Holdings
More Info
ContractCreator
Multichain Info
N/A
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 9949948 | 344 days ago | IN | 0.09 ETH | 0.0000315 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
15778406 | 209 days ago | 0.04856784 ETH | ||||
11384454 | 311 days ago | 0.000041 ETH | ||||
11384419 | 311 days ago | 0.000031 ETH | ||||
11384382 | 311 days ago | 0.000033 ETH | ||||
11384327 | 311 days ago | 0.000034 ETH | ||||
11384294 | 311 days ago | 0.000053 ETH | ||||
11384263 | 311 days ago | 0.000064 ETH | ||||
11384232 | 311 days ago | 0.000041 ETH | ||||
11384198 | 311 days ago | 0.000031 ETH | ||||
11384168 | 311 days ago | 0.000036 ETH | ||||
11384133 | 311 days ago | 0.000036 ETH | ||||
11384102 | 311 days ago | 0.000033 ETH | ||||
11384070 | 311 days ago | 0.000038 ETH | ||||
11384030 | 311 days ago | 0.00003 ETH | ||||
11383987 | 311 days ago | 0.00006 ETH | ||||
11383952 | 311 days ago | 0.000048 ETH | ||||
11383917 | 311 days ago | 0.000037 ETH | ||||
11383882 | 311 days ago | 0.000051 ETH | ||||
11383818 | 311 days ago | 0.000046 ETH | ||||
11383784 | 311 days ago | 0.000044 ETH | ||||
11383739 | 311 days ago | 0.000051 ETH | ||||
11383693 | 311 days ago | 0.000053 ETH | ||||
11383635 | 311 days ago | 0.000058 ETH | ||||
11383484 | 311 days ago | 0.000041 ETH | ||||
11383452 | 311 days ago | 0.000055 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x49Bb4587...d91eECCA3 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Proxy
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; /** * @title Proxy // This is the user's Smart Account * @notice Basic proxy that delegates all calls to a fixed implementation contract. * @dev Implementation address is stored in the slot defined by the Proxy's address */ contract Proxy { constructor(address _implementation) { require( _implementation != address(0), "Invalid implementation address" ); assembly { sstore(address(), _implementation) } } fallback() external payable { address target; assembly { target := sload(address()) calldatacopy(0, 0, calldatasize()) let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0) returndatacopy(0, 0, returndatasize()) switch result case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } }
{ "optimizer": { "enabled": true, "runs": 800 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c63430008110033
Loading...
Loading
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.