Skip to main content

useEdition() function

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

Example

import { useEdition } from '@thirdweb-dev/react'

export default function Component() {
const edition = useEdition("<YOUR-CONTRACT-ADDRESS>")

// 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 edition.getAll()
return nfts
}

...
}

Signature:

export declare function useEdition(
contractAddress?: string,
): Edition | undefined;

Parameters

ParameterTypeDescription
contractAddressstring(Optional) the address of the Edition contract, found in your thirdweb dashboard

Returns:

Edition | undefined