Transaction Hash:
Block:
18290246 at Oct-06-2023 08:23:11 AM +UTC
Transaction Fee:
0.000414914125801908 ETH
$1.06
Gas Used:
62,618 Gas / 6.626115906 Gwei
Emitted Events:
213 |
Proxy.0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830( 0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830, 000000000000000000000000c1791861d06517c74c618c701080dc84404dafce, 0000000000000000000000000000000000000000000000000000000000186579, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000000000000000000a0, 0000000000000000000000000000000000000000000000000000000001185146, 000000000000000000000000000000000000000000000000000000000000002d, 0100000000000000000000000000000000010a741a46278000c1791861d06517, c74c618c701080dc84404dafce00000000000000000000000000000000000000 )
|
214 |
Proxy.0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0( 0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0, 0x0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000010a741a46278000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x690B9A9E...Db4FaC990
Miner
| (builder0x69) | 1.771749668717733036 Eth | 1.771777879998510292 Eth | 0.000028211280777256 | |
0xaBEA9132...00777fBEF | (zkSync) | 29,870.111187785354228383 Eth | 29,870.186187785354228383 Eth | 0.075 | |
0xC1791861...4404dAFCe |
0.078315467027610204 Eth
Nonce: 1
|
0.002900552901808296 Eth
Nonce: 2
| 0.075414914125801908 |
Execution Trace
ETH 0.075
Proxy.2d2da806( )
- ETH 0.075
ZkSync.depositETH( _zkSyncAddress=0xC1791861D06517C74C618C701080DC84404dAFCe )
File 1 of 2: Proxy
File 2 of 2: ZkSync
12345678910111213141516pragma solidity ^0.5.0;import "./Ownable.sol";import "./Upgradeable.sol";import "./UpgradeableMaster.sol";/// @title Proxy Contract/// @dev NOTICE: Proxy must implement UpgradeableMaster interface to prevent calling some function of it not by master of proxy/// @author Matter Labscontract Proxy is Upgradeable, UpgradeableMaster, Ownable {/// @notice Storage position of "target" (actual implementation address: keccak256('eip1967.proxy.implementation') - 1)bytes32 private constant targetPosition = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;/// @notice Contract constructor/// @dev Calls Ownable contract constructor and initialize target/// @param target Initial implementation address/// @param targetInitializationParameters Target initialization parametersconstructor(address target, bytes memory targetInitializationParameters) Ownable(msg.sender) public {setTarget(target);
File 2 of 2: ZkSync
12345678910111213141516pragma solidity ^0.7.0;pragma experimental ABIEncoderV2;// SPDX-License-Identifier: MIT OR Apache-2.0import "./ReentrancyGuard.sol";import "./SafeMath.sol";import "./SafeMathUInt128.sol";import "./SafeCast.sol";import "./Utils.sol";import "./Storage.sol";import "./Config.sol";import "./Events.sol";import "./Bytes.sol";import "./Operations.sol";import "./UpgradeableMaster.sol";import "./AdditionalZkSync.sol";/// @title zkSync main contract