The parameters for getBuyWithFiatHistory function
getBuyWithFiatHistory
type BuyWithFiatHistoryParams = { client: ThirdwebClient; count: number; start: number; walletAddress: 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;
The number of results to return in a single page. The default value is 10 .
10
type count = number;
index of the first result to return. The default value is 0 .
0
If you want to start the list from nth item, you can set the start value to (n-1).
type start = number;
The address of the wallet to get the wallet history for
type walletAddress = string;