the address of the Edition contract, found in your thirdweb dashboard
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
}
...
}
This hook is deprecated and will be removed in a future major version. You should use useContract instead.
- const edition = useEdition("0x1234...");
+ const edition = useContract("0x1234...", "edition").contract;
Generated using TypeDoc
Hook for getting an instance of an
Edition
contract. This contract is used to interface with ERC1155 compliant NFTs.