getBuyWithCryptoHistory

Gets the History of purchases for a given wallet address

Example

import { createThirdwebClient } from "thirdweb";
import { BuyWithCryptoHistoryData } from "thirdweb/pay";
const client = createThirdwebClient({ clientId: "..." });
const walletAddress = "0x...";
const params = {
client,
walletAddress,
};
// grabs the history of purchase transactions for the wallet address
const status = await getBuyWithCryptoHistory(params);
function getBuyWithCryptoHistory(

Parameters

Object of type BuyWithCryptoHistoryParams

Type

let params: {
client: ThirdwebClient;
count: number;
start: number;
walletAddress: string;
};

Returns

let returnType: {
hasNextPage: boolean;
page: Array<BuyWithCryptoStatus>;
};

Object of type BuyWithCryptoHistoryData