More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 154 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22293169 | 3 days ago | IN | 0.04932762 ETH | 0.00000989 | ||||
Transfer | 22267090 | 7 days ago | IN | 0.05537165 ETH | 0.00017454 | ||||
Transfer | 22211389 | 14 days ago | IN | 2.94420458 ETH | 0.00017945 | ||||
Transfer | 22095734 | 31 days ago | IN | 0.04032611 ETH | 0.00001272 | ||||
Transfer | 22068203 | 34 days ago | IN | 0.13251583 ETH | 0.00002135 | ||||
Transfer | 22039266 | 39 days ago | IN | 0.04801041 ETH | 0.0000289 | ||||
Transfer | 22024315 | 41 days ago | IN | 0.10706162 ETH | 0.00012632 | ||||
Transfer | 21996470 | 44 days ago | IN | 0.06186932 ETH | 0.00002244 | ||||
Transfer | 21983083 | 46 days ago | IN | 0.05876167 ETH | 0.00001928 | ||||
Transfer | 21982054 | 46 days ago | IN | 0.06810378 ETH | 0.00002443 | ||||
Transfer | 21968445 | 48 days ago | IN | 0.0775689 ETH | 0.00015264 | ||||
Transfer | 21962312 | 49 days ago | IN | 0.08441041 ETH | 0.0000293 | ||||
Transfer | 21944563 | 52 days ago | IN | 0.15103607 ETH | 0.00002457 | ||||
Transfer | 21923526 | 55 days ago | IN | 0.04323674 ETH | 0.00004475 | ||||
Transfer | 21913158 | 56 days ago | IN | 0.54354592 ETH | 0.00002021 | ||||
Transfer | 21895972 | 59 days ago | IN | 0.1030939 ETH | 0.00022811 | ||||
Transfer | 21875575 | 61 days ago | IN | 0.09079479 ETH | 0.00003073 | ||||
Transfer | 21839526 | 66 days ago | IN | 0.044762 ETH | 0.00005872 | ||||
Transfer | 21838257 | 67 days ago | IN | 0.06986205 ETH | 0.00015611 | ||||
Transfer | 21834499 | 67 days ago | IN | 0.04019115 ETH | 0.00002187 | ||||
Transfer | 21808868 | 71 days ago | IN | 0.16960942 ETH | 0.00002414 | ||||
Transfer | 21777295 | 75 days ago | IN | 0.1771853 ETH | 0.00003244 | ||||
Transfer | 21767931 | 76 days ago | IN | 0.53457669 ETH | 0.00027461 | ||||
Exec Transaction | 21757784 | 78 days ago | IN | 0 ETH | 0.00021107 | ||||
Transfer | 21719172 | 83 days ago | IN | 0.19504942 ETH | 0.00011956 |
Latest 10 internal transactions
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 21757784 | 78 days ago | 59 ETH | ||||
Transfer | 21472643 | 118 days ago | 0.0001 ETH | ||||
Transfer | 21140178 | 164 days ago | 89 ETH | ||||
Transfer | 20221794 | 292 days ago | 0.22 ETH | ||||
Transfer | 20221794 | 292 days ago | 0.35 ETH | ||||
Transfer | 19846056 | 345 days ago | 104 ETH | ||||
Transfer | 18251007 | 568 days ago | 0.01745935 ETH | ||||
Transfer | 17669763 | 650 days ago | 70 ETH | ||||
Transfer | 17073845 | 734 days ago | 0.00195802 ETH | ||||
0x60806040 | 16388454 | 830 days ago | Contract Creation | 0 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 657 blocks with 8.61 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22317409 | 4 hrs ago | 90 | 0.00 TH | 5,882,208 (16.36%) | 0.004773440227242655 ETH |
22307213 | 38 hrs ago | 68 | 0.00 TH | 3,629,360 (10.08%) | 0.001517572439958367 ETH |
22305979 | 42 hrs ago | 150 | 0.00 TH | 26,633,904 (73.98%) | 0.004829477077894934 ETH |
22298258 | 2 days ago | 83 | 0.00 TH | 5,374,493 (14.93%) | 0.005802886098806759 ETH |
22287920 | 4 days ago | 56 | 0.00 TH | 3,268,827 (9.08%) | 0.002897686941054852 ETH |
22283657 | 4 days ago | 101 | 0.00 TH | 16,891,153 (46.92%) | 0.012870542023411247 ETH |
22278395 | 5 days ago | 76 | 0.00 TH | 5,467,507 (15.19%) | 0.004253376704600898 ETH |
22278379 | 5 days ago | 90 | 0.00 TH | 21,206,669 (58.97%) | 0.002152069259204271 ETH |
22275089 | 6 days ago | 111 | 0.00 TH | 8,477,805 (23.55%) | 0.003241833113331881 ETH |
22265202 | 7 days ago | 149 | 0.00 TH | 9,451,291 (26.25%) | 0.004413202669338758 ETH |
22264961 | 7 days ago | 66 | 0.00 TH | 3,049,016 (8.47%) | 0.007875225399164458 ETH |
22245092 | 10 days ago | 182 | 0.00 TH | 8,688,104 (24.13%) | 0.005535915747182117 ETH |
22243172 | 10 days ago | 134 | 0.00 TH | 10,044,216 (27.90%) | 0.004867251193355461 ETH |
22243165 | 10 days ago | 91 | 0.00 TH | 9,044,262 (25.15%) | 0.005368499858345819 ETH |
22231866 | 12 days ago | 86 | 0.00 TH | 4,612,368 (12.81%) | 0.004446704129837036 ETH |
22228997 | 12 days ago | 121 | 0.00 TH | 4,081,797 (11.34%) | 0.003891376687604731 ETH |
22218199 | 14 days ago | 76 | 0.00 TH | 5,902,778 (16.40%) | 0.003519868961027445 ETH |
22204660 | 15 days ago | 47 | 0.00 TH | 4,058,555 (11.27%) | 0.000978174692264528 ETH |
22192500 | 17 days ago | 66 | 0.00 TH | 21,655,336 (60.15%) | 0.0033312034702582 ETH |
22186933 | 18 days ago | 82 | 0.00 TH | 4,553,674 (12.71%) | 0.004623173148904635 ETH |
22173586 | 20 days ago | 62 | 0.00 TH | 5,267,242 (14.63%) | 0.003154675584059347 ETH |
22172238 | 20 days ago | 94 | 0.00 TH | 4,407,682 (12.24%) | 0.002754968052106772 ETH |
22170793 | 20 days ago | 62 | 0.00 TH | 4,497,832 (12.54%) | 0.004647533708327828 ETH |
22166802 | 21 days ago | 42 | 0.00 TH | 1,797,416 (5.00%) | 0.002316269900744386 ETH |
22161894 | 21 days ago | 212 | 0.00 TH | 27,220,117 (75.61%) | 0.006602495308172822 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 12737 withdrawals (319.028226639 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1119834 | 22275724 | 6 days ago | 0.019258209 ETH |
1119833 | 22275724 | 6 days ago | 0.019275074 ETH |
1119832 | 22275724 | 6 days ago | 0.019275562 ETH |
1119831 | 22275724 | 6 days ago | 0.019264262 ETH |
1119830 | 22275724 | 6 days ago | 0.019283812 ETH |
1119829 | 22275724 | 6 days ago | 0.019220265 ETH |
1119828 | 22275724 | 6 days ago | 0.019219909 ETH |
1119827 | 22275724 | 6 days ago | 0.019258252 ETH |
1119826 | 22275724 | 6 days ago | 0.019268329 ETH |
1119825 | 22275724 | 6 days ago | 0.019244444 ETH |
1119824 | 22275724 | 6 days ago | 0.01924664 ETH |
1119823 | 22275724 | 6 days ago | 0.019258363 ETH |
1119822 | 22275724 | 6 days ago | 0.019245256 ETH |
1119821 | 22275724 | 6 days ago | 0.019263781 ETH |
1119820 | 22275724 | 6 days ago | 0.019223785 ETH |
1119819 | 22275724 | 6 days ago | 0.019243282 ETH |
1119817 | 22275723 | 6 days ago | 0.019254216 ETH |
1119816 | 22275723 | 6 days ago | 0.019266749 ETH |
1119815 | 22275723 | 6 days ago | 0.019253637 ETH |
1119814 | 22275723 | 6 days ago | 0.019259715 ETH |
1119813 | 22275723 | 6 days ago | 0.019306971 ETH |
1119812 | 22275723 | 6 days ago | 0.019276736 ETH |
1119811 | 22275723 | 6 days ago | 0.019254403 ETH |
1119810 | 22275723 | 6 days ago | 0.019277127 ETH |
1119809 | 22275723 | 6 days ago | 0.01926732 ETH |
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,594.13 | 41.8225 | $66,670.36 |
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.