Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
813.549206070085446393 ETH
Eth Value
$2,714,057.53 (@ $3,336.07/ETH)Token Holdings
Latest 25 from a total of 2,353 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 21487238 | 38 hrs ago | IN | 0 ETH | 0.00050174 | ||||
Transfer | 21487198 | 38 hrs ago | IN | 0.0002 ETH | 0.00020759 | ||||
Exec Transaction | 21487198 | 38 hrs ago | IN | 0 ETH | 0.0005555 | ||||
Exec Transaction | 21487195 | 38 hrs ago | IN | 0 ETH | 0.00049009 | ||||
Exec Transaction | 21465460 | 4 days ago | IN | 0 ETH | 0.00045553 | ||||
Exec Transaction | 21415546 | 11 days ago | IN | 0 ETH | 0.00100466 | ||||
Exec Transaction | 21415521 | 11 days ago | IN | 0 ETH | 0.00105671 | ||||
Exec Transaction | 21415510 | 11 days ago | IN | 0 ETH | 0.00092241 | ||||
Exec Transaction | 21394430 | 14 days ago | IN | 0 ETH | 0.00129211 | ||||
Exec Transaction | 21394387 | 14 days ago | IN | 0 ETH | 0.00155927 | ||||
Exec Transaction | 21386415 | 15 days ago | IN | 0 ETH | 0.00101936 | ||||
Exec Transaction | 21340396 | 22 days ago | IN | 0 ETH | 0.00122933 | ||||
Exec Transaction | 21333269 | 23 days ago | IN | 0 ETH | 0.00107147 | ||||
Exec Transaction | 21320395 | 24 days ago | IN | 0 ETH | 0.00232467 | ||||
Exec Transaction | 21320237 | 24 days ago | IN | 0 ETH | 0.00100608 | ||||
Exec Transaction | 21319157 | 25 days ago | IN | 0 ETH | 0.00144697 | ||||
Exec Transaction | 21319019 | 25 days ago | IN | 0 ETH | 0.00221722 | ||||
Exec Transaction | 21318970 | 25 days ago | IN | 0 ETH | 0.00136701 | ||||
Exec Transaction | 21312633 | 25 days ago | IN | 0 ETH | 0.00090259 | ||||
Exec Transaction | 21312628 | 25 days ago | IN | 0 ETH | 0.00085914 | ||||
Exec Transaction | 21292320 | 28 days ago | IN | 0 ETH | 0.00053624 | ||||
Exec Transaction | 21290287 | 29 days ago | IN | 0 ETH | 0.00050322 | ||||
Exec Transaction | 21284429 | 29 days ago | IN | 0 ETH | 0.00058548 | ||||
Exec Transaction | 21261487 | 33 days ago | IN | 0 ETH | 0.00062769 | ||||
Exec Transaction | 21243622 | 35 days ago | IN | 0 ETH | 0.00133762 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21487195 | 38 hrs ago | 200 ETH | ||||
21415546 | 11 days ago | 532.9 ETH | ||||
21415510 | 11 days ago | 230 ETH | ||||
21394430 | 14 days ago | 0.1 ETH | ||||
21386415 | 15 days ago | 220 ETH | ||||
21340396 | 22 days ago | 230 ETH | ||||
21333269 | 23 days ago | 130 ETH | ||||
21292320 | 28 days ago | 130 ETH | ||||
21261487 | 33 days ago | 160 ETH | ||||
21243622 | 35 days ago | 200 ETH | ||||
21229985 | 37 days ago | 150 ETH | ||||
21211391 | 40 days ago | 60 ETH | ||||
21183152 | 44 days ago | 170 ETH | ||||
21161743 | 47 days ago | 180 ETH | ||||
21112189 | 53 days ago | 125 ETH | ||||
21068184 | 60 days ago | 100 ETH | ||||
21061033 | 61 days ago | 30.27981256 ETH | ||||
21060853 | 61 days ago | 97 ETH | ||||
21011953 | 67 days ago | 150 ETH | ||||
20992952 | 70 days ago | 194 ETH | ||||
20991441 | 70 days ago | 1 ETH | ||||
20967941 | 74 days ago | 200 ETH | ||||
20939669 | 78 days ago | 100 ETH | ||||
20919248 | 80 days ago | 170 ETH | ||||
20889144 | 85 days ago | 100 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 286 blocks with 17.99 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21027088 | 65 days ago | 51 | 0.00 TH | 3,337,644 (11.13%) | 0.004887529497828189 ETH |
20874315 | 87 days ago | 155 | 0.00 TH | 15,120,987 (50.40%) | 0.038791081241817978 ETH |
20469143 | 143 days ago | 133 | 0.00 TH | 13,608,038 (45.36%) | 0.022863329790194802 ETH |
19689764 | 252 days ago | 145 | 0.00 TH | 14,459,597 (48.20%) | 0.023070813786067886 ETH |
19552907 | 271 days ago | 185 | 0.00 TH | 15,621,557 (52.07%) | 0.046079290406580843 ETH |
19513287 | 277 days ago | 192 | 0.00 TH | 18,379,147 (61.26%) | 0.50027611865827226 ETH |
19473932 | 282 days ago | 72 | 0.00 TH | 3,588,724 (11.96%) | 0.009409327647673907 ETH |
19473587 | 282 days ago | 44 | 0.00 TH | 5,739,652 (19.13%) | 0.054167814233864903 ETH |
19472960 | 283 days ago | 41 | 0.00 TH | 2,638,387 (8.79%) | 0.006929132368895527 ETH |
19471333 | 283 days ago | 73 | 0.00 TH | 4,803,300 (16.01%) | 0.01279694045678092 ETH |
19467044 | 283 days ago | 24 | 0.00 TH | 1,345,607 (4.49%) | 0.002973239493677056 ETH |
19466353 | 284 days ago | 74 | 0.00 TH | 6,377,400 (21.26%) | 0.032449973981317613 ETH |
19466167 | 284 days ago | 33 | 0.00 TH | 1,822,846 (6.08%) | 0.005616147318633941 ETH |
19466159 | 284 days ago | 105 | 0.00 TH | 4,361,909 (14.54%) | 0.010544003160960225 ETH |
19463997 | 284 days ago | 112 | 0.00 TH | 6,617,093 (22.06%) | 0.025043872627082406 ETH |
19463388 | 284 days ago | 48 | 0.00 TH | 2,982,695 (9.94%) | 0.016050555683448106 ETH |
19460590 | 284 days ago | 74 | 0.00 TH | 3,206,764 (10.69%) | 0.008860720601941972 ETH |
19460434 | 284 days ago | 96 | 0.00 TH | 7,284,514 (24.28%) | 0.01746018887459341 ETH |
19459875 | 284 days ago | 65 | 0.00 TH | 4,764,183 (15.88%) | 0.015120916319416445 ETH |
19459829 | 284 days ago | 22 | 0.00 TH | 658,609 (2.20%) | 0.001743816378712931 ETH |
19459296 | 285 days ago | 30 | 0.00 TH | 1,800,845 (6.00%) | 0.006701516033119401 ETH |
19456694 | 285 days ago | 47 | 0.00 TH | 3,281,781 (10.94%) | 0.013224370401558325 ETH |
19455448 | 285 days ago | 99 | 0.00 TH | 3,625,773 (12.09%) | 0.019291654863180848 ETH |
19454966 | 285 days ago | 52 | 0.00 TH | 2,475,040 (8.25%) | 0.005946575572626744 ETH |
19454582 | 285 days ago | 73 | 0.00 TH | 3,641,393 (12.14%) | 0.013058504487630049 ETH |
Loading...
Loading
Loading...
Loading
OVERVIEW
This is Bake.io's Fee Recipient address for ETH staking rewards.Latest 25 from a total of 28991 withdrawals (31,393.847659491 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
935963 | 21476404 | 3 days ago | 32.005410899 ETH |
935962 | 21476404 | 3 days ago | 32.00537281 ETH |
935961 | 21476404 | 3 days ago | 32.005408494 ETH |
935960 | 21476404 | 3 days ago | 32.00542679 ETH |
935959 | 21476404 | 3 days ago | 32.005419593 ETH |
935958 | 21476404 | 3 days ago | 32.005406409 ETH |
935957 | 21476404 | 3 days ago | 32.005425137 ETH |
935956 | 21476404 | 3 days ago | 32.00543346 ETH |
935955 | 21476403 | 3 days ago | 32.005404117 ETH |
935954 | 21476403 | 3 days ago | 32.005413654 ETH |
928029 | 21476046 | 3 days ago | 32.005501365 ETH |
928028 | 21476046 | 3 days ago | 32.005540426 ETH |
928027 | 21476046 | 3 days ago | 32.005540129 ETH |
928026 | 21476046 | 3 days ago | 32.005505889 ETH |
928025 | 21476046 | 3 days ago | 32.005511343 ETH |
928024 | 21476046 | 3 days ago | 32.005508638 ETH |
928023 | 21476046 | 3 days ago | 32.005517677 ETH |
928022 | 21476046 | 3 days ago | 32.005517568 ETH |
928021 | 21476046 | 3 days ago | 32.005483114 ETH |
928020 | 21476045 | 3 days ago | 32.005523806 ETH |
821511 | 21471799 | 3 days ago | 0.064945137 ETH |
821510 | 21471799 | 3 days ago | 0.01928619 ETH |
821509 | 21471799 | 3 days ago | 0.019332788 ETH |
821508 | 21471799 | 3 days ago | 0.065186977 ETH |
821507 | 21471799 | 3 days ago | 0.019300186 ETH |
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.