LayerZero Adapter
Lucid has developed an adapter that integrates with the LayerZero messaging bridge to send and receive cross-chain messages.
Fees
LayerZero supports on-chain fee quoting, which the adapter contract uses to estimate the total fees required for a message.
When sending or exporting a transaction from the Lucid App, Lucid automatically calculates the total cost of the transaction, including any protocol fees.
LayerZero refunds any excess gas fees that were sent. All fees are paid in the native currency (e.g., ETH, POL), not in ZRO tokens.
Interfaces
Each adapter implements the following public functions:
relayMessage
Sends a message through the LayerZero bridge, paying the bridge fee and deducting the protocol fee.
The Ether sent by the calling contract must cover both the LayerZero fee and the Lucid protocol fee.
Any excess Ether is refunded to the
refundAddress
.The function returns a bytes32 of the
guid
as generated from LayerZero
Input Params:
uint256
destChainId
The destination chain ID.
address
destination
The destination address.
bytes
options
Additional params to be used by the adapter, abi encoded Options struct of refundAddress
and gasLimit
(address, uint256)
bytes
message
The message to be relayed.
quoteMessage
Calculates the total fee required for sending a message using LayerZero’s on-chain quoting mechanism. Returns the estimated fee amount in Ether.
Input Params:
address
destination
The destination address
uint256
chainId
The destination chain ID
uint256
gasLimit
The gas limit required for the execution in the destination chain
bytes
message
The message data that is sent across
bool
includeFee
Whether to include the protocol fee in the calculation
Last updated