• Fetches staked NFTs for a given walletAddress from the staking pool.

    Parameters

    • honeycomb: Honeycomb

      The Honeycomb instance used for fetching staked NFTs.

    • Optional args: FetchStakedNftsArgs

      Optional arguments for fetching staked NFTs.

    Returns Promise<StakedNft[]>

    A promise that resolves to an array of StakedNft instances representing the staked NFTs.

    Example

    const honeycomb = new Honeycomb(...);
    const stakedNFTs = await fetchStakedNfts(honeycomb, {
    walletAddress: 'YOUR_WALLET_ADDRESS',
    programId: 'YOUR_PROGRAM_ID',
    });

Generated using TypeDoc