Source Code
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 18382780 | 888 days ago | 0.00060814 ETH | ||||
| Transfer | 18382780 | 888 days ago | 0.02912191 ETH | ||||
| Transfer | 18382780 | 888 days ago | 0.00146264 ETH | ||||
| Transfer | 18146876 | 921 days ago | 0.00055064 ETH | ||||
| Transfer | 18146876 | 921 days ago | 0.00790955 ETH | ||||
| Transfer | 18146876 | 921 days ago | 0.00156235 ETH | ||||
| Transfer | 18146854 | 921 days ago | 0.00117246 ETH | ||||
| Transfer | 18146854 | 921 days ago | 0.0026449 ETH | ||||
| Transfer | 18126005 | 924 days ago | 0.02 ETH | ||||
| Transfer | 18125540 | 924 days ago | 0.00415041 ETH | ||||
| Submit | 18125540 | 924 days ago | 0.000001 ETH | ||||
| Transfer | 18125540 | 924 days ago | 0.00879635 ETH | ||||
| 0xe020dc5d | 18083615 | 930 days ago | 0.0001 ETH | ||||
| Transfer | 18071044 | 932 days ago | 0.00173138 ETH | ||||
| Transfer | 18071044 | 932 days ago | 0.00422018 ETH | ||||
| Transfer | 17903154 | 956 days ago | 0.00428756 ETH | ||||
| Bridge To V2 | 17903154 | 956 days ago | 0.01 ETH | ||||
| Transfer | 17903154 | 956 days ago | 0.00793632 ETH | ||||
| Submit | 17824971 | 967 days ago | 0.0001 ETH | ||||
| Submit | 17812144 | 968 days ago | 0.0001 ETH | ||||
| Transfer | 17799704 | 970 days ago | 0.00256993 ETH | ||||
| Transfer | 17799704 | 970 days ago | 0.00621787 ETH | ||||
| Transfer | 17798049 | 970 days ago | 0.00803154 ETH | ||||
| Fulfill Basic Or... | 17798049 | 970 days ago | 0 ETH | ||||
| Transfer | 17798049 | 970 days ago | 0.01439873 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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 0xe30184b5...86c5509a8 in BNB Smart Chain Mainnet The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
SmartAccountProxy
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-07-29
*/
// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.12;
/**
* A wrapper factory contract to deploy SmartAccount as an Account-Abstraction wallet contract.
*/
interface ISmartAccountProxy {
function masterCopy() external view returns (address);
}
/// @title SmartAccountProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
contract SmartAccountProxy is ISmartAccountProxy {
// 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;
/// @dev Constructor function sets address of singleton contract.
/// @param _singleton Singleton address.
function initialize(address _singleton, bytes memory _initdata) external {
require(singleton == address(0), "Initialized already");
require(_singleton != address(0), "Invalid singleton address provided");
singleton = _singleton;
(bool success,) = _singleton.delegatecall(_initdata);
require(success, "init failed");
}
function masterCopy() external view returns (address) {
return 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)
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())
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_singleton","type":"address"},{"internalType":"bytes","name":"_initdata","type":"bytes"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"masterCopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
0x608060405234801561001057600080fd5b50610352806100206000396000f3fe6080604052600436106100295760003560e01c8063a619486e14610055578063d1f5789414610081575b600080546001600160a01b03163682803781823684845af490503d82833e80610050573d82fd5b503d81f35b34801561006157600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b34801561008d57600080fd5b506100a161009c36600461021d565b6100a3565b005b6000546001600160a01b0316156100f75760405162461bcd60e51b8152602060048201526013602482015272496e697469616c697a656420616c726561647960681b60448201526064015b60405180910390fd5b6001600160a01b0382166101585760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642073696e676c65746f6e20616464726573732070726f766964604482015261195960f21b60648201526084016100ee565b600080546001600160a01b0319166001600160a01b03841690811782556040516101839084906102ed565b600060405180830381855af49150503d80600081146101be576040519150601f19603f3d011682016040523d82523d6000602084013e6101c3565b606091505b50509050806102025760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d0819985a5b195960aa1b60448201526064016100ee565b505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561023057600080fd5b82356001600160a01b038116811461024757600080fd5b9150602083013567ffffffffffffffff8082111561026457600080fd5b818501915085601f83011261027857600080fd5b81358181111561028a5761028a610207565b604051601f8201601f19908116603f011681019083821181831017156102b2576102b2610207565b816040528281528860208487010111156102cb57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b8181101561030e57602081860181015185830152016102f4565b50600092019182525091905056fea26469706673582212204562a53397a5ec95ae3a45e3c739fc82314f87e701a71907f89ebfd3656322ef64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106100295760003560e01c8063a619486e14610055578063d1f5789414610081575b600080546001600160a01b03163682803781823684845af490503d82833e80610050573d82fd5b503d81f35b34801561006157600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b34801561008d57600080fd5b506100a161009c36600461021d565b6100a3565b005b6000546001600160a01b0316156100f75760405162461bcd60e51b8152602060048201526013602482015272496e697469616c697a656420616c726561647960681b60448201526064015b60405180910390fd5b6001600160a01b0382166101585760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642073696e676c65746f6e20616464726573732070726f766964604482015261195960f21b60648201526084016100ee565b600080546001600160a01b0319166001600160a01b03841690811782556040516101839084906102ed565b600060405180830381855af49150503d80600081146101be576040519150601f19603f3d011682016040523d82523d6000602084013e6101c3565b606091505b50509050806102025760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d0819985a5b195960aa1b60448201526064016100ee565b505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561023057600080fd5b82356001600160a01b038116811461024757600080fd5b9150602083013567ffffffffffffffff8082111561026457600080fd5b818501915085601f83011261027857600080fd5b81358181111561028a5761028a610207565b604051601f8201601f19908116603f011681019083821181831017156102b2576102b2610207565b816040528281528860208487010111156102cb57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b8181101561030e57602081860181015185830152016102f4565b50600092019182525091905056fea26469706673582212204562a53397a5ec95ae3a45e3c739fc82314f87e701a71907f89ebfd3656322ef64736f6c63430008110033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$6.90
Net Worth in ETH
0.003212
Token Allocations
ETH
40.92%
GNS
28.23%
USDT
9.14%
Others
21.72%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 40.58% | $2,148.61 | 0.00130362 | $2.8 | |
| ETH | 6.46% | $2,151.3 | 0.0002072 | $0.4457 | |
| ETH | 3.11% | $2,148.61 | 0.0001 | $0.2148 | |
| ARB | 28.23% | $0.779348 | 2.5 | $1.95 | |
| ARB | 3.02% | $0.999806 | 0.2085 | $0.2084 | |
| ARB | 0.28% | $2,148.81 | 0.00000889 | $0.019095 | |
| OP | 9.14% | $0.999508 | 0.6309 | $0.6306 | |
| OP | 0.06% | $2,148.52 | 0.00000189 | $0.004061 | |
| BSC | 3.84% | $642.01 | 0.00041281 | $0.265027 | |
| BSC | 3.32% | $1.44 | 0.1593 | $0.2294 | |
| BSC | 1.95% | $0.999888 | 0.1346 | $0.1345 | |
| POL | 0.01% | $0.096703 | 0.0104 | $0.001007 |
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.