• Fetches available NFTs for a given walletAddress.

    Parameters

    • honeycomb: Honeycomb

      The Honeycomb instance used for fetching available NFTs.

    • Optional args: FetchAvailableNfts

      Optional arguments for fetching available NFTs.

    Returns Promise<AvailableNft[]>

    A promise that resolves to an array of AvailableNft instances representing the available NFTs.

    Example

    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