Transaction Hash:
Block:
20795998 at Sep-21-2024 02:33:11 AM +UTC
Transaction Fee:
0.0003470351806278 ETH
$1.04
Gas Used:
29,610 Gas / 11.72020198 Gwei
Emitted Events:
413 |
LayerZeroToken.Transfer( from=[Sender] 0x3d36d90bab5fb55188fa37ce684232aec0d5d900, to=0x1AB4973a48dc892Cd9971ECE8e01DcC7688f8F23, value=493775708000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3D36d90B...ec0d5d900 |
0.00179997844683412 Eth
Nonce: 5
|
0.00145294326620632 Eth
Nonce: 6
| 0.0003470351806278 | ||
0x6985884C...7F13271cd | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.63830662950091351 Eth | 6.63833623950091351 Eth | 0.00002961 |
Execution Trace
LayerZeroToken.transfer( to=0x1AB4973a48dc892Cd9971ECE8e01DcC7688f8F23, value=493775708000000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.20;// @dev Import the 'MessagingFee' and 'MessagingReceipt' so it's exposed to OApp implementers// solhint-disable-next-line no-unused-importimport { OAppSender, MessagingFee, MessagingReceipt } from "./OAppSender.sol";// @dev Import the 'Origin' so it's exposed to OApp implementers// solhint-disable-next-line no-unused-importimport { OAppReceiver, Origin } from "./OAppReceiver.sol";import { OAppCore } from "./OAppCore.sol";/*** @title OApp* @dev Abstract contract serving as the base for OApp implementation, combining OAppSender and OAppReceiver functionality.*/abstract contract OApp is OAppSender, OAppReceiver {/*** @dev Constructor to initialize the OApp with the provided endpoint and owner.* @param _endpoint The address of the LOCAL LayerZero endpoint.* @param _delegate The delegate capable of making OApp configurations inside of the endpoint.*/constructor(address _endpoint, address _delegate) OAppCore(_endpoint, _delegate) {}/*** @notice Retrieves the OApp version information.* @return senderVersion The version of the OAppSender.sol implementation.* @return receiverVersion The version of the OAppReceiver.sol implementation.*/function oAppVersion()