Transaction Hash:
Block:
17446282 at Jun-10-2023 12:40:59 AM +UTC
Transaction Fee:
0.001092781451077476 ETH
$2.78
Gas Used:
62,618 Gas / 17.451554682 Gwei
Emitted Events:
215 |
Proxy.0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830( 0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830, 0000000000000000000000003b6caafecab55fc140d5ddff5c7b06459e7de176, 000000000000000000000000000000000000000000000000000000000013cb4a, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000000000000000000a0, 00000000000000000000000000000000000000000000000000000000010b708a, 000000000000000000000000000000000000000000000000000000000000002d, 010000000000000000000000000000000000354a6ba7a180003b6caafecab55f, c140d5ddff5c7b06459e7de17600000000000000000000000000000000000000 )
|
216 |
Proxy.0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0( 0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0, 0x0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000000000000000000000000000000354a6ba7a18000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3b6caAFe...59e7DE176 |
0.02170113152098615 Eth
Nonce: 1
|
0.005608350069908674 Eth
Nonce: 2
| 0.016092781451077476 | ||
0xaBEA9132...00777fBEF | (zkSync) | 29,951.383280582993019616 Eth | 29,951.398280582993019616 Eth | 0.015 | |
0xDAFEA492...692c98Bc5
Miner
| (Flashbots: Builder) | 0.060965530373055193 Eth | 0.060985096274114305 Eth | 0.000019565901059112 |
Execution Trace
ETH 0.015
Proxy.2d2da806( )
- ETH 0.015
ZkSync.depositETH( _zkSyncAddress=0x3b6caAFecAb55fc140D5dDff5c7B06459e7DE176 )
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