The parameters for getPostOnRampQuote function
getPostOnRampQuote
type GetPostOnRampQuoteParams = { buyWithFiatStatus: BuyWithFiatStatus; client: ThirdwebClient;};
The "Buy with fiat" transaction status object returned by getBuyWithFiatStatus function
getBuyWithFiatStatus
type buyWithFiatStatus = BuyWithFiatStatus;
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;