• Hook for getting an instance of an Edition contract. This contract is used to interface with ERC1155 compliant NFTs.

    Parameters

    • contractAddress: RequiredParam<string>

      the address of the Edition contract, found in your thirdweb dashboard

    Returns Edition | undefined

    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
    }

    ...
    }

    Deprecated

    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