typescript-sdk

Home > @3rdweb/sdk > BundleDropModule > getAll

BundleDropModule.getAll() method

Get NFT Data

Signature:

getAll(): Promise<BundleDropMetadata[]>;

Returns:

Promise<BundleDropMetadata[]>

The NFT metadata for all NFTs in the module.

Remarks

Get data associated with NFTs in this module.

Example

// Get data associated with every NFT in the module
const nfts = await module.getAll();
console.log(nfts);