Source Code
Overview
ETH Balance
0.540591001336768826 ETH
More Info
ContractCreator
Multichain Info
N/A
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
6195655 | 224 days ago | 0.0034748 ETH | ||||
6195633 | 224 days ago | 0.00851844 ETH | ||||
6191141 | 225 days ago | 0.00560074 ETH | ||||
6191123 | 225 days ago | 0.0098143 ETH | ||||
6190992 | 225 days ago | 0.00054079 ETH | ||||
6190973 | 225 days ago | 0.00072407 ETH | ||||
6190942 | 225 days ago | 0.00003392 ETH | ||||
6190798 | 225 days ago | 0.00668049 ETH | ||||
6190718 | 225 days ago | 0.00270433 ETH | ||||
6190336 | 225 days ago | 0.00207485 ETH | ||||
6190333 | 225 days ago | 0.00546417 ETH | ||||
6190333 | 225 days ago | 0.00822326 ETH | ||||
6125319 | 234 days ago | 0.00066471 ETH | ||||
6105151 | 237 days ago | 0.00481261 ETH | ||||
6105149 | 237 days ago | 0.00801849 ETH | ||||
6105149 | 237 days ago | 0.0007666 ETH | ||||
6104715 | 237 days ago | 0.00222125 ETH | ||||
6104692 | 237 days ago | 0.00233128 ETH | ||||
6104521 | 237 days ago | 0.00078676 ETH | ||||
6104446 | 237 days ago | 0.1 ETH | ||||
6104437 | 237 days ago | 0.1 ETH | ||||
6104432 | 237 days ago | 0.00000467 ETH | ||||
6097296 | 238 days ago | 0.00389832 ETH | ||||
6097287 | 238 days ago | 0.00843103 ETH | ||||
6097230 | 238 days ago | 0.00440509 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 0x734fdf52...0F3f9A82d 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": {} }
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220848d096f9c481a5b694ab87e0a4c770de1a5316a9072906cfdc9799c6c7d50d064736f6c63430008110033
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.