Parameters for the getBuyWithFiatStatus function
getBuyWithFiatStatus
type GetBuyWithFiatStatusParams = { client: ThirdwebClient; intentId: string;};
A client is the entry point to the thirdweb SDK. It is required for all other actions.
You can create a client using the createThirdwebClient function. Refer to the Creating a Client documentation for more information.
createThirdwebClient
type client = ThirdwebClient;
Intent ID of the "Buy with fiat" transaction. You can get the intent ID from the quote object returned by the getBuyWithFiatQuote function
getBuyWithFiatQuote
type intentId = string;