NFTs

useTrackNftsQuery(trackId: string, queryOptions?: UseQueryOptions): {nfts: INft[], ...UseQueryResult}

Used for querying all NFTs minted for provided track.

useTrackNftsOwnersQuery(trackId: string, queryOptions?: UseQueryOptions): {owners: string[], ...UseQueryResult}

Used for querying addresses of all owners of all NFTs minted for provided track.

useArtistNftsQuery(artistId: string, queryOptions?: UseQueryOptions): {nfts: ITrackNft[], ...UseQueryResult}

Used for querying all NFTs minted for all tracks created by provided artist.

useArtistNftsOwnersQuery(artistId: string, queryOptions?: UseQueryOptions): {owners: string[], ...UseQueryResult}

Used for querying addresses of all owners of all NFTs minted for tracks created by provided artist.

Last updated