Overview
ETH Balance
0.616176172 ETH
Eth Value
$1,996.70 (@ $3,240.48/ETH)Token Holdings
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 21345520 | 13 days ago | IN | 0 ETH | 0.00172721 | ||||
Transfer | 20825933 | 86 days ago | IN | 0.00000067 ETH | 0.00031645 | ||||
Exec Transaction | 20825930 | 86 days ago | IN | 0 ETH | 0.00067937 | ||||
Exec Transaction | 20071268 | 191 days ago | IN | 0 ETH | 0.00111438 | ||||
Exec Transaction | 20016308 | 199 days ago | IN | 0 ETH | 0.00049518 | ||||
Exec Transaction | 19930881 | 211 days ago | IN | 0 ETH | 0.00043337 | ||||
Exec Transaction | 19912313 | 213 days ago | IN | 0 ETH | 0.00111481 | ||||
Exec Transaction | 19787815 | 231 days ago | IN | 0 ETH | 0.00074858 | ||||
Exec Transaction | 19787752 | 231 days ago | IN | 0 ETH | 0.00087044 | ||||
Exec Transaction | 19274243 | 303 days ago | IN | 0 ETH | 0.00187808 | ||||
Exec Transaction | 18795549 | 370 days ago | IN | 0 ETH | 0.00561414 | ||||
Exec Transaction | 17932381 | 491 days ago | IN | 0 ETH | 0.00117747 | ||||
Exec Transaction | 17143124 | 602 days ago | IN | 0 ETH | 0.00222919 | ||||
Exec Transaction | 16536153 | 687 days ago | IN | 0 ETH | 0.00318329 | ||||
Exec Transaction | 15907500 | 775 days ago | IN | 0 ETH | 0.00064441 | ||||
Exec Transaction | 15729980 | 800 days ago | IN | 0 ETH | 0.00424955 | ||||
Transfer | 15270477 | 869 days ago | IN | 0.78872322 ETH | 0.00046031 | ||||
Transfer | 15232762 | 875 days ago | IN | 0.4597452 ETH | 0.00061729 | ||||
Transfer | 15170146 | 885 days ago | IN | 0.61623081 ETH | 0.00048765 | ||||
Transfer | 14143992 | 1049 days ago | IN | 110.12345678 ETH | 0.00183104 | ||||
Transfer | 14143967 | 1049 days ago | IN | 63.73259812 ETH | 0.00248693 | ||||
Exec Transaction | 14079878 | 1059 days ago | IN | 0 ETH | 0.00570536 | ||||
Transfer | 14079694 | 1059 days ago | IN | 3.93163275 ETH | 0.00287094 | ||||
Exec Transaction | 14079688 | 1059 days ago | IN | 0 ETH | 0.01121113 | ||||
Transfer | 13882270 | 1089 days ago | IN | 0.00099999 ETH | 0.00156693 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21345520 | 13 days ago | 4.66178336 ETH | ||||
20825930 | 86 days ago | 6.75305539 ETH | ||||
20071268 | 191 days ago | 0.53242522 ETH | ||||
20016308 | 199 days ago | 1.314 ETH | ||||
19930881 | 211 days ago | 0.05602528 ETH | ||||
19912313 | 213 days ago | 6.31936188 ETH | ||||
19274243 | 303 days ago | 5 ETH | ||||
18795549 | 370 days ago | 11.3 ETH | ||||
17932381 | 491 days ago | 10 ETH | ||||
17376163 | 569 days ago | 0.55949519 ETH | ||||
17143124 | 602 days ago | 68.4 ETH | ||||
17091142 | 609 days ago | 0.50222453 ETH | ||||
16926855 | 632 days ago | 0.68217047 ETH | ||||
16737102 | 659 days ago | 0.87749571 ETH | ||||
16536153 | 687 days ago | 56 ETH | ||||
16494556 | 693 days ago | 0.39313753 ETH | ||||
16370708 | 710 days ago | 1.5678371 ETH | ||||
16091282 | 749 days ago | 1.00815631 ETH | ||||
15916518 | 774 days ago | 75.20992619 ETH | ||||
15915800 | 774 days ago | 1.393887 ETH | ||||
15907500 | 775 days ago | 200 ETH | ||||
15829941 | 786 days ago | 3.3500522 ETH | ||||
15679856 | 807 days ago | 2.91354325 ETH | ||||
15536659 | 827 days ago | 1.88193646 ETH | ||||
15506013 | 832 days ago | 3.68175382 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
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 2241 withdrawals (88.078221538 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
613516 | 21397041 | 6 days ago | 0.019415804 ETH |
502217 | 21392847 | 7 days ago | 0.065391981 ETH |
502216 | 21392847 | 7 days ago | 0.019419206 ETH |
502215 | 21392847 | 7 days ago | 0.019444085 ETH |
289869 | 21385625 | 8 days ago | 0.019333018 ETH |
289868 | 21385625 | 8 days ago | 0.019406273 ETH |
289867 | 21385625 | 8 days ago | 0.019412255 ETH |
289866 | 21385625 | 8 days ago | 0.019420449 ETH |
289865 | 21385625 | 8 days ago | 0.019411681 ETH |
289864 | 21385625 | 8 days ago | 0.019447295 ETH |
289863 | 21385625 | 8 days ago | 0.01936758 ETH |
289862 | 21385625 | 8 days ago | 0.019412955 ETH |
289861 | 21385625 | 8 days ago | 0.019446555 ETH |
289860 | 21385625 | 8 days ago | 0.019378067 ETH |
286762 | 21385526 | 8 days ago | 0.019433858 ETH |
286761 | 21385526 | 8 days ago | 0.019426426 ETH |
286760 | 21385526 | 8 days ago | 0.019379513 ETH |
286759 | 21385526 | 8 days ago | 0.019396871 ETH |
286758 | 21385526 | 8 days ago | 0.019439901 ETH |
257390 | 21384826 | 8 days ago | 0.019371112 ETH |
257389 | 21384826 | 8 days ago | 0.019411939 ETH |
257388 | 21384826 | 8 days ago | 0.019450344 ETH |
257387 | 21384826 | 8 days ago | 0.019425709 ETH |
257386 | 21384826 | 8 days ago | 0.019382679 ETH |
199141 | 21382979 | 8 days ago | 0.019450093 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,240.48 | 0.6162 | $1,996.7 |
Loading...
Loading
[ 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.