Source Code
Overview
ETH Balance
0.459754361433929743 ETH
Token Holdings
More Info
ContractCreator
Multichain Info
N/A
Latest 14 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5993839 | 192 days ago | 0.01 ETH | ||||
5993839 | 192 days ago | 0.00272679 ETH | ||||
5993833 | 192 days ago | 0.01 ETH | ||||
5993833 | 192 days ago | 0.00170951 ETH | ||||
5993830 | 192 days ago | 0.01 ETH | ||||
5993830 | 192 days ago | 0.00430625 ETH | ||||
5993826 | 192 days ago | 0.01 ETH | ||||
5993826 | 192 days ago | 0.02176152 ETH | ||||
5991669 | 192 days ago | 0.00023495 ETH | ||||
5991625 | 192 days ago | 0.00018088 ETH | ||||
5991570 | 192 days ago | 0.00012566 ETH | ||||
5991561 | 192 days ago | 0.00006509 ETH | ||||
5991555 | 192 days ago | 0.00058236 ETH | ||||
5991555 | 192 days ago | Contract Creation | 0 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.