Transaction Hash:
Block:
20794583 at Sep-20-2024 09:47:59 PM +UTC
Transaction Fee:
0.00094894893702279 ETH
$3.44
Gas Used:
46,710 Gas / 20.315755449 Gwei
Emitted Events:
287 |
LayerZeroToken.Transfer( from=[Sender] 0xc97252f98b7159251d410fe237674dc5bf7465a1, to=0x01277D727c10930F9DE171A4c4e5bdaa6212143a, value=999999999000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.628427103375192321 Eth | 12.628655982375192321 Eth | 0.000228879 | |
0x6985884C...7F13271cd | |||||
0xC97252f9...5bF7465A1 |
0.047641047416749078 Eth
Nonce: 14092
|
0.046692098479726288 Eth
Nonce: 14093
| 0.00094894893702279 |
Execution Trace
LayerZeroToken.transfer( to=0x01277D727c10930F9DE171A4c4e5bdaa6212143a, value=999999999000000000000 ) => ( 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()