NFTs

useTrackNftsQuery(trackId: string, queryOptions?: UseQueryOptionsarrow-up-right): {nfts: INftarrow-up-right[], ...UseQueryResultarrow-up-right}

Used for querying all NFTs minted for provided track.

useTrackNftsOwnersQuery(trackId: string, queryOptions?: UseQueryOptionsarrow-up-right): {owners: string[], ...UseQueryResultarrow-up-right}

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

useArtistNftsQuery(artistId: string, queryOptions?: UseQueryOptionsarrow-up-right): {nfts: ITrackNftarrow-up-right[], ...UseQueryResultarrow-up-right}

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

useArtistNftsOwnersQuery(artistId: string, queryOptions?: UseQueryOptionsarrow-up-right): {owners: string[], ...UseQueryResultarrow-up-right}

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

Last updated