More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 8,146 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22139391 | 4 mins ago | IN | 0.02932529 ETH | 0.00002451 | ||||
Transfer | 22139212 | 40 mins ago | IN | 0.12467446 ETH | 0.00004563 | ||||
Transfer | 22139050 | 1 hr ago | IN | 0.0682743 ETH | 0.00005181 | ||||
Transfer | 22139043 | 1 hr ago | IN | 0.03294475 ETH | 0.00005343 | ||||
Transfer | 22138614 | 2 hrs ago | IN | 0.07936756 ETH | 0.00003352 | ||||
Transfer | 22138325 | 3 hrs ago | IN | 0.01709224 ETH | 0.00002406 | ||||
Transfer | 22138139 | 4 hrs ago | IN | 0.02592182 ETH | 0.00001902 | ||||
Transfer | 22138000 | 4 hrs ago | IN | 0.03864987 ETH | 0.00001388 | ||||
Transfer | 22137805 | 5 hrs ago | IN | 0.00943986 ETH | 0.00002106 | ||||
Transfer | 22137571 | 6 hrs ago | IN | 0.03272509 ETH | 0.00000989 | ||||
Transfer | 22137551 | 6 hrs ago | IN | 0.32935632 ETH | 0.00000902 | ||||
Transfer | 22137240 | 7 hrs ago | IN | 0.01953816 ETH | 0.00000953 | ||||
Transfer | 22137103 | 7 hrs ago | IN | 0.01904859 ETH | 0.00001099 | ||||
Transfer | 22136896 | 8 hrs ago | IN | 0.0083908 ETH | 0.00001266 | ||||
Transfer | 22136841 | 8 hrs ago | IN | 0.01483767 ETH | 0.00001053 | ||||
Transfer | 22136824 | 8 hrs ago | IN | 0.01660271 ETH | 0.00000974 | ||||
Transfer | 22136645 | 9 hrs ago | IN | 0.0072936 ETH | 0.00001032 | ||||
Transfer | 22136522 | 9 hrs ago | IN | 0.0142382 ETH | 0.00000981 | ||||
Transfer | 22136440 | 9 hrs ago | IN | 0.01345759 ETH | 0.00001092 | ||||
Transfer | 22136409 | 10 hrs ago | IN | 0.01356553 ETH | 0.00001057 | ||||
Transfer | 22136325 | 10 hrs ago | IN | 0.01743154 ETH | 0.00001051 | ||||
Transfer | 22136172 | 10 hrs ago | IN | 0.06925864 ETH | 0.00001079 | ||||
Transfer | 22136137 | 10 hrs ago | IN | 0.0169889 ETH | 0.0000104 | ||||
Transfer | 22136007 | 11 hrs ago | IN | 0.00642399 ETH | 0.00000962 | ||||
Transfer | 22135697 | 12 hrs ago | IN | 0.03733109 ETH | 0.00001111 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22071356 | 9 days ago | 0.00002012 ETH | ||||
Transfer | 22071356 | 9 days ago | 0.00004707 ETH | ||||
Transfer | 22071356 | 9 days ago | 0.00021785 ETH | ||||
Transfer | 22051810 | 12 days ago | 0.00001513 ETH | ||||
Transfer | 22051810 | 12 days ago | 0.00003596 ETH | ||||
Transfer | 22051810 | 12 days ago | 0.0000388 ETH | ||||
Transfer | 22051810 | 12 days ago | 0.00017661 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.00000728 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.00001213 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.00008224 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.0003642 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.00041236 ETH | ||||
Transfer | 21998367 | 19 days ago | 0.0035188 ETH | ||||
Transfer | 21951068 | 26 days ago | 39.05244 ETH | ||||
Transfer | 21951065 | 26 days ago | 25.254251 ETH | ||||
Transfer | 21949181 | 26 days ago | 1.99566801 ETH | ||||
Transfer | 21949099 | 26 days ago | 0.00005563 ETH | ||||
Transfer | 21936563 | 28 days ago | 0.00041581 ETH | ||||
Transfer | 21936563 | 28 days ago | 0.0049422 ETH | ||||
Transfer | 21922313 | 30 days ago | 0.31357109 ETH | ||||
Transfer | 21839269 | 41 days ago | 0.20380126 ETH | ||||
Transfer | 21813486 | 45 days ago | 0.00011818 ETH | ||||
Transfer | 21813486 | 45 days ago | 0.00149074 ETH | ||||
Transfer | 21793051 | 48 days ago | 0.00000959 ETH | ||||
Transfer | 21793051 | 48 days ago | 0.00022779 ETH |
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 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
Contract ABI
API[{"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 122 blocks with 5.38 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22120724 | 2 days ago | 175 | 0.00 TH | 14,674,933 (40.84%) | 0.009401609133915778 ETH |
22108123 | 4 days ago | 103 | 0.00 TH | 7,382,785 (20.53%) | 0.004918579648773919 ETH |
22071356 | 9 days ago | 76 | 0.00 TH | 7,485,745 (20.79%) | 0.015573614502482827 ETH |
22051810 | 12 days ago | 169 | 0.00 TH | 16,263,722 (45.18%) | 0.022301767470972579 ETH |
21998367 | 19 days ago | 143 | 0.00 TH | 12,383,646 (34.40%) | 0.009499455801757098 ETH |
21949099 | 26 days ago | 132 | 0.00 TH | 19,833,718 (55.09%) | 0.014363411731010864 ETH |
21936563 | 28 days ago | 399 | 0.00 TH | 35,994,667 (99.99%) | 0.013575354958169557 ETH |
21924298 | 30 days ago | 132 | 0.00 TH | 12,038,250 (33.44%) | 0.464590716197284691 ETH |
21910945 | 31 days ago | 78 | 0.00 TH | 6,777,659 (18.83%) | 0.014008158086257555 ETH |
21813486 | 45 days ago | 146 | 0.00 TH | 14,934,554 (41.53%) | 0.035180604734321704 ETH |
21796183 | 47 days ago | 183 | 0.00 TH | 15,057,951 (41.91%) | 0.041708218041189542 ETH |
21793051 | 48 days ago | 180 | 0.00 TH | 14,227,878 (39.52%) | 0.020103991932243396 ETH |
21775033 | 50 days ago | 134 | 0.00 TH | 12,609,594 (35.03%) | 0.018598599989522333 ETH |
21722806 | 58 days ago | 192 | 0.00 TH | 17,541,591 (58.19%) | 0.037648702044183164 ETH |
21709642 | 60 days ago | 134 | 0.00 TH | 9,042,422 (30.05%) | 0.062811313605425481 ETH |
21679591 | 64 days ago | 117 | 0.00 TH | 11,246,871 (37.45%) | 0.045704417691772184 ETH |
21678480 | 64 days ago | 122 | 0.00 TH | 12,166,235 (40.48%) | 0.019256375195199033 ETH |
21620971 | 72 days ago | 95 | 0.00 TH | 9,866,640 (32.89%) | 0.020970291487920988 ETH |
21483147 | 91 days ago | 136 | 0.00 TH | 13,373,309 (44.58%) | 0.02064262205380861 ETH |
21455502 | 95 days ago | 393 | 0.00 TH | 18,276,715 (60.92%) | 0.021352720277197293 ETH |
21386685 | 105 days ago | 261 | 0.00 TH | 21,302,616 (71.01%) | 0.044409683128392927 ETH |
21352955 | 109 days ago | 276 | 0.00 TH | 17,295,661 (57.65%) | 0.018759004883088131 ETH |
21342042 | 111 days ago | 170 | 0.00 TH | 14,788,324 (49.29%) | 0.023020058845645393 ETH |
21338094 | 111 days ago | 166 | 0.00 TH | 13,239,713 (44.13%) | 0.053627546073744714 ETH |
21335346 | 112 days ago | 165 | 0.00 TH | 14,272,887 (47.58%) | 0.024415228712212357 ETH |
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,014.35 | 75.8313 | $152,750.83 |
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.