More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,018 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 20937385 | 100 days ago | IN | 0 ETH | 0.00075485 | ||||
Exec Transaction | 20539914 | 155 days ago | IN | 0 ETH | 0.00016389 | ||||
Exec Transaction | 20539903 | 155 days ago | IN | 0 ETH | 0.00007646 | ||||
Exec Transaction | 20464939 | 166 days ago | IN | 0 ETH | 0.00052576 | ||||
Exec Transaction | 20464878 | 166 days ago | IN | 0 ETH | 0.0006671 | ||||
Exec Transaction | 20414607 | 173 days ago | IN | 0 ETH | 0.00055016 | ||||
Exec Transaction | 20414360 | 173 days ago | IN | 0 ETH | 0.00060223 | ||||
Exec Transaction | 20414341 | 173 days ago | IN | 0 ETH | 0.00100232 | ||||
Exec Transaction | 20414328 | 173 days ago | IN | 0 ETH | 0.00079696 | ||||
Exec Transaction | 20370284 | 179 days ago | IN | 0 ETH | 0.00106959 | ||||
Exec Transaction | 20340153 | 183 days ago | IN | 0 ETH | 0.00064922 | ||||
Exec Transaction | 20068243 | 221 days ago | IN | 0 ETH | 0.00176433 | ||||
Exec Transaction | 20039506 | 225 days ago | IN | 0 ETH | 0.00085252 | ||||
Exec Transaction | 20039467 | 225 days ago | IN | 0 ETH | 0.00074277 | ||||
Exec Transaction | 19795128 | 259 days ago | IN | 0 ETH | 0.00056301 | ||||
Exec Transaction | 19795123 | 259 days ago | IN | 0 ETH | 0.00055241 | ||||
Exec Transaction | 19795116 | 259 days ago | IN | 0 ETH | 0.00047696 | ||||
Transfer | 19512603 | 299 days ago | IN | 2,601.4995 ETH | 0.00122554 | ||||
Transfer | 19461053 | 306 days ago | IN | 5,578.688 ETH | 0.00069606 | ||||
Transfer | 19460633 | 306 days ago | IN | 5,562.033 ETH | 0.00068374 | ||||
Transfer | 19458680 | 306 days ago | IN | 5,384.3509 ETH | 0.00074487 | ||||
Exec Transaction | 19391087 | 316 days ago | IN | 0 ETH | 0.01453342 | ||||
Transfer | 19335850 | 324 days ago | IN | 0.94713032 ETH | 0.00218998 | ||||
Exec Transaction | 19189409 | 344 days ago | IN | 0 ETH | 0.00580795 | ||||
Transfer | 19189339 | 344 days ago | IN | 0.01 ETH | 0.00127777 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21632100 | 3 days ago | 2.4257075 ETH | ||||
21538529 | 16 days ago | 2.60697114 ETH | ||||
21413886 | 33 days ago | 3.02739551 ETH | ||||
21308881 | 48 days ago | 4.89374419 ETH | ||||
21196073 | 64 days ago | 5.31381033 ETH | ||||
21085932 | 79 days ago | 3.31442593 ETH | ||||
20970947 | 95 days ago | 7.91286109 ETH | ||||
20865884 | 110 days ago | 5.22741222 ETH | ||||
20763825 | 124 days ago | 4.02982413 ETH | ||||
20655906 | 139 days ago | 3.09425317 ETH | ||||
20536821 | 156 days ago | 9.25534479 ETH | ||||
20429615 | 171 days ago | 11.31777573 ETH | ||||
20370284 | 179 days ago | 17,940 ETH | ||||
20310733 | 187 days ago | 6.92830046 ETH | ||||
20204575 | 202 days ago | 2.76212783 ETH | ||||
20107143 | 216 days ago | 9.34663251 ETH | ||||
20068366 | 221 days ago | 1 ETH | ||||
20039506 | 225 days ago | 1,760 ETH | ||||
20039467 | 225 days ago | 0.01 ETH | ||||
19988690 | 232 days ago | 4.984051 ETH | ||||
19874292 | 248 days ago | 5.7304622 ETH | ||||
19782153 | 261 days ago | 9.73258032 ETH | ||||
19656583 | 279 days ago | 5.50737844 ETH | ||||
19542079 | 295 days ago | 9.37263871 ETH | ||||
19440777 | 309 days ago | 11.47625621 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 345 blocks with 29.98 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
17843565 | 533 days ago | 131 | 0.00 TH | 12,948,192 (43.16%) | 0.022241635099683239 ETH |
17839971 | 533 days ago | 196 | 0.00 TH | 15,312,214 (51.04%) | 0.025732636378675805 ETH |
17829743 | 535 days ago | 178 | 0.00 TH | 18,184,943 (60.62%) | 0.370695050040028621 ETH |
17829405 | 535 days ago | 155 | 0.00 TH | 12,839,932 (42.80%) | 0.10887137523244431 ETH |
17828481 | 535 days ago | 116 | 0.00 TH | 10,946,088 (36.49%) | 0.145055956339663004 ETH |
17826801 | 535 days ago | 151 | 0.00 TH | 15,165,481 (50.55%) | 0.053445382011414085 ETH |
17821278 | 536 days ago | 113 | 0.00 TH | 10,635,951 (35.45%) | 0.029677862083406035 ETH |
17821024 | 536 days ago | 124 | 0.00 TH | 11,156,400 (37.19%) | 0.022218390774493254 ETH |
17812858 | 537 days ago | 165 | 0.00 TH | 15,538,688 (51.80%) | 0.051599556928822349 ETH |
17812146 | 537 days ago | 90 | 0.00 TH | 29,957,564 (99.86%) | 0.020474466765191654 ETH |
17810811 | 537 days ago | 279 | 0.00 TH | 21,795,364 (72.65%) | 0.062777922344345387 ETH |
17802155 | 539 days ago | 82 | 0.00 TH | 9,127,450 (30.42%) | 0.011824868011193098 ETH |
17801653 | 539 days ago | 105 | 0.00 TH | 15,400,424 (51.33%) | 0.021833487546182374 ETH |
17797423 | 539 days ago | 148 | 0.00 TH | 12,890,646 (42.97%) | 0.032594915087908317 ETH |
17796086 | 539 days ago | 148 | 0.00 TH | 17,012,071 (56.71%) | 0.11126023420873808 ETH |
17790325 | 540 days ago | 156 | 0.00 TH | 16,082,348 (53.61%) | 0.038510615849537756 ETH |
17788802 | 540 days ago | 113 | 0.00 TH | 11,982,912 (39.94%) | 0.038909967103926409 ETH |
17787080 | 541 days ago | 171 | 0.00 TH | 23,408,030 (78.03%) | 0.086044444356687807 ETH |
17786245 | 541 days ago | 109 | 0.00 TH | 11,239,281 (37.46%) | 0.02469697520255201 ETH |
17777105 | 542 days ago | 104 | 0.00 TH | 8,634,167 (28.78%) | 0.024419197822255038 ETH |
17776824 | 542 days ago | 103 | 0.00 TH | 10,280,986 (34.27%) | 0.067563289377067244 ETH |
17773166 | 543 days ago | 114 | 0.00 TH | 12,715,888 (42.39%) | 0.028441086117362721 ETH |
17772087 | 543 days ago | 126 | 0.00 TH | 12,860,446 (42.87%) | 0.07536962350015384 ETH |
17758458 | 545 days ago | 148 | 0.00 TH | 15,677,046 (52.26%) | 0.107486352752524621 ETH |
17757596 | 545 days ago | 119 | 0.00 TH | 16,621,396 (55.40%) | 0.060429845805331848 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 88305 withdrawals (1,746.161394864 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
569488 | 21595316 | 8 days ago | 0.019275005 ETH |
569487 | 21595316 | 8 days ago | 0.019263278 ETH |
569486 | 21595316 | 8 days ago | 0.019282239 ETH |
569485 | 21595316 | 8 days ago | 0.019274666 ETH |
569484 | 21595316 | 8 days ago | 0.019249443 ETH |
569483 | 21595316 | 8 days ago | 0.019261683 ETH |
569482 | 21595316 | 8 days ago | 0.019270466 ETH |
569481 | 21595316 | 8 days ago | 0.019263587 ETH |
569480 | 21595315 | 8 days ago | 0.019259105 ETH |
569479 | 21595315 | 8 days ago | 0.019270279 ETH |
569478 | 21595315 | 8 days ago | 0.111043714 ETH |
569477 | 21595315 | 8 days ago | 0.065424726 ETH |
569476 | 21595315 | 8 days ago | 0.019254345 ETH |
569475 | 21595315 | 8 days ago | 0.019268251 ETH |
569474 | 21595315 | 8 days ago | 0.019261489 ETH |
569473 | 21595315 | 8 days ago | 0.019247505 ETH |
569472 | 21595315 | 8 days ago | 0.065255141 ETH |
569471 | 21595315 | 8 days ago | 0.019267937 ETH |
569470 | 21595315 | 8 days ago | 0.019251955 ETH |
569469 | 21595315 | 8 days ago | 0.019277018 ETH |
569468 | 21595315 | 8 days ago | 0.019240296 ETH |
569467 | 21595315 | 8 days ago | 0.019249597 ETH |
569466 | 21595315 | 8 days ago | 0.019253901 ETH |
569465 | 21595315 | 8 days ago | 0.019256748 ETH |
569464 | 21595314 | 8 days ago | 0.01925937 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 67.95% | $5.72 | 5,000,000 | $28,600,000 | |
ETH | 22.83% | $3,293.57 | 2,918.3027 | $9,611,634.1 | |
ETH | Ether (ETH) | 4.00% | $3,299.98 | 510.0825 | $1,683,262.53 |
ETH | 3.32% | $1.77 | 789,286.6959 | $1,397,037.45 | |
ETH | 0.70% | $0.391202 | 757,356.8325 | $296,279.17 | |
ETH | 0.70% | $3,299.98 | 89.511 | $295,384.53 | |
ETH | 0.19% | $1.25 | 64,000 | $80,169.32 | |
ETH | 0.18% | $2.85 | 26,218.111 | $74,721.62 | |
ETH | 0.13% | $17,916.51 | 3.0033 | $53,809.45 | |
ETH | <0.01% | $0.00092 | 1,000 | $0.9195 | |
ETH | <0.01% | $1 | 0.7275 | $0.7275 | |
ETH | <0.01% | $0.999811 | 0.5076 | $0.5075 | |
ETH | <0.01% | $0.99893 | 0.2298 | $0.2295 | |
OP | <0.01% | $3,299.24 | 0.00000001 | $0.000033 |
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.