Simple React hooks to load Tuli NFT data. Includes on-chain data, NFT metadata, and tools for fetching NFT content if needed.
Put together, these power implementations of the xNFT protocol on any website.
This library consists of a data fetch class and associated React hooks to load NFT data is an easy, efficient manner. The API both batches and caches requests, meaning you can use the hooks across a page without needing to worry about significant performance penalties.
👯 See also: @tulilabs/nft-components a complimentary library to this one to render NFT data on a webpage.
Install:
yarn add @tulilabs/nft-hooks
Then you can import and use the hooks in your react application:
import {useXNFT, useNFTMetadata} from "@tulilabs/nft-hooks";
function MyNFT() {
const {data} = useXNFT("20");
const {metadata} = useNFTMetadata(data && data.metadataURI);
return (
<div>
<h3>{metadata.title}</h3>
<p>{metadata.description}</p>
<p>Owned by: {data.owner.id}</p>
</div>
);
}
Hook | Usage |
---|---|
useNFT | Fetches on-chain NFT data for either tuli or non-tuli NFTs |
useXNFT | Fetches on-chain tuli xNFT data (most likely want to use useNFT) |
useAuctions | Fetches list of auctions given one or more curators from the Tuli auction house |
useNFTMetadata | Fetches NFT metadata from a URL |
useNFTContent | Fetches text content from server for rendering from content URL |
To set the network configuration, wrap the hooks used with the NFTFetchConfiguration
component.
import {Networks, NFTFetchConfiguration} from '@tulilabs/nft-hooks';
function NFTGallery() {
return (
<NFTFetchConfiguration network={Networks.MAINNET}>
<NFTList>
</NFTFetchConfiguration>
);
}
Currently data is fetched from:
- TheGraph for auction information, xNFT information, and currency information
- Direct metadata URIs for xNFT metadata
- Opensea for non-tuli tracked NFTs
Links direct to tuli.ink interfaces, but can be overridden to directly use the TDK instead.
git clone https://github.com/kittylabsbsc/nft-hooks
cd nft-hooks
-
npm i -g yarn
if you don't have yarn installed yarn
-
yarn run test
test your code
Pull requests and tickets are accepted for issues and improvements for this library.