The result for getBuyHistory function
getBuyHistory
It includes both "Buy with Crypto" and "Buy with Fiat" transactions
type BuyHistoryData = { hasNextPage: boolean; page: Array< | { buyWithFiatStatus: BuyWithFiatStatus } | { buyWithCryptoStatus: BuyWithCryptoStatus } >;};
Whether there are more pages of results.
type hasNextPage = boolean;
The list of buy transactions.
type page = Array< | { buyWithFiatStatus: BuyWithFiatStatus } | { buyWithCryptoStatus: BuyWithCryptoStatus }>;