More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,815 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22277883 | 30 mins ago | IN | 0.08652718 ETH | 0.00001046 | ||||
Transfer | 22277557 | 1 hr ago | IN | 0.10396134 ETH | 0.00001049 | ||||
Transfer | 22277095 | 3 hrs ago | IN | 0.01341252 ETH | 0.00001421 | ||||
Transfer | 22277019 | 3 hrs ago | IN | 0.02474778 ETH | 0.00001133 | ||||
Transfer | 22275866 | 7 hrs ago | IN | 0.00908822 ETH | 0.00002289 | ||||
Transfer | 22275085 | 9 hrs ago | IN | 0.06131553 ETH | 0.00004211 | ||||
Transfer | 22274476 | 11 hrs ago | IN | 0.10684086 ETH | 0.00001478 | ||||
Transfer | 22274326 | 12 hrs ago | IN | 0.0119173 ETH | 0.00001281 | ||||
Transfer | 22274127 | 13 hrs ago | IN | 0.01753518 ETH | 0.00000983 | ||||
Transfer | 22274043 | 13 hrs ago | IN | 0.06165412 ETH | 0.00001203 | ||||
Transfer | 22273164 | 16 hrs ago | IN | 0.01281653 ETH | 0.00001078 | ||||
Transfer | 22273077 | 16 hrs ago | IN | 0.01578072 ETH | 0.00001028 | ||||
Transfer | 22271448 | 22 hrs ago | IN | 0.02800453 ETH | 0.00001128 | ||||
Transfer | 22271106 | 23 hrs ago | IN | 0.00877829 ETH | 0.00001075 | ||||
Transfer | 22270760 | 24 hrs ago | IN | 0.0190553 ETH | 0.00001126 | ||||
Transfer | 22270488 | 25 hrs ago | IN | 0.00529721 ETH | 0.00000983 | ||||
Transfer | 22270483 | 25 hrs ago | IN | 0.01645647 ETH | 0.00000963 | ||||
Transfer | 22268920 | 30 hrs ago | IN | 0.01081083 ETH | 0.0000274 | ||||
Transfer | 22266366 | 39 hrs ago | IN | 0.01773179 ETH | 0.00001206 | ||||
Transfer | 22266112 | 39 hrs ago | IN | 0.00862842 ETH | 0.00001067 | ||||
Transfer | 22263989 | 47 hrs ago | IN | 0.07174199 ETH | 0.00001009 | ||||
Transfer | 22263726 | 47 hrs ago | IN | 0.10319744 ETH | 0.00001206 | ||||
Transfer | 22262596 | 2 days ago | IN | 0.02192678 ETH | 0.00001375 | ||||
Transfer | 22262227 | 2 days ago | IN | 0.08315565 ETH | 0.00005024 | ||||
Transfer | 22261478 | 2 days ago | IN | 0.11753011 ETH | 0.00001247 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22096166 | 25 days ago | 0.00001652 ETH | ||||
Transfer | 22096166 | 25 days ago | 0.00006229 ETH | ||||
Transfer | 22096166 | 25 days ago | 0.00056409 ETH | ||||
Transfer | 22096166 | 25 days ago | 0.00024804 ETH | ||||
Transfer | 22096166 | 25 days ago | 0.00038049 ETH | ||||
Transfer | 22096166 | 25 days ago | 0.00013652 ETH | ||||
Transfer | 22075160 | 28 days ago | 0.00046168 ETH | ||||
Transfer | 22075160 | 28 days ago | 0.00172649 ETH | ||||
Transfer | 21967335 | 43 days ago | 0.00002684 ETH | ||||
Transfer | 21876957 | 55 days ago | 0.00000675 ETH | ||||
Transfer | 21876957 | 55 days ago | 0.00000728 ETH | ||||
Transfer | 21876957 | 55 days ago | 0.00002757 ETH | ||||
Transfer | 21876957 | 55 days ago | 0.00003297 ETH | ||||
Transfer | 21876957 | 55 days ago | 0.00007678 ETH | ||||
Transfer | 21863809 | 57 days ago | 0.00001671 ETH | ||||
Transfer | 21863809 | 57 days ago | 0.00003042 ETH | ||||
Transfer | 21815839 | 64 days ago | 139 ETH | ||||
Transfer | 21739365 | 75 days ago | 0.20257592 ETH | ||||
Transfer | 21319608 | 133 days ago | 0.00002262 ETH | ||||
Transfer | 21319608 | 133 days ago | 0.00065728 ETH | ||||
Transfer | 21277314 | 139 days ago | 0.00018987 ETH | ||||
Transfer | 21277314 | 139 days ago | 0.00217839 ETH | ||||
Transfer | 21115091 | 162 days ago | 0.15335275 ETH | ||||
Transfer | 20958439 | 184 days ago | 0.02 ETH | ||||
Transfer | 20631021 | 229 days ago | 0.01285128 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 111 blocks with 1.68 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22266795 | 37 hrs ago | 110 | 0.00 TH | 6,136,090 (17.08%) | 0.006500659391273715 ETH |
22239809 | 5 days ago | 106 | 0.00 TH | 5,211,186 (14.49%) | 0.004504035351337322 ETH |
22096166 | 25 days ago | 109 | 0.00 TH | 10,947,943 (30.41%) | 0.019416548073193818 ETH |
22075160 | 28 days ago | 209 | 0.00 TH | 17,941,416 (49.84%) | 0.030820515000741584 ETH |
21967335 | 43 days ago | 146 | 0.00 TH | 14,075,716 (39.10%) | 0.040149271612241059 ETH |
21920135 | 49 days ago | 236 | 0.00 TH | 19,443,315 (54.01%) | 0.021684112628217283 ETH |
21876957 | 55 days ago | 104 | 0.00 TH | 11,010,385 (30.58%) | 0.016983708006252794 ETH |
21869632 | 57 days ago | 199 | 0.00 TH | 13,235,620 (36.95%) | 0.010868295681536845 ETH |
21863809 | 57 days ago | 141 | 0.00 TH | 32,313,925 (89.76%) | 0.011352687012525956 ETH |
21729650 | 76 days ago | 160 | 0.00 TH | 8,480,737 (28.24%) | 0.010435081996397071 ETH |
21558681 | 100 days ago | 89 | 0.00 TH | 5,685,696 (18.90%) | 0.004675907098944317 ETH |
21555239 | 100 days ago | 115 | 0.00 TH | 8,388,363 (27.93%) | 0.004856614788040949 ETH |
21549271 | 101 days ago | 105 | 0.00 TH | 12,703,727 (42.30%) | 0.009647609805403948 ETH |
21485071 | 110 days ago | 102 | 0.00 TH | 6,000,536 (19.98%) | 0.006329659656967692 ETH |
21455929 | 114 days ago | 80 | 0.00 TH | 8,412,938 (28.02%) | 0.005896315780568805 ETH |
21449390 | 115 days ago | 103 | 0.00 TH | 7,899,707 (26.31%) | 0.008411340217961447 ETH |
21319608 | 133 days ago | 151 | 0.00 TH | 13,910,957 (46.37%) | 0.026973337070442704 ETH |
21277314 | 139 days ago | 358 | 0.00 TH | 29,875,994 (99.59%) | 0.039824846019874728 ETH |
21271638 | 140 days ago | 98 | 0.00 TH | 6,069,839 (20.23%) | 0.01097732513470647 ETH |
21259771 | 142 days ago | 176 | 0.00 TH | 13,248,152 (44.16%) | 0.010749450887470728 ETH |
21249078 | 143 days ago | 88 | 0.00 TH | 6,693,956 (22.31%) | 0.005159006618776732 ETH |
21218943 | 147 days ago | 106 | 0.00 TH | 6,778,991 (22.60%) | 0.007240221210827637 ETH |
21216558 | 148 days ago | 155 | 0.00 TH | 9,169,365 (30.56%) | 0.016068416022815197 ETH |
21211692 | 148 days ago | 88 | 0.00 TH | 7,243,577 (24.15%) | 0.012936974732014507 ETH |
21172445 | 154 days ago | 65 | 0.00 TH | 5,440,536 (18.14%) | 0.009772035862870056 ETH |
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,585.25 | 33.6545 | $53,350.8 |
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.