useClaimerProofs

Get claimer proofs

function useClaimerProofs(
  contract: RequiredParam<DropContract>,
  claimerAddress: string,
  tokenId?: BigNumberish,
  claimConditionId?: BigNumberish,
): UseQueryResult<null | {}, unknown>;

Parameters


Returns

a response object with the snapshot for the provided address

type ReturnType = UseQueryResult<null | {}, unknown>;

Example

const {
  data: claimerProofs,
  isLoading,
  error,
} = useClaimerProofs(contract);