fetchProofsERC1155

Retrieves the claim merkle proof for the provided address.

Example

import { fetchProofsERCC1155 } from "thirdweb/extensions/airdrop";
import { getContract, defineChain } from "thirdweb";
const TOKEN = getContracct({
client,
chain: defineChain(1),
address: "0x...",
});
const merkleRoot = await tokenMerkleRoot({
contract: TOKEN,
tokenAddress: TOKEN.address,
});
const proof = await fetchProofsERC1155({
contract: TOKEN,
recipient: "0x...",
merkleRoot,
});
function fetchProofsERC1155(options: {
contract: Readonly<ContractOptions<[]>>;
merkleRoot: string;
recipient: string;
}): Promise<ClaimProofERC1155 | null>;

Parameters

Type

let options: {
contract: Readonly<ContractOptions<[]>>;
merkleRoot: string;
recipient: string;
};

Returns

let returnType: Promise<ClaimProofERC1155 | null>;

A promise that resolves to the proof or null if the recipient is not in the allowlist