Source Code
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Exec Transaction | 23828317 | 3 hrs ago | IN | 0 ETH | 0.00021471 | ||||
| Exec Transaction | 23828313 | 4 hrs ago | IN | 0 ETH | 0.00000943 | ||||
| Exec Transaction | 23669462 | 22 days ago | IN | 0 ETH | 0.00040109 | ||||
| Exec Transaction | 22784288 | 146 days ago | IN | 0 ETH | 0.00033658 | ||||
| Exec Transaction | 22726876 | 154 days ago | IN | 0 ETH | 0.00006542 | ||||
| Exec Transaction | 22377610 | 203 days ago | IN | 0 ETH | 0.00003978 | ||||
| Transfer | 22301707 | 213 days ago | IN | 0.000001 ETH | 0.00002251 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 23326381 | 70 days ago | 0.00018372 ETH | ||||
| Transfer | 23326344 | 70 days ago | 0.00012509 ETH | ||||
| Transfer | 23325767 | 70 days ago | 0.00012775 ETH | ||||
| Transfer | 23325350 | 70 days ago | 0.00009177 ETH | ||||
| Transfer | 23325260 | 70 days ago | 0.00009014 ETH | ||||
| Transfer | 23324614 | 70 days ago | 0.00011764 ETH | ||||
| Transfer | 23324287 | 70 days ago | 0.00007216 ETH | ||||
| Transfer | 23323148 | 70 days ago | 0.00003386 ETH | ||||
| Transfer | 23321776 | 71 days ago | 0.00008224 ETH | ||||
| Transfer | 23320782 | 71 days ago | 0.00007367 ETH | ||||
| Transfer | 23320470 | 71 days ago | 0.00008078 ETH | ||||
| Transfer | 23320128 | 71 days ago | 0.00013477 ETH | ||||
| Transfer | 23319925 | 71 days ago | 0.00009324 ETH | ||||
| Transfer | 23319760 | 71 days ago | 0.00018298 ETH | ||||
| Transfer | 23319544 | 71 days ago | 0.00016848 ETH | ||||
| Transfer | 23318966 | 71 days ago | 0.00024608 ETH | ||||
| Transfer | 23318777 | 71 days ago | 0.00083935 ETH | ||||
| Transfer | 23318773 | 71 days ago | 0.00083935 ETH | ||||
| Transfer | 23318771 | 71 days ago | 0.00086636 ETH | ||||
| Transfer | 23317858 | 71 days ago | 0.00017259 ETH | ||||
| Transfer | 23317520 | 71 days ago | 0.00006832 ETH | ||||
| Transfer | 23317487 | 71 days ago | 0.00007072 ETH | ||||
| Transfer | 23315719 | 71 days ago | 0.00015047 ETH | ||||
| Transfer | 23315351 | 71 days ago | 0.00003337 ETH | ||||
| Transfer | 23314875 | 71 days ago | 0.00003573 ETH |
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 - <[email protected]>
* @author Richard Meissner - <[email protected]>
*/
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
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 56.39% | $0.999709 | 99,423.2498 | $99,394.32 | |
| ARB | 3.11% | $0.002741 | 2,000,000 | $5,481.05 | |
| ARB | 1.34% | $0.999604 | 2,369.8413 | $2,368.9 | |
| ARB | 0.66% | $0.999709 | 1,162.8189 | $1,162.48 | |
| ARB | 0.47% | $3,101.38 | 0.2676 | $829.95 | |
| ARB | 0.02% | $3,105.56 | 0.0131 | $40.54 | |
| ARB | <0.01% | $0.235954 | 0.7556 | $0.1782 | |
| ETH | 9.89% | $0.999717 | 17,429.4002 | $17,424.47 | |
| ETH | 3.58% | $0.999517 | 6,319.142 | $6,316.09 | |
| ETH | 0.67% | $3,100.92 | 0.3823 | $1,185.35 | |
| ETH | 0.03% | $3,100.92 | 0.0156 | $48.41 | |
| ETH | <0.01% | $92,657 | 0.0000136 | $1.26 | |
| ETH | <0.01% | $0.00185 | 491.4319 | $0.9091 | |
| ETH | <0.01% | $139.94 | 0.00219468 | $0.3071 | |
| BASE | 5.95% | $0.999717 | 10,482.9518 | $10,479.99 | |
| BASE | 3.86% | $0.021137 | 322,033.1718 | $6,806.95 | |
| BASE | 3.19% | $0.998581 | 5,637.6461 | $5,629.65 | |
| BASE | 0.72% | $3,101.28 | 0.4093 | $1,269.39 | |
| BASE | 0.11% | $3,104.86 | 0.06 | $186.28 | |
| BSC | 4.58% | $0.999782 | 8,081.4553 | $8,079.7 | |
| BSC | 4.47% | $0.999536 | 7,883.9281 | $7,880.27 | |
| BSC | 0.52% | $930.35 | 0.9802 | $911.9 | |
| BSC | 0.20% | $0.021231 | 16,586.0828 | $352.14 | |
| BSC | 0.07% | $3,118.56 | 0.0408 | $127.29 | |
| BSC | <0.01% | $932.04 | 0.00013242 | $0.1234 | |
| SONIC | 0.15% | $0.999709 | 260.6792 | $260.6 | |
| SONIC | <0.01% | $0.123038 | 84.4396 | $10.39 | |
| SONIC | <0.01% | $3,105.45 | 0.00275277 | $8.55 | |
| SONIC | <0.01% | $0.123187 | 4.1519 | $0.5114 |
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.