More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 25 from a total of 4,935 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22050912 | 49 mins ago | IN | 0.01345833 ETH | 0.0000119 | ||||
Transfer | 22050867 | 58 mins ago | IN | 0.01259417 ETH | 0.00001086 | ||||
Transfer | 22049422 | 5 hrs ago | IN | 0.00760508 ETH | 0.00001315 | ||||
Transfer | 22049409 | 5 hrs ago | IN | 0.00462881 ETH | 0.00001307 | ||||
Transfer | 22048927 | 7 hrs ago | IN | 0.01201609 ETH | 0.00001255 | ||||
Transfer | 22048770 | 7 hrs ago | IN | 0.01406993 ETH | 0.00001288 | ||||
Transfer | 22048724 | 8 hrs ago | IN | 0.00905274 ETH | 0.00001429 | ||||
Transfer | 22048557 | 8 hrs ago | IN | 0.01224704 ETH | 0.00001452 | ||||
Transfer | 22047392 | 12 hrs ago | IN | 0.00965678 ETH | 0.00001444 | ||||
Transfer | 22047276 | 13 hrs ago | IN | 0.00968564 ETH | 0.00001513 | ||||
Transfer | 22047174 | 13 hrs ago | IN | 0.01606409 ETH | 0.00001393 | ||||
Transfer | 22046329 | 16 hrs ago | IN | 0.03883453 ETH | 0.00001985 | ||||
Transfer | 22045095 | 20 hrs ago | IN | 0.03725108 ETH | 0.00002053 | ||||
Transfer | 22043748 | 24 hrs ago | IN | 0.00682012 ETH | 0.00001361 | ||||
Transfer | 22043508 | 25 hrs ago | IN | 0.0191871 ETH | 0.00001234 | ||||
Transfer | 22042125 | 30 hrs ago | IN | 0.01661098 ETH | 0.00001389 | ||||
Transfer | 22041616 | 31 hrs ago | IN | 0.01115321 ETH | 0.00001387 | ||||
Transfer | 22041430 | 32 hrs ago | IN | 0.00719652 ETH | 0.00001531 | ||||
Transfer | 22039207 | 40 hrs ago | IN | 0.01710013 ETH | 0.00002957 | ||||
Transfer | 22039048 | 40 hrs ago | IN | 0.0190547 ETH | 0.00002178 | ||||
Transfer | 22037884 | 44 hrs ago | IN | 0.05627186 ETH | 0.00001438 | ||||
Transfer | 22037334 | 46 hrs ago | IN | 0.00791797 ETH | 0.00001489 | ||||
Transfer | 22036857 | 47 hrs ago | IN | 0.05043561 ETH | 0.0000134 | ||||
Transfer | 22034131 | 2 days ago | IN | 0.0078894 ETH | 0.00001318 | ||||
Transfer | 22033992 | 2 days ago | IN | 0.02467754 ETH | 0.00002063 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 21681766 | 51 days ago | 0.21425147 ETH | ||||
Transfer | 20552108 | 209 days ago | 0.05 ETH | ||||
Transfer | 20547755 | 209 days ago | 4.13265079 ETH | ||||
Transfer | 20456475 | 222 days ago | 0.2121395 ETH | ||||
Transfer | 20427632 | 226 days ago | 0.00060694 ETH | ||||
Transfer | 20422518 | 227 days ago | 248.61358344 ETH | ||||
Transfer | 20125556 | 268 days ago | 0.31379624 ETH | ||||
Transfer | 20124627 | 269 days ago | 0.01366181 ETH | ||||
Transfer | 20118203 | 269 days ago | 0.001 ETH | ||||
Transfer | 19928369 | 296 days ago | 37.59178294 ETH | ||||
Transfer | 19841134 | 308 days ago | 54.7 ETH | ||||
Transfer | 19755731 | 320 days ago | 64.19691783 ETH | ||||
Transfer | 19612796 | 340 days ago | 859.50864688 ETH | ||||
Transfer | 19612385 | 340 days ago | 1 ETH | ||||
Transfer | 19561349 | 347 days ago | 0.00120541 ETH | ||||
Transfer | 19553898 | 348 days ago | 0.01323525 ETH | ||||
Transfer | 19488177 | 358 days ago | 0.08018046 ETH | ||||
Transfer | 19400833 | 370 days ago | 0.01599179 ETH | ||||
Transfer | 19357533 | 376 days ago | 0.00520816 ETH | ||||
Transfer | 19348893 | 377 days ago | 0.05555 ETH | ||||
Transfer | 19258830 | 390 days ago | 0.00719062 ETH | ||||
Transfer | 19159705 | 404 days ago | 0.02470135 ETH | ||||
Transfer | 19158325 | 404 days ago | 0.01032885 ETH | ||||
Transfer | 19147885 | 405 days ago | 0.02127688 ETH | ||||
Transfer | 19095636 | 413 days ago | 0.01230213 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 260 blocks with 10.92 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22003797 | 6 days ago | 104 | 0.00 TH | 5,982,409 (16.62%) | 0.004332028631855052 ETH |
22001418 | 6 days ago | 94 | 0.00 TH | 22,395,985 (62.52%) | 0.005602429394810674 ETH |
21905951 | 20 days ago | 156 | 0.00 TH | 8,197,068 (22.77%) | 0.004829253234368779 ETH |
21898682 | 21 days ago | 56 | 0.00 TH | 3,996,833 (11.15%) | 0.003205676554738448 ETH |
21819360 | 32 days ago | 63 | 0.00 TH | 24,331,380 (67.59%) | 0.004675002075753338 ETH |
21772604 | 38 days ago | 195 | 0.00 TH | 19,812,897 (57.20%) | 0.019227333062693283 ETH |
21613360 | 61 days ago | 126 | 0.00 TH | 11,038,175 (36.76%) | 0.007218894164583633 ETH |
21548723 | 70 days ago | 0 | 0.00 TH | 0 (0.00%) | 0 ETH |
21499732 | 77 days ago | 0 | 0.00 TH | 0 (0.00%) | 0 ETH |
21213102 | 117 days ago | 59 | 0.00 TH | 5,650,989 (18.84%) | 0.005443460199474095 ETH |
21203354 | 118 days ago | 107 | 0.00 TH | 6,404,430 (21.35%) | 0.008514185057333436 ETH |
21100855 | 132 days ago | 217 | 0.00 TH | 16,115,604 (53.72%) | 0.020381991567390559 ETH |
21006303 | 145 days ago | 247 | 0.00 TH | 12,318,254 (41.06%) | 0.019912060580527051 ETH |
20863886 | 165 days ago | 114 | 0.00 TH | 6,967,635 (23.23%) | 0.013259638948041764 ETH |
20521352 | 213 days ago | 134 | 0.00 TH | 10,299,445 (34.33%) | 0.020057612299610901 ETH |
20485046 | 218 days ago | 80 | 0.00 TH | 10,694,674 (35.65%) | 0.031031660413275116 ETH |
20427632 | 226 days ago | 138 | 0.00 TH | 13,077,596 (43.59%) | 0.041101423994601792 ETH |
20423907 | 227 days ago | 125 | 0.00 TH | 11,015,353 (36.72%) | 0.013121319188357264 ETH |
20333797 | 239 days ago | 67 | 0.00 TH | 4,500,941 (15.00%) | 0.013006947288811966 ETH |
20244168 | 252 days ago | 69 | 0.00 TH | 4,771,886 (15.91%) | 0.004271173510611083 ETH |
20195464 | 259 days ago | 206 | 0.00 TH | 15,435,402 (51.45%) | 0.018771990011848971 ETH |
20180358 | 261 days ago | 103 | 0.00 TH | 15,504,196 (51.68%) | 0.017098582316712463 ETH |
20156532 | 264 days ago | 123 | 0.00 TH | 10,477,405 (34.92%) | 0.047309344228305071 ETH |
20124627 | 269 days ago | 175 | 0.00 TH | 14,411,767 (48.04%) | 0.01676099364133946 ETH |
20118203 | 269 days ago | 187 | 0.00 TH | 12,886,675 (42.96%) | 0.017082876607284855 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 79545 withdrawals (1,704.177756606 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1263667 | 22015901 | 4 days ago | 0.018352978 ETH |
1263666 | 22015901 | 4 days ago | 0.018382126 ETH |
1263665 | 22015901 | 4 days ago | 0.063993392 ETH |
1263664 | 22015901 | 4 days ago | 0.018278269 ETH |
1263663 | 22015901 | 4 days ago | 0.018258009 ETH |
1263662 | 22015901 | 4 days ago | 0.01826284 ETH |
1263661 | 22015901 | 4 days ago | 0.01827215 ETH |
1263660 | 22015901 | 4 days ago | 0.018288748 ETH |
1263659 | 22015901 | 4 days ago | 0.018240775 ETH |
1263658 | 22015901 | 4 days ago | 0.018297133 ETH |
1263657 | 22015901 | 4 days ago | 0.018329532 ETH |
1263656 | 22015900 | 4 days ago | 0.018270718 ETH |
1263655 | 22015900 | 4 days ago | 0.018353117 ETH |
1263654 | 22015900 | 4 days ago | 0.018299301 ETH |
1263653 | 22015900 | 4 days ago | 0.018281838 ETH |
1263652 | 22015900 | 4 days ago | 0.018249076 ETH |
1263651 | 22015900 | 4 days ago | 0.01829061 ETH |
1263650 | 22015900 | 4 days ago | 0.018122119 ETH |
1263649 | 22015900 | 4 days ago | 0.018315273 ETH |
1263648 | 22015900 | 4 days ago | 0.018113448 ETH |
1263647 | 22015900 | 4 days ago | 0.018283471 ETH |
1263646 | 22015900 | 4 days ago | 0.018282017 ETH |
1263645 | 22015900 | 4 days ago | 0.018167151 ETH |
1263644 | 22015900 | 4 days ago | 0.018340182 ETH |
1263643 | 22015900 | 4 days ago | 0.062469297 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.