Overview
ETH Balance
0.584651802406297628 ETH
Eth Value
$1,917.15 (@ $3,279.13/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 181 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21410288 | 7 days ago | IN | 0.01535488 ETH | 0.00028348 | ||||
Transfer | 21357825 | 15 days ago | IN | 0.02215099 ETH | 0.00024117 | ||||
Transfer | 21334807 | 18 days ago | IN | 0.0453166 ETH | 0.00043119 | ||||
Transfer | 21315194 | 21 days ago | IN | 0.04664475 ETH | 0.00050927 | ||||
Transfer | 21262663 | 28 days ago | IN | 0.26287498 ETH | 0.00014729 | ||||
Transfer | 21255254 | 29 days ago | IN | 0.02905283 ETH | 0.00025671 | ||||
Transfer | 21222948 | 33 days ago | IN | 0.04715983 ETH | 0.00047743 | ||||
Transfer | 21151567 | 43 days ago | IN | 0.05105642 ETH | 0.00032023 | ||||
Transfer | 21095604 | 51 days ago | IN | 0.02321735 ETH | 0.00017318 | ||||
Transfer | 21073315 | 54 days ago | IN | 0.03527251 ETH | 0.00036613 | ||||
Transfer | 20956185 | 71 days ago | IN | 0.03962385 ETH | 0.00025103 | ||||
Transfer | 20904917 | 78 days ago | IN | 0.03488156 ETH | 0.00011085 | ||||
Transfer | 20875186 | 82 days ago | IN | 0.0422169 ETH | 0.00013897 | ||||
Transfer | 20845823 | 86 days ago | IN | 0.03851378 ETH | 0.0002448 | ||||
Transfer | 20817912 | 90 days ago | IN | 0.05108398 ETH | 0.00029079 | ||||
Transfer | 20812535 | 91 days ago | IN | 0.06951491 ETH | 0.00048235 | ||||
Transfer | 20805537 | 92 days ago | IN | 0.06583822 ETH | 0.00030903 | ||||
Transfer | 20792975 | 93 days ago | IN | 0.06216786 ETH | 0.00070143 | ||||
Transfer | 20782944 | 95 days ago | IN | 0.08701764 ETH | 0.00025343 | ||||
Transfer | 20755785 | 99 days ago | IN | 0.01732068 ETH | 0.00003686 | ||||
Transfer | 20742068 | 101 days ago | IN | 0.02438048 ETH | 0.00005847 | ||||
Transfer | 20715610 | 104 days ago | IN | 0.04381001 ETH | 0.00010203 | ||||
Transfer | 20657251 | 112 days ago | IN | 0.01176549 ETH | 0.0000344 | ||||
Transfer | 20566759 | 125 days ago | IN | 0.05958125 ETH | 0.00011884 | ||||
Transfer | 20547898 | 128 days ago | IN | 0.02895761 ETH | 0.00002733 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20990293 | 66 days ago | 1.44718286 ETH | ||||
20295978 | 163 days ago | 3 ETH | ||||
19945410 | 212 days ago | 1.64767349 ETH | ||||
19269765 | 307 days ago | 1.74001426 ETH | ||||
19223551 | 313 days ago | 0.1 ETH | ||||
19216539 | 314 days ago | 0.5 ETH | ||||
18645796 | 394 days ago | 0.1 ETH | ||||
18571257 | 405 days ago | 0.1 ETH | ||||
18528273 | 411 days ago | 0.0009 ETH | ||||
18525050 | 411 days ago | 0.5 ETH | ||||
18466890 | 419 days ago | 0.18366215 ETH | ||||
18446433 | 422 days ago | 0.65515148 ETH | ||||
18353645 | 435 days ago | 0.5 ETH | ||||
18103782 | 470 days ago | 3.43155859 ETH | ||||
18103752 | 470 days ago | 0.1 ETH | ||||
17571339 | 545 days ago | 0.5 ETH | ||||
17421253 | 566 days ago | 0.00061994 ETH | ||||
17307535 | 582 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 15 blocks produced
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21020609 | 62 days ago | 120 | 0.00 TH | 7,987,368 (26.62%) | 0.006550614125508464 ETH |
20896858 | 79 days ago | 78 | 0.00 TH | 12,694,518 (42.32%) | 0.009920493645327468 ETH |
19003660 | 344 days ago | 366 | 0.00 TH | 18,790,541 (62.64%) | 0.020188535826961249 ETH |
18790434 | 374 days ago | 158 | 0.00 TH | 12,371,854 (41.24%) | 0.035980803368327673 ETH |
18528273 | 411 days ago | 166 | 0.00 TH | 20,094,189 (66.98%) | 0.055524323576927363 ETH |
18394500 | 429 days ago | 118 | 0.00 TH | 11,588,165 (38.67%) | 0.027341852185750995 ETH |
18184433 | 459 days ago | 182 | 0.00 TH | 13,214,292 (44.05%) | 0.080935678718367565 ETH |
18037925 | 479 days ago | 117 | 0.00 TH | 14,695,854 (48.99%) | 0.115077482211268129 ETH |
17943936 | 492 days ago | 186 | 0.00 TH | 15,718,927 (52.40%) | 0.057122573628436744 ETH |
17714035 | 525 days ago | 167 | 0.00 TH | 14,871,920 (49.57%) | 0.019776763643476577 ETH |
17585861 | 543 days ago | 144 | 0.00 TH | 14,777,820 (49.26%) | 0.05857512345061345 ETH |
17566434 | 545 days ago | 120 | 0.00 TH | 10,182,488 (33.94%) | 0.029697277198637207 ETH |
17489289 | 556 days ago | 122 | 0.00 TH | 11,287,022 (37.62%) | 0.020802033546251566 ETH |
17421253 | 566 days ago | 106 | 0.00 TH | 14,521,430 (48.40%) | 0.02495552549662299 ETH |
17402645 | 568 days ago | 34 | 0.00 TH | 29,966,376 (99.89%) | 0.12488154226404173 ETH |
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,283.8 | 0.5847 | $1,919.88 |
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.