Multiwrap.getAll() method
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Get All Wrapped Token Bundles
Example
const wrappedBundles = await contract.getAll();
console.log(wrappedBundles);
Signature:
getAll(queryParams?: QueryAllParams): Promise<NFTMetadataOwner[]>;
Parameters
Parameter | Type | Description |
---|---|---|
queryParams | QueryAllParams | (Optional) optional filtering to only fetch a subset of results. |
Returns:
Promise<NFTMetadataOwner[]>
The NFT metadata for all NFTs queried.
Remarks
Get all the data associated with every token bundle in this contract.
By default, returns the first 100 NFTs, use queryParams to fetch more.