Feature Tip: Add private address tag to any address under My Name Tag !
Latest 25 from a total of 287 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 22531172 | 34 hrs ago | IN | 0 ETH | 0.00012737 | ||||
Exec Transaction | 22531112 | 34 hrs ago | IN | 0 ETH | 0.00008557 | ||||
Exec Transaction | 22531099 | 34 hrs ago | IN | 0 ETH | 0.0001132 | ||||
Exec Transaction | 22530866 | 35 hrs ago | IN | 0 ETH | 0.00008914 | ||||
Exec Transaction | 22530417 | 36 hrs ago | IN | 0 ETH | 0.00025817 | ||||
Exec Transaction | 22530410 | 36 hrs ago | IN | 0 ETH | 0.00024213 | ||||
Transfer | 22517934 | 3 days ago | IN | 0.000001 ETH | 0.00007683 | ||||
Exec Transaction | 22517931 | 3 days ago | IN | 0 ETH | 0.00020114 | ||||
Transfer | 22490239 | 7 days ago | IN | 0.000001 ETH | 0.00008099 | ||||
Exec Transaction | 22488478 | 7 days ago | IN | 0 ETH | 0.00028462 | ||||
Transfer | 22482463 | 8 days ago | IN | 0.000001 ETH | 0.00007556 | ||||
Exec Transaction | 22481185 | 8 days ago | IN | 0 ETH | 0.00017882 | ||||
Exec Transaction | 22038327 | 70 days ago | IN | 0 ETH | 0.00034782 | ||||
Exec Transaction | 22031622 | 71 days ago | IN | 0 ETH | 0.00046364 | ||||
Exec Transaction | 21936875 | 84 days ago | IN | 0 ETH | 0.00026011 | ||||
Exec Transaction | 21936550 | 84 days ago | IN | 0 ETH | 0.00024761 | ||||
Exec Transaction | 21936444 | 84 days ago | IN | 0 ETH | 0.00006428 | ||||
Exec Transaction | 21930948 | 85 days ago | IN | 0 ETH | 0.0004641 | ||||
Exec Transaction | 21894152 | 90 days ago | IN | 0 ETH | 0.00040547 | ||||
Transfer | 21881494 | 92 days ago | IN | 0.00056 ETH | 0.00001962 | ||||
Transfer | 21881484 | 92 days ago | IN | 56.56525725 ETH | 0.0000366 | ||||
Transfer | 21881472 | 92 days ago | IN | 0.0001 ETH | 0.00003623 | ||||
Exec Transaction | 21880723 | 92 days ago | IN | 0 ETH | 0.00008209 | ||||
Transfer | 21812079 | 101 days ago | IN | 0.02808044 ETH | 0.00004049 | ||||
Exec Transaction | 21787850 | 105 days ago | IN | 0 ETH | 0.00082399 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22517931 | 3 days ago | 0.1 ETH | ||||
Transfer | 22488478 | 7 days ago | 0.1 ETH | ||||
Transfer | 22481185 | 8 days ago | 0.5 ETH | ||||
Deposit | 22038327 | 70 days ago | 20 ETH | ||||
Transfer* | 21936875 | 84 days ago | 0.00000826 ETH | ||||
Transfer | 21936550 | 84 days ago | 0 ETH | ||||
Transfer* | 21936550 | 84 days ago | 0.00000826 ETH | ||||
Deposit | 21894152 | 90 days ago | 25 ETH | ||||
Transfer | 21880727 | 92 days ago | 16.57559221 ETH | ||||
Transfer | 21643159 | 125 days ago | 0.01 ETH | ||||
Transfer | 21365026 | 164 days ago | 200 ETH | ||||
Transfer | 21364362 | 164 days ago | 0.005 ETH | ||||
Transfer | 21364239 | 164 days ago | 200 ETH | ||||
Transfer | 21192226 | 188 days ago | 0.1 ETH | ||||
Deposit ETH | 21142681 | 195 days ago | 50 ETH | ||||
Transfer | 20978886 | 218 days ago | 1.8 ETH | ||||
Transfer | 20926578 | 225 days ago | 0.02 ETH | ||||
Transfer | 20826410 | 239 days ago | 5.56 ETH | ||||
Transfer | 20730630 | 252 days ago | 0.42635499 ETH | ||||
Transfer | 20662452 | 262 days ago | 50.00379644 ETH | ||||
Deposit | 20640544 | 265 days ago | 0.1 ETH | ||||
Transfer | 20583654 | 273 days ago | 0.3 ETH | ||||
Send To L2 | 20383256 | 301 days ago | 0.4 ETH | ||||
Transfer | 20376055 | 302 days ago | 0.2 ETH | ||||
Transfer | 20189104 | 328 days ago | 1 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xDaB5dc22...0ba42d2a6 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
GnosisSafeProxy
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-09 */ // SPDX-License-Identifier: LGPL-3.0-only pragma solidity >=0.7.0 <0.9.0; /// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain /// @author Richard Meissner - <[email protected]> interface IProxy { function masterCopy() external view returns (address); } /// @title GnosisSafeProxy - 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 GnosisSafeProxy { // 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. 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()) } } } /// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @author Stefan George - <[email protected]> contract GnosisSafeProxyFactory { event ProxyCreation(GnosisSafeProxy proxy, address singleton); /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param singleton Address of singleton contract. /// @param data Payload for message call sent to new proxy contract. function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) { proxy = new GnosisSafeProxy(singleton); if (data.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, singleton); } /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed. function proxyRuntimeCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).runtimeCode; } /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address. function proxyCreationCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).creationCode; } /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer. /// This method is only meant as an utility to be called from other methods /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function deployProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) internal returns (GnosisSafeProxy proxy) { // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce)); bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton))); // solhint-disable-next-line no-inline-assembly assembly { proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt) } require(address(proxy) != address(0), "Create2 call failed"); } /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function createProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) public returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); if (initializer.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, _singleton); } /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized. function createProxyWithCallback( address _singleton, bytes memory initializer, uint256 saltNonce, IProxyCreationCallback callback ) public returns (GnosisSafeProxy proxy) { uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback))); proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback); if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce); } /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce` /// This method is only meant for address calculation purpose when you use an initializer that would revert, /// therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function calculateCreateProxyWithNonceAddress( address _singleton, bytes calldata initializer, uint256 saltNonce ) external returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); revert(string(abi.encodePacked(proxy))); } } interface IProxyCreationCallback { function proxyCreated( GnosisSafeProxy proxy, address _singleton, bytes calldata initializer, uint256 saltNonce ) external; }
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"}]
Deployed Bytecode
0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033
Deployed Bytecode Sourcemap
524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27
Swarm Source
ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552
Latest 7 blocks produced
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22474117 | 9 days ago | 207 | 0.00 TH | 13,167,417 (36.58%) | 0.013822153961768231 ETH |
22372964 | 23 days ago | 79 | 0.00 TH | 21,604,820 (60.19%) | 0.002164302490963687 ETH |
22243414 | 41 days ago | 92 | 0.00 TH | 8,836,817 (24.55%) | 0.005394753225329773 ETH |
22235183 | 42 days ago | 115 | 0.00 TH | 7,396,894 (20.55%) | 0.004395862194490021 ETH |
22199228 | 47 days ago | 131 | 0.00 TH | 7,399,295 (20.55%) | 0.00780987174779454 ETH |
22097344 | 62 days ago | 49 | 0.00 TH | 2,017,521 (5.60%) | 0.001848812162687817 ETH |
22069881 | 65 days ago | 121 | 0.00 TH | 8,411,840 (23.39%) | 0.012237738934552777 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 66 withdrawals (1.263774569 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
988746 | 22537669 | 12 hrs ago | 0.019322013 ETH |
988746 | 22471029 | 9 days ago | 0.019232808 ETH |
988746 | 22404471 | 19 days ago | 0.019294472 ETH |
988746 | 22337944 | 28 days ago | 0.019375891 ETH |
988746 | 22271011 | 37 days ago | 0.019327944 ETH |
988746 | 22204208 | 47 days ago | 0.019231199 ETH |
988746 | 22137757 | 56 days ago | 0.01920371 ETH |
988746 | 22071619 | 65 days ago | 0.019118757 ETH |
988746 | 22005777 | 74 days ago | 0.019096264 ETH |
988746 | 21940318 | 84 days ago | 0.019055718 ETH |
988746 | 21874847 | 93 days ago | 0.019155354 ETH |
988746 | 21809217 | 102 days ago | 0.019109851 ETH |
988746 | 21743429 | 111 days ago | 0.019316249 ETH |
988746 | 21677095 | 120 days ago | 0.019310035 ETH |
988746 | 21610841 | 130 days ago | 0.019198529 ETH |
988746 | 21544610 | 139 days ago | 0.019248462 ETH |
988746 | 21478331 | 148 days ago | 0.019351693 ETH |
988746 | 21411582 | 157 days ago | 0.019394035 ETH |
988746 | 21344419 | 167 days ago | 0.065296361 ETH |
988746 | 21277192 | 176 days ago | 0.019411942 ETH |
988746 | 21209959 | 186 days ago | 0.019475249 ETH |
988746 | 21142352 | 195 days ago | 0.019422145 ETH |
988746 | 21075036 | 204 days ago | 0.019367679 ETH |
988746 | 21007978 | 214 days ago | 0.019439699 ETH |
988746 | 20940814 | 223 days ago | 0.019413249 ETH |
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 32.28% | $2,637.68 | 50 | $131,884 | |
ETH | 27.31% | $2,648.26 | 42.133 | $111,579.16 | |
ETH | 16.43% | $2,758.98 | 24.3304 | $67,127.04 | |
ETH | 11.54% | $0.99977 | 47,149.6836 | $47,138.84 | |
ETH | 2.86% | $9.76 | 1,195.9139 | $11,672.12 | |
ETH | 1.55% | $1.58 | 4,009.2733 | $6,334.65 | |
ETH | 1.15% | $0.999778 | 4,712.7483 | $4,711.7 | |
ETH | 0.54% | $0.505795 | 4,324 | $2,187.06 | |
ETH | 0.20% | $0.026894 | 30,002.1694 | $806.89 | |
ETH | 0.08% | $3,178.86 | 0.1 | $317.89 | |
ETH | 0.03% | $0.011139 | 10,000 | $111.39 | |
ETH | <0.01% | $2,648.26 | 0.00082309 | $2.18 | |
BERA | 6.03% | $1 | 24,559.7346 | $24,633.41 | |
BERA | <0.01% | $3.25 | 1 | $3.25 | |
BASE | <0.01% | $0.007003 | 100 | $0.7002 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.