More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 9,218 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22057478 | 5 hrs ago | IN | 0.01517387 ETH | 0.00001251 | ||||
Transfer | 22057244 | 6 hrs ago | IN | 0.01567741 ETH | 0.00001297 | ||||
Transfer | 22056890 | 7 hrs ago | IN | 0.00566326 ETH | 0.00001103 | ||||
Transfer | 22055330 | 13 hrs ago | IN | 0.00959232 ETH | 0.00001166 | ||||
Transfer | 22054549 | 15 hrs ago | IN | 0.01081563 ETH | 0.00001126 | ||||
Transfer | 22054284 | 16 hrs ago | IN | 0.05844151 ETH | 0.00001211 | ||||
Transfer | 22054013 | 17 hrs ago | IN | 0.02413417 ETH | 0.00001146 | ||||
Transfer | 22052657 | 22 hrs ago | IN | 0.02097164 ETH | 0.00001496 | ||||
Transfer | 22050350 | 29 hrs ago | IN | 0.0187981 ETH | 0.00001264 | ||||
Transfer | 22049103 | 33 hrs ago | IN | 0.01852893 ETH | 0.00001261 | ||||
Transfer | 22048582 | 35 hrs ago | IN | 0.03789066 ETH | 0.00001374 | ||||
Transfer | 22047165 | 40 hrs ago | IN | 0.10928087 ETH | 0.00001414 | ||||
Transfer | 22046575 | 42 hrs ago | IN | 0.02023916 ETH | 0.00001814 | ||||
Transfer | 22046101 | 44 hrs ago | IN | 0.06070722 ETH | 0.00004869 | ||||
Transfer | 22042681 | 2 days ago | IN | 0.04776671 ETH | 0.00001432 | ||||
Transfer | 22042356 | 2 days ago | IN | 0.02031329 ETH | 0.00001326 | ||||
Transfer | 22041583 | 2 days ago | IN | 0.0074775 ETH | 0.00001398 | ||||
Transfer | 22039441 | 2 days ago | IN | 0.0300359 ETH | 0.00002892 | ||||
Transfer | 22039426 | 2 days ago | IN | 0.03748031 ETH | 0.00002626 | ||||
Transfer | 22035105 | 3 days ago | IN | 0.0279055 ETH | 0.00001467 | ||||
Transfer | 22034217 | 3 days ago | IN | 0.00600884 ETH | 0.00001508 | ||||
Transfer | 22033056 | 3 days ago | IN | 0.00917971 ETH | 0.00001384 | ||||
Transfer | 22031866 | 3 days ago | IN | 0.05642602 ETH | 0.00001944 | ||||
Transfer | 22030420 | 4 days ago | IN | 0.01191219 ETH | 0.00001631 | ||||
Transfer | 22029559 | 4 days ago | IN | 0.13827389 ETH | 0.00002776 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22035025 | 3 days ago | 0.00007516 ETH | ||||
Transfer | 21783809 | 38 days ago | 0.00002528 ETH | ||||
Transfer | 21685958 | 52 days ago | 0.02045853 ETH | ||||
Transfer | 21680112 | 52 days ago | 0.00719373 ETH | ||||
Transfer | 21465922 | 82 days ago | 1,000 ETH | ||||
Transfer | 21431977 | 87 days ago | 1,000 ETH | ||||
Transfer | 21368600 | 96 days ago | 0.00991656 ETH | ||||
Transfer | 21331796 | 101 days ago | 1,316.1001841 ETH | ||||
Transfer | 21322930 | 102 days ago | 2,000 ETH | ||||
Transfer | 21315401 | 103 days ago | 2,000 ETH | ||||
Transfer | 21313740 | 104 days ago | 0.00138528 ETH | ||||
Transfer | 21313740 | 104 days ago | 0.01598795 ETH | ||||
Transfer | 21272815 | 109 days ago | 2,000 ETH | ||||
Transfer | 21265565 | 110 days ago | 2,000 ETH | ||||
Transfer | 21244147 | 113 days ago | 1,000 ETH | ||||
Transfer | 21244134 | 113 days ago | 1,000 ETH | ||||
Transfer | 21230605 | 115 days ago | 1,000 ETH | ||||
Transfer | 21222497 | 116 days ago | 2,000 ETH | ||||
Transfer | 21188510 | 121 days ago | 1,000 ETH | ||||
Transfer | 21180200 | 122 days ago | 1,000 ETH | ||||
Transfer | 21172123 | 123 days ago | 1,500 ETH | ||||
Transfer | 21144523 | 127 days ago | 1,200 ETH | ||||
Transfer | 21136637 | 128 days ago | 1,200 ETH | ||||
Transfer | 21129127 | 129 days ago | 2,500 ETH | ||||
Transfer | 21116750 | 131 days ago | 1,500 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 1,317 blocks with 84.56 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22036532 | 3 days ago | 138 | 0.00 TH | 6,602,472 (18.36%) | 0.00523407160118082 ETH |
22035025 | 3 days ago | 85 | 0.00 TH | 11,939,244 (33.16%) | 0.017744024771246477 ETH |
22024124 | 4 days ago | 123 | 0.00 TH | 7,641,522 (21.23%) | 0.010334171539868171 ETH |
21991973 | 9 days ago | 172 | 0.00 TH | 10,318,375 (28.77%) | 0.019779366075267199 ETH |
21975937 | 11 days ago | 141 | 0.00 TH | 7,484,567 (20.81%) | 0.010005002585389583 ETH |
21931197 | 17 days ago | 315 | 0.00 TH | 14,407,352 (40.02%) | 0.017964736556052721 ETH |
21913758 | 20 days ago | 47 | 0.00 TH | 3,635,522 (10.10%) | 0.003311787921699143 ETH |
21911462 | 20 days ago | 61 | 0.00 TH | 3,335,747 (9.27%) | 0.002449463432224228 ETH |
21866626 | 26 days ago | 190 | 0.00 TH | 12,613,179 (35.11%) | 0.101000388466978724 ETH |
21842277 | 30 days ago | 66 | 0.00 TH | 4,674,143 (12.98%) | 0.004374662825887135 ETH |
21828629 | 32 days ago | 84 | 0.00 TH | 4,780,105 (13.28%) | 0.003299040861864658 ETH |
21822252 | 33 days ago | 132 | 0.00 TH | 9,799,836 (27.36%) | 0.008019945902556476 ETH |
21785063 | 38 days ago | 86 | 0.00 TH | 5,376,394 (15.02%) | 0.003261461385077679 ETH |
21783809 | 38 days ago | 108 | 0.00 TH | 12,248,879 (34.16%) | 0.016018755402487971 ETH |
21772933 | 40 days ago | 141 | 0.00 TH | 23,147,968 (64.35%) | 0.0108972474889381 ETH |
21730271 | 45 days ago | 77 | 0.00 TH | 5,337,858 (17.66%) | 0.007526949710022994 ETH |
21697202 | 50 days ago | 113 | 0.00 TH | 7,481,020 (24.89%) | 0.012550030185839284 ETH |
21693011 | 51 days ago | 81 | 0.00 TH | 4,050,501 (13.49%) | 0.004097758680080229 ETH |
21680112 | 52 days ago | 79 | 0.00 TH | 7,531,609 (25.03%) | 0.025368521307193844 ETH |
21539515 | 72 days ago | 115 | 0.00 TH | 4,746,354 (15.82%) | 0.019299342135778903 ETH |
21520470 | 75 days ago | 82 | 0.00 TH | 5,203,304 (17.34%) | 0.004749222424653462 ETH |
21508339 | 76 days ago | 102 | 0.00 TH | 7,839,976 (26.13%) | 0.007295278177830195 ETH |
21483859 | 80 days ago | 105 | 0.00 TH | 8,354,848 (27.85%) | 0.006282305182666467 ETH |
21483411 | 80 days ago | 282 | 0.00 TH | 16,070,749 (53.57%) | 0.031422230204361837 ETH |
21448644 | 85 days ago | 78 | 0.00 TH | 5,467,681 (18.23%) | 0.005368207777025661 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 160438 withdrawals (55,616.921930611 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
602375 | 22058490 | 2 hrs ago | 0.019108624 ETH |
602373 | 22058490 | 2 hrs ago | 0.01919696 ETH |
602372 | 22058490 | 2 hrs ago | 0.019189752 ETH |
602371 | 22058490 | 2 hrs ago | 0.064747939 ETH |
602368 | 22058490 | 2 hrs ago | 0.019153516 ETH |
602363 | 22058490 | 2 hrs ago | 0.019169207 ETH |
602362 | 22058490 | 2 hrs ago | 0.019129073 ETH |
602361 | 22058489 | 2 hrs ago | 0.01912691 ETH |
602356 | 22058489 | 2 hrs ago | 0.019129649 ETH |
602353 | 22058489 | 2 hrs ago | 0.019168677 ETH |
602352 | 22058489 | 2 hrs ago | 0.01917042 ETH |
602350 | 22058489 | 2 hrs ago | 0.019041184 ETH |
602348 | 22058489 | 2 hrs ago | 0.019164869 ETH |
602347 | 22058489 | 2 hrs ago | 0.019168771 ETH |
602346 | 22058489 | 2 hrs ago | 0.019102829 ETH |
602343 | 22058489 | 2 hrs ago | 0.01913964 ETH |
602342 | 22058489 | 2 hrs ago | 0.019150203 ETH |
602337 | 22058489 | 2 hrs ago | 0.019141612 ETH |
602335 | 22058489 | 2 hrs ago | 0.019029478 ETH |
602333 | 22058489 | 2 hrs ago | 0.064306985 ETH |
602331 | 22058489 | 2 hrs ago | 0.019089527 ETH |
602328 | 22058489 | 2 hrs ago | 0.019186594 ETH |
602325 | 22058489 | 2 hrs ago | 0.019025248 ETH |
602322 | 22058488 | 2 hrs ago | 0.019162293 ETH |
602320 | 22058488 | 2 hrs ago | 0.019130259 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.