Source Code
Latest 23 from a total of 23 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Exec Transaction | 24041461 | 70 days ago | IN | 0 ETH | 0.00000963 | ||||
| Exec Transaction | 23617274 | 130 days ago | IN | 0 ETH | 0.00002448 | ||||
| Exec Transaction | 22652174 | 265 days ago | IN | 0 ETH | 0.00015822 | ||||
| Exec Transaction | 22043474 | 350 days ago | IN | 0 ETH | 0.00006522 | ||||
| Exec Transaction | 22015961 | 354 days ago | IN | 0 ETH | 0.00027801 | ||||
| Exec Transaction | 21893972 | 371 days ago | IN | 0 ETH | 0.00009887 | ||||
| Exec Transaction | 21858465 | 376 days ago | IN | 0 ETH | 0.00008121 | ||||
| Exec Transaction | 21735619 | 393 days ago | IN | 0 ETH | 0.00095726 | ||||
| Exec Transaction | 21688232 | 399 days ago | IN | 0 ETH | 0.00078956 | ||||
| Exec Transaction | 21514563 | 424 days ago | IN | 0 ETH | 0.00038835 | ||||
| Exec Transaction | 21514556 | 424 days ago | IN | 0 ETH | 0.00061913 | ||||
| Exec Transaction | 21509377 | 424 days ago | IN | 0 ETH | 0.00131937 | ||||
| Exec Transaction | 21509370 | 424 days ago | IN | 0 ETH | 0.000645 | ||||
| Exec Transaction | 21509340 | 424 days ago | IN | 0 ETH | 0.00131355 | ||||
| Exec Transaction | 21480488 | 428 days ago | IN | 0 ETH | 0.00066813 | ||||
| Exec Transaction | 21474200 | 429 days ago | IN | 0 ETH | 0.000918 | ||||
| Exec Transaction | 21192383 | 469 days ago | IN | 0 ETH | 0.00156342 | ||||
| Exec Transaction | 21192380 | 469 days ago | IN | 0 ETH | 0.00186229 | ||||
| Exec Transaction | 21192374 | 469 days ago | IN | 0 ETH | 0.00191239 | ||||
| Exec Transaction | 21192355 | 469 days ago | IN | 0 ETH | 0.00107391 | ||||
| Exec Transaction | 21122443 | 478 days ago | IN | 0 ETH | 0.00759456 | ||||
| Exec Transaction | 21122420 | 478 days ago | IN | 0 ETH | 0.00889321 | ||||
| Exec Transaction | 21122410 | 478 days ago | IN | 0 ETH | 0.01173092 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 24041461 | 70 days ago | 0.00001069 ETH | ||||
| Swap And Start B... | 24041461 | 70 days ago | 0.01701357 ETH | ||||
| Transfer | 24041461 | 70 days ago | 0.00001703 ETH | ||||
| Transfer | 23617274 | 130 days ago | 0.0000295 ETH | ||||
| Transfer | 23617274 | 130 days ago | 0.0012584 ETH | ||||
| Transfer | 22652174 | 265 days ago | 0.00019864 ETH | ||||
| Transfer | 22652174 | 265 days ago | 0.01 ETH | ||||
| Transfer | 22043474 | 350 days ago | 0.00007634 ETH | ||||
| Transfer | 22015961 | 354 days ago | 0.00034712 ETH | ||||
| Deposit | 22015961 | 354 days ago | 0.00246842 ETH | ||||
| Transfer | 22015961 | 354 days ago | 0.00000618 ETH | ||||
| Transfer | 21893972 | 371 days ago | 0.00010157 ETH | ||||
| Deposit V3 | 21893972 | 371 days ago | 0.11340683 ETH | ||||
| Transfer | 21893972 | 371 days ago | 0.00011352 ETH | ||||
| Transfer | 21858465 | 376 days ago | 0.00008181 ETH | ||||
| Transfer | 21735619 | 393 days ago | 0.00102161 ETH | ||||
| Get RSETH With E... | 21735619 | 393 days ago | 0.005 ETH | ||||
| Transfer | 21688232 | 399 days ago | 0.00085279 ETH | ||||
| Transfer | 21688232 | 399 days ago | 0.04373092 ETH | ||||
| Transfer | 21514563 | 424 days ago | 0.00040132 ETH | ||||
| Deposit V3 | 21514563 | 424 days ago | 0.33 ETH | ||||
| Transfer | 21514556 | 424 days ago | 0.00071463 ETH | ||||
| Transfer | 21514556 | 424 days ago | 0.20111862 ETH | ||||
| Transfer | 21509377 | 424 days ago | 0.0014718 ETH | ||||
| Transfer | 21509377 | 424 days ago | 0.19355876 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 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
$97.01
Net Worth in ETH
0.049587
Token Allocations
WETH
37.57%
ETH
14.88%
ABASWETH
11.52%
Others
36.02%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| BERA | 31.48% | $4,175.51 | 0.00731344 | $30.54 | |
| BERA | 8.28% | $76,149 | 0.00010551 | $8.03 | |
| BASE | 11.52% | $1,969.05 | 0.00567726 | $11.18 | |
| BASE | 10.77% | $1,957.87 | 0.00533472 | $10.44 | |
| BASE | 0.13% | $76,388 | 0.00000167 | $0.1275 | |
| BSC | 10.55% | $614.07 | 0.0167 | $10.23 | |
| BSC | 3.74% | $1 | 3.6235 | $3.62 | |
| BSC | 1.14% | $117.63 | 0.00940065 | $1.11 | |
| ETH | 10.54% | $2,102.58 | 0.0048647 | $10.23 | |
| ETH | 2.00% | $1,958.01 | 0.0009893 | $1.94 | |
| ETH | 0.27% | $1.18 | 0.2259 | $0.2661 | |
| ETH | 0.27% | $1.18 | 0.2259 | $0.2661 | |
| SCROLL | 6.09% | $2,257.96 | 0.0026179 | $5.91 | |
| SCROLL | 0.37% | $2,423.78 | 0.00014715 | $0.3566 | |
| ARB | 2.02% | $1,958.45 | 0.00099848 | $1.96 | |
| ARB | 0.73% | $0.999198 | 0.7101 | $0.7095 | |
| BLAST | 0.10% | $1,957.94 | 0.00005095 | $0.099762 |
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.