Transaction Hash:
Block:
15506029 at Sep-10-2022 01:28:58 AM +UTC
Transaction Fee:
0.000902454069880636 ETH
$2.43
Gas Used:
62,621 Gas / 14.411364716 Gwei
Emitted Events:
583 |
Proxy.0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830( 0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830, 000000000000000000000000be11869b087ff6102af9986a524903901497d1a8, 00000000000000000000000000000000000000000000000000000000000797d4, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000000000000000000a0, 0000000000000000000000000000000000000000000000000000000000edd56d, 000000000000000000000000000000000000000000000000000000000000002d, 0100000000000000000000000000000000000e35fa931a0000be11869b087ff6, 102af9986a524903901497d1a800000000000000000000000000000000000000 )
|
584 |
Proxy.0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0( 0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0, 0x0000000000000000000000000000000000000000000000000000000000000000, 000000000000000000000000000000000000000000000000000e35fa931a0000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xaBEA9132...00777fBEF | (zkSync) | 19,743.217555373768072936 Eth | 19,743.221555373768072936 Eth | 0.004 | |
0xBE11869B...01497D1A8 |
0.005841583186820149 Eth
Nonce: 21
|
0.000939129116939513 Eth
Nonce: 22
| 0.004902454069880636 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 888.831320788597568874 Eth | 888.831386711946375059 Eth | 0.000065923348806185 |
Execution Trace
ETH 0.004
Proxy.2d2da806( )
- ETH 0.004
ZkSync.depositETH( _zkSyncAddress=0xBE11869B087Ff6102AF9986A524903901497D1A8 )
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