More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 31,643 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22297299 | 12 mins ago | IN | 0.01246194 ETH | 0.00000937 | ||||
Transfer | 22297289 | 14 mins ago | IN | 0.02099008 ETH | 0.00000991 | ||||
Transfer | 22297259 | 20 mins ago | IN | 0.02786171 ETH | 0.0000101 | ||||
Transfer | 22297006 | 1 hr ago | IN | 0.02098727 ETH | 0.00001272 | ||||
Transfer | 22296970 | 1 hr ago | IN | 0.02098612 ETH | 0.00001387 | ||||
Transfer | 22296923 | 1 hr ago | IN | 0.02098936 ETH | 0.00001063 | ||||
Transfer | 22296859 | 1 hr ago | IN | 0.02098596 ETH | 0.00001403 | ||||
Transfer | 22296810 | 1 hr ago | IN | 0.02505463 ETH | 0.00001627 | ||||
Transfer | 22296788 | 1 hr ago | IN | 0.0303022 ETH | 0.00001519 | ||||
Transfer | 22296754 | 2 hrs ago | IN | 0.02098626 ETH | 0.00001373 | ||||
Transfer | 22296732 | 2 hrs ago | IN | 0.01747307 ETH | 0.00001074 | ||||
Transfer | 22296712 | 2 hrs ago | IN | 0.02098579 ETH | 0.0000142 | ||||
Transfer | 22296706 | 2 hrs ago | IN | 0.02098571 ETH | 0.00001428 | ||||
Transfer | 22296670 | 2 hrs ago | IN | 0.02098587 ETH | 0.00001412 | ||||
Transfer | 22296653 | 2 hrs ago | IN | 0.02757154 ETH | 0.00001318 | ||||
Transfer | 22296429 | 3 hrs ago | IN | 0.01035807 ETH | 0.00001309 | ||||
Transfer | 22296289 | 3 hrs ago | IN | 0.06027734 ETH | 0.00001352 | ||||
Transfer | 22296068 | 4 hrs ago | IN | 0.02266212 ETH | 0.00001433 | ||||
Transfer | 22296067 | 4 hrs ago | IN | 0.03610968 ETH | 0.00001377 | ||||
Transfer | 22296060 | 4 hrs ago | IN | 0.01227086 ETH | 0.00001527 | ||||
Transfer | 22296004 | 4 hrs ago | IN | 0.00820501 ETH | 0.00001277 | ||||
Transfer | 22295890 | 4 hrs ago | IN | 0.00847916 ETH | 0.00001049 | ||||
Transfer | 22295886 | 4 hrs ago | IN | 0.02098855 ETH | 0.00001144 | ||||
Transfer | 22295839 | 5 hrs ago | IN | 0.00545249 ETH | 0.00001114 | ||||
Transfer | 22295803 | 5 hrs ago | IN | 0.01264146 ETH | 0.00001308 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22297348 | 2 mins ago | 0.5 ETH | ||||
Transfer | 22296034 | 4 hrs ago | 0.5 ETH | ||||
Transfer | 22295547 | 6 hrs ago | 0.1 ETH | ||||
Transfer | 22294824 | 8 hrs ago | 0.5 ETH | ||||
Transfer | 22294354 | 10 hrs ago | 5 ETH | ||||
Transfer | 22290720 | 22 hrs ago | 0.1 ETH | ||||
Transfer | 22289329 | 26 hrs ago | 0.5 ETH | ||||
Transfer | 22288431 | 29 hrs ago | 0.5 ETH | ||||
Transfer | 22287478 | 33 hrs ago | 0.5 ETH | ||||
Transfer | 22287316 | 33 hrs ago | 0.5 ETH | ||||
Transfer | 22287181 | 34 hrs ago | 5 ETH | ||||
Transfer | 22283644 | 45 hrs ago | 0.5 ETH | ||||
Transfer | 22281280 | 2 days ago | 0.1 ETH | ||||
Transfer | 22280521 | 2 days ago | 0.5 ETH | ||||
Transfer | 22280060 | 2 days ago | 0.5 ETH | ||||
Transfer | 22280024 | 2 days ago | 4.89056946 ETH | ||||
Transfer | 22279901 | 2 days ago | 0.5 ETH | ||||
Transfer | 22276745 | 2 days ago | 0.1 ETH | ||||
Transfer | 22274001 | 3 days ago | 0.5 ETH | ||||
Transfer | 22273805 | 3 days ago | 0.5 ETH | ||||
Transfer | 22273249 | 3 days ago | 0.5 ETH | ||||
Transfer | 22273032 | 3 days ago | 0.5 ETH | ||||
Transfer | 22273025 | 3 days ago | 0.1 ETH | ||||
Transfer | 22272856 | 3 days ago | 0.78374421 ETH | ||||
Transfer | 22266830 | 4 days ago | 0.5 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 25 blocks (From a total of 865 blocks with 22.93 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22267279 | 4 days ago | 117 | 0.00 TH | 6,959,337 (19.33%) | 0.005477257328764048 ETH |
22261955 | 4 days ago | 120 | 0.00 TH | 6,536,448 (18.16%) | 0.005439336295570734 ETH |
22257521 | 5 days ago | 81 | 0.00 TH | 25,762,517 (71.56%) | 0.003489483271712788 ETH |
22249610 | 6 days ago | 76 | 0.00 TH | 5,049,579 (14.03%) | 0.003822911998789892 ETH |
22246644 | 7 days ago | 203 | 0.00 TH | 12,937,367 (35.97%) | 0.018715469087801358 ETH |
22239199 | 8 days ago | 325 | 0.00 TH | 25,683,600 (71.34%) | 0.02712705973285671 ETH |
22239031 | 8 days ago | 99 | 0.00 TH | 11,336,904 (31.52%) | 0.024181879226251336 ETH |
22233428 | 8 days ago | 379 | 0.00 TH | 18,687,776 (51.96%) | 0.041820310543231876 ETH |
22219050 | 10 days ago | 141 | 0.00 TH | 7,715,099 (21.43%) | 0.006630912291024 ETH |
22218951 | 10 days ago | 91 | 0.00 TH | 5,644,382 (15.68%) | 0.004808922827810266 ETH |
22218897 | 10 days ago | 442 | 0.00 TH | 21,103,667 (58.62%) | 0.007343797935192048 ETH |
22218803 | 10 days ago | 195 | 0.00 TH | 9,916,174 (27.54%) | 0.005392913082198796 ETH |
22218764 | 10 days ago | 183 | 0.00 TH | 7,919,898 (22.02%) | 0.004372320522302466 ETH |
22218724 | 10 days ago | 87 | 0.00 TH | 5,185,860 (14.41%) | 0.002371542986849938 ETH |
22218660 | 10 days ago | 130 | 0.00 TH | 8,695,429 (24.18%) | 0.005561081900300791 ETH |
22218245 | 11 days ago | 151 | 0.00 TH | 7,270,488 (20.20%) | 0.007562602377174082 ETH |
22212143 | 11 days ago | 110 | 0.00 TH | 5,180,346 (14.39%) | 0.006650406480921514 ETH |
22212123 | 11 days ago | 141 | 0.00 TH | 9,303,612 (25.84%) | 0.011358281387989475 ETH |
22212006 | 11 days ago | 204 | 0.00 TH | 8,839,860 (24.56%) | 0.012227078850810936 ETH |
22211743 | 11 days ago | 400 | 0.00 TH | 26,362,214 (73.30%) | 0.049904843819525816 ETH |
22211591 | 11 days ago | 81 | 0.00 TH | 4,280,133 (11.89%) | 0.004083185778761303 ETH |
22208274 | 12 days ago | 67 | 0.00 TH | 27,304,192 (76.14%) | 0.002363786108931527 ETH |
22205118 | 12 days ago | 72 | 0.00 TH | 21,859,045 (60.72%) | 0.002027496603483403 ETH |
22202890 | 13 days ago | 180 | 0.00 TH | 13,617,889 (37.83%) | 0.010101872030091232 ETH |
22202291 | 13 days ago | 123 | 0.00 TH | 6,879,853 (19.13%) | 0.007574946224560628 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 530653 withdrawals (27,063.173965647 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1511061 | 22290849 | 21 hrs ago | 0.019352531 ETH |
1511060 | 22290849 | 21 hrs ago | 0.019352435 ETH |
1511059 | 22290849 | 21 hrs ago | 0.019325017 ETH |
1511058 | 22290849 | 21 hrs ago | 0.019352158 ETH |
1511057 | 22290849 | 21 hrs ago | 0.019360808 ETH |
1511056 | 22290849 | 21 hrs ago | 0.019363745 ETH |
1511055 | 22290849 | 21 hrs ago | 0.01934981 ETH |
1511054 | 22290849 | 21 hrs ago | 0.065502956 ETH |
1511053 | 22290848 | 21 hrs ago | 0.019362817 ETH |
1511052 | 22290848 | 21 hrs ago | 0.019357223 ETH |
1511051 | 22290848 | 21 hrs ago | 0.019351987 ETH |
1511050 | 22290848 | 21 hrs ago | 0.019356382 ETH |
1511049 | 22290848 | 21 hrs ago | 0.019356996 ETH |
1511048 | 22290848 | 21 hrs ago | 0.019361406 ETH |
1511047 | 22290848 | 21 hrs ago | 0.019361278 ETH |
1511046 | 22290848 | 21 hrs ago | 0.019358411 ETH |
1511045 | 22290848 | 21 hrs ago | 0.019335667 ETH |
1511044 | 22290848 | 21 hrs ago | 0.019365812 ETH |
1511043 | 22290848 | 21 hrs ago | 0.019363651 ETH |
1511042 | 22290848 | 21 hrs ago | 0.11106031 ETH |
1511041 | 22290848 | 21 hrs ago | 0.019333547 ETH |
1511040 | 22290848 | 21 hrs ago | 0.019353909 ETH |
1511039 | 22290848 | 21 hrs ago | 0.019354999 ETH |
1511038 | 22290848 | 21 hrs ago | 0.019356861 ETH |
1511037 | 22290847 | 21 hrs ago | 0.019320048 ETH |
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.