Transaction Hash:
Block:
15818744 at Oct-24-2022 03:06:35 PM +UTC
Transaction Fee:
0.006187316473288558 ETH
$28.87
Gas Used:
62,618 Gas / 98.810509331 Gwei
Emitted Events:
299 |
Proxy.0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830( 0xd0943372c08b438a88d4b39d77216901079eda9ca59d45349841c099083b6830, 000000000000000000000000dbfefae8b7e067a1e9ebf449fe6356190edfa677, 000000000000000000000000000000000000000000000000000000000008bd89, 0000000000000000000000000000000000000000000000000000000000000001, 00000000000000000000000000000000000000000000000000000000000000a0, 0000000000000000000000000000000000000000000000000000000000f29af8, 000000000000000000000000000000000000000000000000000000000000002d, 010000000000000000000000000000000000038d7ea4c68000dbfefae8b7e067, a1e9ebf449fe6356190edfa67700000000000000000000000000000000000000 )
|
300 |
Proxy.0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0( 0x8f5f51448394699ad6a3b80cdadf4ec68c5d724c8c3fea09bea55b3c2d0e2dd0, 0x0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000000000000000000000000000000038d7ea4c68000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x8D5998A2...0a7aa05b9
Miner
| (MEV Builder: 0x8D...5b9) | 0.080016078137985861 Eth | 0.080030801355976267 Eth | 0.000014723217990406 | |
0xaBEA9132...00777fBEF | (zkSync) | 22,283.995341011005439553 Eth | 22,283.996341011005439553 Eth | 0.001 | |
0xdBFEfAe8...90edfa677 |
0.015087009394278682 Eth
Nonce: 1
|
0.007899692920990124 Eth
Nonce: 2
| 0.007187316473288558 |
Execution Trace
ETH 0.001
Proxy.2d2da806( )
- ETH 0.001
ZkSync.depositETH( _zkSyncAddress=0xdBFEfAe8B7E067a1E9EBf449fe6356190edfa677 )
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