The Honeycomb instance used for fetching available NFTs.
Optional
args: FetchAvailableNftsOptional arguments for fetching available NFTs.
A promise that resolves to an array of AvailableNft instances representing the available NFTs.
const honeycomb = new Honeycomb(...);
const availableNFTs = await fetchAvailableNfts(honeycomb, {
walletAddress: 'YOUR_WALLET_ADDRESS',
allowedMints: ['MINT_ADDRESS_1', 'MINT_ADDRESS_2'],
programId: 'YOUR_PROGRAM_ID',
});
Generated using TypeDoc
Fetches available NFTs for a given
walletAddress
.