More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,257 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21245957 | 2 hrs ago | IN | 0.16277389 ETH | 0.0005068 | ||||
Transfer | 21245926 | 2 hrs ago | IN | 0.0690886 ETH | 0.00040783 | ||||
Transfer | 21245680 | 2 hrs ago | IN | 0.05305513 ETH | 0.00029891 | ||||
Transfer | 21244811 | 5 hrs ago | IN | 0.01666851 ETH | 0.00044767 | ||||
Transfer | 21244719 | 6 hrs ago | IN | 0.03132161 ETH | 0.00037981 | ||||
Transfer | 21244138 | 8 hrs ago | IN | 0.09517496 ETH | 0.00041526 | ||||
Transfer | 21243580 | 10 hrs ago | IN | 0.10964266 ETH | 0.00072171 | ||||
Transfer | 21243424 | 10 hrs ago | IN | 0.08506153 ETH | 0.00034837 | ||||
Transfer | 21243123 | 11 hrs ago | IN | 0.05369498 ETH | 0.00024768 | ||||
Transfer | 21242541 | 13 hrs ago | IN | 0.06515531 ETH | 0.00028812 | ||||
Transfer | 21241224 | 17 hrs ago | IN | 0.03052021 ETH | 0.00025158 | ||||
Transfer | 21239599 | 23 hrs ago | IN | 0.03996451 ETH | 0.00034916 | ||||
Transfer | 21239133 | 24 hrs ago | IN | 0.06690872 ETH | 0.00037615 | ||||
Transfer | 21238831 | 25 hrs ago | IN | 0.03230556 ETH | 0.0003977 | ||||
Transfer | 21238305 | 27 hrs ago | IN | 0.02358042 ETH | 0.0006219 | ||||
Transfer | 21237961 | 28 hrs ago | IN | 0.03468822 ETH | 0.00063579 | ||||
Transfer | 21237153 | 31 hrs ago | IN | 0.03099337 ETH | 0.00051923 | ||||
Transfer | 21236412 | 34 hrs ago | IN | 0.06171333 ETH | 0.00079715 | ||||
Transfer | 21235796 | 36 hrs ago | IN | 0.06054773 ETH | 0.00031702 | ||||
Transfer | 21235212 | 38 hrs ago | IN | 0.02218351 ETH | 0.00026229 | ||||
Transfer | 21234463 | 40 hrs ago | IN | 0.03608276 ETH | 0.00026068 | ||||
Transfer | 21234213 | 41 hrs ago | IN | 0.05667088 ETH | 0.00025278 | ||||
Transfer | 21233915 | 42 hrs ago | IN | 0.10127559 ETH | 0.00038449 | ||||
Transfer | 21233368 | 44 hrs ago | IN | 0.05029065 ETH | 0.00022374 | ||||
Transfer | 21233321 | 44 hrs ago | IN | 0.13580659 ETH | 0.00022236 |
Latest 17 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21115091 | 18 days ago | 0.15335275 ETH | ||||
20958439 | 40 days ago | 0.02 ETH | ||||
20631021 | 85 days ago | 0.01285128 ETH | ||||
20428689 | 114 days ago | 0.00620603 ETH | ||||
20223040 | 142 days ago | 0.00023715 ETH | ||||
20175749 | 149 days ago | 3,500 ETH | ||||
20110212 | 158 days ago | 3,500 ETH | ||||
20082730 | 162 days ago | 0.01 ETH | ||||
20081967 | 162 days ago | 0.01 ETH | ||||
19817465 | 199 days ago | 3,499.999 ETH | ||||
19817357 | 199 days ago | 0.001 ETH | ||||
19716948 | 213 days ago | 0.001 ETH | ||||
19716518 | 213 days ago | 3,500 ETH | ||||
19711975 | 214 days ago | 0.001 ETH | ||||
19689460 | 217 days ago | 0.01 ETH | ||||
19689441 | 217 days ago | 0.01 ETH | ||||
19689348 | 217 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
[{"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 90 blocks with 1.38 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21218943 | 3 days ago | 106 | 0.00 TH | 6,778,991 (22.60%) | 0.007240221210827637 ETH |
21216558 | 4 days ago | 155 | 0.00 TH | 9,169,365 (30.56%) | 0.016068416022815197 ETH |
21211692 | 4 days ago | 88 | 0.00 TH | 7,243,577 (24.15%) | 0.012936974732014507 ETH |
21172445 | 10 days ago | 65 | 0.00 TH | 5,440,536 (18.14%) | 0.009772035862870056 ETH |
21166703 | 11 days ago | 94 | 0.00 TH | 6,731,755 (22.44%) | 0.041181338422012909 ETH |
21158013 | 12 days ago | 124 | 0.00 TH | 11,140,871 (37.14%) | 0.022744765584028402 ETH |
21149430 | 13 days ago | 62 | 0.00 TH | 3,766,028 (12.55%) | 0.004357267172065629 ETH |
21130538 | 16 days ago | 142 | 0.00 TH | 7,663,101 (25.54%) | 0.00833154550448999 ETH |
21127026 | 16 days ago | 95 | 0.00 TH | 11,867,004 (39.56%) | 0.014690040477661614 ETH |
21120531 | 17 days ago | 103 | 0.00 TH | 9,223,664 (30.75%) | 0.060865474826160077 ETH |
21115576 | 18 days ago | 85 | 0.00 TH | 4,869,885 (16.23%) | 0.008321143719669312 ETH |
21099680 | 20 days ago | 57 | 0.00 TH | 4,806,158 (16.02%) | 0.004010498998284275 ETH |
21090385 | 21 days ago | 66 | 0.00 TH | 5,317,884 (17.73%) | 0.004410821178045435 ETH |
21082022 | 22 days ago | 73 | 0.00 TH | 5,573,482 (18.58%) | 0.005383160244164511 ETH |
21081759 | 22 days ago | 84 | 0.00 TH | 7,200,188 (24.00%) | 0.019357571912715067 ETH |
21054090 | 26 days ago | 121 | 0.00 TH | 6,579,577 (21.93%) | 0.007433479965925223 ETH |
21046624 | 27 days ago | 189 | 0.00 TH | 11,567,932 (38.56%) | 0.0106577340305764 ETH |
21043762 | 28 days ago | 149 | 0.00 TH | 16,761,416 (55.87%) | 0.026746355582176699 ETH |
21037214 | 29 days ago | 83 | 0.00 TH | 4,685,335 (15.62%) | 0.006512734122882431 ETH |
21035996 | 29 days ago | 82 | 0.00 TH | 7,162,789 (23.88%) | 0.007016501419917009 ETH |
21031250 | 30 days ago | 81 | 0.00 TH | 8,997,026 (29.99%) | 0.023458265490265185 ETH |
21022850 | 31 days ago | 88 | 0.00 TH | 4,418,123 (14.73%) | 0.00655329612346554 ETH |
21021898 | 31 days ago | 89 | 0.00 TH | 6,011,500 (20.04%) | 0.008680491555807521 ETH |
21021431 | 31 days ago | 97 | 0.00 TH | 7,500,936 (25.00%) | 0.009410179781101169 ETH |
21015850 | 32 days ago | 130 | 0.00 TH | 6,769,364 (22.56%) | 0.006350909030815276 ETH |
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,316.8 | 94.1573 | $312,301.12 |
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.