Latest 25 from a total of 238 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Exec Transaction | 23977889 | 96 days ago | IN | 0 ETH | 0.00011565 | ||||
| Exec Transaction | 23977831 | 96 days ago | IN | 0 ETH | 0.00020289 | ||||
| Exec Transaction | 23977817 | 96 days ago | IN | 0 ETH | 0.00001844 | ||||
| Exec Transaction | 23627021 | 145 days ago | IN | 0 ETH | 0.00007793 | ||||
| Exec Transaction | 23599749 | 149 days ago | IN | 0 ETH | 0.00001881 | ||||
| Transfer | 23571485 | 153 days ago | IN | 19.9998 ETH | 0.00000872 | ||||
| Exec Transaction | 23535784 | 158 days ago | IN | 0 ETH | 0.00001772 | ||||
| Exec Transaction | 23535761 | 158 days ago | IN | 0 ETH | 0.00001182 | ||||
| Exec Transaction | 23255246 | 197 days ago | IN | 0 ETH | 0.00001378 | ||||
| Exec Transaction | 23255236 | 197 days ago | IN | 0 ETH | 0.00001111 | ||||
| Exec Transaction | 23232954 | 200 days ago | IN | 0 ETH | 0.00011325 | ||||
| Exec Transaction | 23232878 | 200 days ago | IN | 0 ETH | 0.00027823 | ||||
| Exec Transaction | 23192472 | 206 days ago | IN | 0 ETH | 0.00000947 | ||||
| Exec Transaction | 23192467 | 206 days ago | IN | 0 ETH | 0.00001312 | ||||
| Exec Transaction | 23192446 | 206 days ago | IN | 0 ETH | 0.0000311 | ||||
| Exec Transaction | 23192421 | 206 days ago | IN | 0 ETH | 0.0000168 | ||||
| Exec Transaction | 23192416 | 206 days ago | IN | 0 ETH | 0.00001055 | ||||
| Exec Transaction | 23192412 | 206 days ago | IN | 0 ETH | 0.00001219 | ||||
| Exec Transaction | 23170649 | 209 days ago | IN | 0 ETH | 0.00002439 | ||||
| Exec Transaction | 23170606 | 209 days ago | IN | 0 ETH | 0.00002943 | ||||
| Exec Transaction | 23170568 | 209 days ago | IN | 0 ETH | 0.00025193 | ||||
| Exec Transaction | 23170554 | 209 days ago | IN | 0 ETH | 0.00023085 | ||||
| Exec Transaction | 23170518 | 209 days ago | IN | 0 ETH | 0.00011084 | ||||
| Transfer | 23170503 | 209 days ago | IN | 0.002 ETH | 0.00003769 | ||||
| Exec Transaction | 23168916 | 209 days ago | IN | 0 ETH | 0.00018643 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 23627021 | 145 days ago | 14.9647495 ETH | ||||
| Transfer | 23599749 | 149 days ago | 15 ETH | ||||
| Transfer | 23535784 | 158 days ago | 20 ETH | ||||
| Transfer | 23535761 | 158 days ago | 10 ETH | ||||
| Transfer | 23461222 | 168 days ago | 23.75844764 ETH | ||||
| Transfer | 23461172 | 168 days ago | 16.20650185 ETH | ||||
| Transfer | 23255246 | 197 days ago | 60.4518991 ETH | ||||
| Transfer | 23255236 | 197 days ago | 60.4518991 ETH | ||||
| Deposit | 23192416 | 206 days ago | 13.28003497 ETH | ||||
| Transfer | 23170649 | 209 days ago | 130 ETH | ||||
| Transfer | 23170610 | 209 days ago | 143.27803497 ETH | ||||
| Transfer | 23132359 | 214 days ago | 27.80216811 ETH | ||||
| Transfer | 23132029 | 214 days ago | 27.7785839 ETH | ||||
| Transfer | 22566538 | 293 days ago | 0.0035842 ETH | ||||
| Exec Transaction | 22517672 | 300 days ago | 0.0375 ETH | ||||
| Transfer | 21840183 | 395 days ago | 0.0375 ETH | ||||
| Transfer | 21772338 | 404 days ago | 1.74882215 ETH | ||||
| Transfer | 21772334 | 404 days ago | 1.74882215 ETH | ||||
| Transfer | 21768646 | 405 days ago | 18.87139384 ETH | ||||
| Transfer | 21768590 | 405 days ago | 18.8682543 ETH | ||||
| Transfer | 21697469 | 415 days ago | 0.00144463 ETH | ||||
| Open Trove With ... | 21688121 | 416 days ago | 0.0375 ETH | ||||
| Deposit | 21612156 | 427 days ago | 69.926 ETH | ||||
| Transfer | 21612125 | 427 days ago | 69.92251415 ETH | ||||
| Transfer | 21611678 | 427 days ago | 0.00014216 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
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
Net Worth in USD
$160,318.33
Net Worth in ETH
71.297816
Token Allocations
WETH
97.16%
ACX
2.55%
STETH
0.16%
Others
0.13%
Multichain Portfolio | 33 Chains
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.