Skip to main content

useTokenDrop() function

Hook for getting an instance of a Token Drop contract.

Example

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

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

// Now you can use the token drop contract in the rest of the component

// For example, this function will get the connected wallets token balance
async function balance() {
const balance = await tokenDrop.balance()
return balance
}

...
}

Signature:

export declare function useTokenDrop(
contractAddress?: string,
): TokenDrop | undefined;

Parameters

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

Returns:

TokenDrop | undefined