useEdition
Hook for getting an instance of an Edition
contract. This contract is used to interface with ERC1155 compliant NFTs.
Example
import { useContract } from '@thirdweb-dev/react'
export default function Component() {
const { contract } = useContract("<YOUR-CONTRACT-ADDRESS>", "edition")
// Now you can use the edition contract in the rest of the component
// For example, this function will return all the NFTs on this contract
async function getNFTs() {
const nfts = await contract.getAll()
return nfts
}
...
}