More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 220 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21780206 | 18 hrs ago | IN | 0.02312233 ETH | 0.0000347 | ||||
Transfer | 21772522 | 44 hrs ago | IN | 0.01260278 ETH | 0.00006106 | ||||
Transfer | 21748725 | 5 days ago | IN | 0.01905518 ETH | 0.00003497 | ||||
Transfer | 21734097 | 7 days ago | IN | 0.02097884 ETH | 0.00005143 | ||||
Transfer | 21730074 | 7 days ago | IN | 0.02032187 ETH | 0.00006389 | ||||
Transfer | 21702525 | 11 days ago | IN | 0.05081542 ETH | 0.00022516 | ||||
Transfer | 21672375 | 15 days ago | IN | 0.3098732 ETH | 0.00030709 | ||||
Transfer | 21662763 | 17 days ago | IN | 0.17208585 ETH | 0.00108048 | ||||
Transfer | 21658380 | 17 days ago | IN | 0.05826119 ETH | 0.00111485 | ||||
Transfer | 21637973 | 20 days ago | IN | 0.04071163 ETH | 0.00031145 | ||||
Transfer | 21623098 | 22 days ago | IN | 0.03603372 ETH | 0.00022563 | ||||
Transfer | 21600263 | 25 days ago | IN | 0.01205096 ETH | 0.00006763 | ||||
Transfer | 21561945 | 31 days ago | IN | 0.02465855 ETH | 0.00017556 | ||||
Transfer | 21553619 | 32 days ago | IN | 0.02105086 ETH | 0.00023085 | ||||
Transfer | 21544831 | 33 days ago | IN | 0.06573378 ETH | 0.00045108 | ||||
Transfer | 21536830 | 34 days ago | IN | 0.03826444 ETH | 0.00036362 | ||||
Transfer | 21521867 | 36 days ago | IN | 0.31334359 ETH | 0.0003604 | ||||
Transfer | 21519150 | 37 days ago | IN | 0.01476977 ETH | 0.00012367 | ||||
Transfer | 21507534 | 38 days ago | IN | 0.01626261 ETH | 0.00009259 | ||||
Transfer | 21486925 | 41 days ago | IN | 0.0381328 ETH | 0.00016307 | ||||
Transfer | 21474532 | 43 days ago | IN | 0.0326353 ETH | 0.00013195 | ||||
Transfer | 21473307 | 43 days ago | IN | 0.06074073 ETH | 0.00035374 | ||||
Transfer | 21458114 | 45 days ago | IN | 0.01717248 ETH | 0.00016313 | ||||
Transfer | 21431902 | 49 days ago | IN | 0.04425192 ETH | 0.00140877 | ||||
Transfer | 21427944 | 49 days ago | IN | 0.03943426 ETH | 0.00026455 |
Latest 9 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21291231 | 69 days ago | 0.02390358 ETH | ||||
19827422 | 273 days ago | 0.005 ETH | ||||
19012877 | 387 days ago | 1,280 ETH | ||||
19012664 | 387 days ago | 1,280 ETH | ||||
18971496 | 393 days ago | 640 ETH | ||||
18970859 | 393 days ago | 32 ETH | ||||
17238318 | 636 days ago | 0.001 ETH | ||||
17238277 | 636 days ago | 0.001 ETH | ||||
17237818 | 636 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 50 blocks with 0.76 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
20447698 | 186 days ago | 149 | 0.00 TH | 16,299,738 (54.33%) | 0.033151791960905363 ETH |
19915899 | 261 days ago | 218 | 0.00 TH | 21,886,516 (72.96%) | 0.016191507714098424 ETH |
19914683 | 261 days ago | 156 | 0.00 TH | 13,801,493 (46.00%) | 0.017133031866791789 ETH |
19899367 | 263 days ago | 900 | 0.00 TH | 29,979,528 (99.93%) | 0.007835845678468362 ETH |
19898120 | 263 days ago | 165 | 0.00 TH | 17,094,299 (56.98%) | 0.015439775192110456 ETH |
19888097 | 264 days ago | 247 | 0.00 TH | 21,686,831 (72.29%) | 0.010836211082953879 ETH |
19884105 | 265 days ago | 141 | 0.00 TH | 9,157,512 (30.53%) | 0.006293684657556746 ETH |
19865390 | 268 days ago | 105 | 0.00 TH | 8,462,923 (28.21%) | 0.005549700135321386 ETH |
19864234 | 268 days ago | 111 | 0.00 TH | 6,780,469 (22.60%) | 0.005775655044478167 ETH |
19853841 | 269 days ago | 104 | 0.00 TH | 7,455,742 (24.85%) | 0.003836638622007211 ETH |
19827422 | 273 days ago | 156 | 0.00 TH | 13,006,822 (43.36%) | 0.008097939760337784 ETH |
19822255 | 274 days ago | 143 | 0.00 TH | 10,821,404 (36.07%) | 0.006943522973328665 ETH |
19794466 | 278 days ago | 152 | 0.00 TH | 13,467,533 (44.89%) | 0.005138634010463546 ETH |
19774548 | 280 days ago | 168 | 0.00 TH | 11,989,791 (39.97%) | 0.010814779061704828 ETH |
19771015 | 281 days ago | 295 | 0.00 TH | 29,982,249 (99.94%) | 0.006698936783770586 ETH |
19754746 | 283 days ago | 110 | 0.00 TH | 11,281,812 (37.61%) | 0.007043264302542073 ETH |
19754496 | 283 days ago | 168 | 0.00 TH | 17,571,924 (58.57%) | 0.017487490521690163 ETH |
19748948 | 284 days ago | 150 | 0.00 TH | 18,164,099 (60.55%) | 0.002552220116307621 ETH |
19740015 | 285 days ago | 127 | 0.00 TH | 9,284,957 (30.95%) | 0.008401446081584219 ETH |
19731163 | 286 days ago | 178 | 0.00 TH | 18,071,243 (60.24%) | 0.009457454437997408 ETH |
19672266 | 295 days ago | 120 | 0.00 TH | 10,370,487 (34.57%) | 0.003746936164854446 ETH |
19667560 | 295 days ago | 141 | 0.00 TH | 11,859,825 (39.53%) | 0.01016657426308502 ETH |
19656257 | 297 days ago | 280 | 0.00 TH | 29,896,875 (99.66%) | 0.005855226049813215 ETH |
19651753 | 298 days ago | 146 | 0.00 TH | 11,351,389 (37.84%) | 0.006573106286704952 ETH |
19645657 | 298 days ago | 111 | 0.00 TH | 8,910,357 (29.70%) | 0.004274276251650128 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 4364 withdrawals (89.524780598 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1131024 | 21749114 | 5 days ago | 0.019315095 ETH |
1131023 | 21749114 | 5 days ago | 0.019282524 ETH |
1131022 | 21749114 | 5 days ago | 0.019287942 ETH |
1131021 | 21749114 | 5 days ago | 0.019290132 ETH |
1131020 | 21749114 | 5 days ago | 0.019294686 ETH |
1131019 | 21749114 | 5 days ago | 0.019295059 ETH |
1131018 | 21749114 | 5 days ago | 0.019282295 ETH |
1131017 | 21749114 | 5 days ago | 0.019285013 ETH |
1131016 | 21749114 | 5 days ago | 0.019310507 ETH |
1131015 | 21749114 | 5 days ago | 0.019321655 ETH |
1131013 | 21749114 | 5 days ago | 0.019305844 ETH |
1131012 | 21749114 | 5 days ago | 0.019303984 ETH |
1131011 | 21749114 | 5 days ago | 0.019333886 ETH |
1131010 | 21749113 | 5 days ago | 0.019325317 ETH |
1131009 | 21749113 | 5 days ago | 0.019310118 ETH |
1131008 | 21749113 | 5 days ago | 0.019304355 ETH |
1131007 | 21749113 | 5 days ago | 0.019300298 ETH |
1131006 | 21749113 | 5 days ago | 0.019288328 ETH |
1131005 | 21749113 | 5 days ago | 0.019263166 ETH |
1131004 | 21749113 | 5 days ago | 0.019326809 ETH |
1130978 | 21749113 | 5 days ago | 0.019294282 ETH |
1130977 | 21749113 | 5 days ago | 0.019308536 ETH |
1130976 | 21749113 | 5 days ago | 0.019301767 ETH |
1130975 | 21749113 | 5 days ago | 0.019317508 ETH |
1130974 | 21749113 | 5 days ago | 0.019301709 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,836.72 | 4,154.4359 | $11,784,960.46 |
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.