useCheckWaasFeeOptions
Hook for checking transaction fee options in Sequence WaaS
Import
Usage
Return Type
The hook returns a function with the following signature:
Parameters
transactions
Transaction[]
Array of transactions to check fee options for.
chainId
number
The ID of the blockchain network where the transaction will be executed.
Return Object Properties
isSponsored
boolean
Indicates whether the transaction will be sponsored (true) or requires fee payment (false).
feeOptions
FeeOption[] | undefined
Available fee payment options if the transaction is not sponsored.
feeQuote
string | undefined
The fee quote for the transaction if available.
Notes
This hook is specifically designed for use with Sequence WaaS (Wallet as a Service) and provides functionality to:
- Check if a transaction will be sponsored
- Get available fee options for unsponsored transactions
- Retrieve fee quotes for transactions
Key features:
- Automatically detects WaaS provider availability
- Returns sponsored status for transactions
- Provides fee options and quotes when sponsorship is not available
- Works seamlessly with the WaaS transaction flow
Common use cases:
- Transaction fee estimation
- Fee payment option selection
- Sponsored transaction detection
- Integration with transaction confirmation flows
This hook is commonly used in conjunction with useWaasFeeOptions
to handle fee payments for unsponsored transactions. It’s particularly useful in wallet interfaces and transaction confirmation flows where you need to determine if a transaction will be sponsored or requires fee payment.
Was this page helpful?