Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24075732 | 73 days ago | 0.00006868 ETH | ||||
| Transfer | 23934043 | 93 days ago | 0.00001609 ETH | ||||
| Transfer | 23934038 | 93 days ago | 0.00001609 ETH | ||||
| Transfer | 23933997 | 93 days ago | 0.00001571 ETH | ||||
| Transfer | 23933986 | 93 days ago | 0.00001532 ETH | ||||
| Transfer | 23933957 | 93 days ago | 0.00001733 ETH | ||||
| Transfer | 23933939 | 93 days ago | 0.00001378 ETH | ||||
| Swap Tokens Mult... | 23933898 | 93 days ago | 0.0003 ETH | ||||
| Transfer | 23933898 | 93 days ago | 0.00006775 ETH | ||||
| Transfer | 23933785 | 93 days ago | 0.001138 ETH | ||||
| Transfer | 23933014 | 93 days ago | 0.00001462 ETH | ||||
| Transfer | 23896239 | 98 days ago | 0.00001192 ETH | ||||
| Transfer | 23896235 | 98 days ago | 0.00001055 ETH | ||||
| Transfer | 23889857 | 99 days ago | 0.00004904 ETH | ||||
| Transfer | 23883483 | 100 days ago | 0.00000575 ETH | ||||
| Transfer | 23777006 | 115 days ago | 0.003334 ETH | ||||
| Transfer | 23776999 | 115 days ago | 0.00331 ETH | ||||
| Transfer | 23684121 | 128 days ago | 0.00021714 ETH | ||||
| Transfer | 23683621 | 128 days ago | 0.00017973 ETH | ||||
| Transfer | 23683502 | 128 days ago | 0.00011128 ETH | ||||
| Transfer | 23683495 | 128 days ago | 0.00012102 ETH | ||||
| Transfer | 23683486 | 128 days ago | 0.00015051 ETH | ||||
| Transfer | 23683445 | 128 days ago | 0.00008715 ETH | ||||
| Transfer | 23683434 | 128 days ago | 0.00014707 ETH | ||||
| Swap And Start B... | 23682196 | 128 days ago | 0.001198 ETH |
Loading...
Loading
Loading...
Loading
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 0xbe6E7581...0978C932f 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 - <stefan@gnosis.io>
* @author Richard Meissner - <richard@gnosis.io>
*/
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"}]Contract Creation Code
0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000041675c099f32341bf84bfc5382af534df5c7461a
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$19.18
Net Worth in ETH
0.009679
Token Allocations
USDC
28.78%
VSN
22.15%
BAS
17.28%
Others
31.80%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| OP | 24.70% | $0.999999 | 4.7369 | $4.74 | |
| OP | 6.88% | $8.79 | 0.1501 | $1.32 | |
| OP | 0.31% | $1,980.7 | 0.00003016 | $0.059744 | |
| ETH | 16.07% | $0.051279 | 60.0945 | $3.08 | |
| ETH | 7.22% | $1,981.57 | 0.00069868 | $1.38 | |
| ETH | 2.73% | $1,977.5 | 0.00026448 | $0.523 | |
| ETH | 2.11% | $1,981.57 | 0.00020383 | $0.4039 | |
| ETH | 0.89% | $0.999958 | 0.1709 | $0.1708 | |
| BSC | 17.28% | $0.006661 | 497.3547 | $3.31 | |
| POL | 10.90% | $0.00 | 2.0895 | $0.00 | |
| ARB | 6.08% | $0.051282 | 22.7441 | $1.17 | |
| ARB | 4.08% | $0.999977 | 0.7819 | $0.7818 | |
| ARB | 0.62% | $8.78 | 0.0136 | $0.1196 | |
| BASE | 0.11% | $1,981.03 | 0.00001018 | $0.020177 | |
| AVAX | 0.03% | $8.97 | 0.00071923 | $0.00645 |
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.