Interface iGetClaimsPayloadV1

interface iGetClaimsPayloadV1 {
    claimsToFetch: {
        claimId: string;
        fetchAllClaimedUsers?: boolean;
        fetchPrivateParams?: boolean;
        privateStatesToFetch?: string[];
    }[];
}

Properties

Properties

claimsToFetch: {
    claimId: string;
    fetchAllClaimedUsers?: boolean;
    fetchPrivateParams?: boolean;
    privateStatesToFetch?: string[];
}[]

The claims to fetch.

Type declaration

  • claimId: string

    The claim ID to fetch.

  • OptionalfetchAllClaimedUsers?: boolean

    Fetch all claimed users for the claim. If true, you will be able to find all { [bitbadgesAddress]: [...zeroIndexedClaimNumbers] } on the numUses plugin's publicState.

  • OptionalfetchPrivateParams?: boolean

    Fetch private parameters for the claim. Only applicable if you are the creator / manager of the claim.

  • OptionalprivateStatesToFetch?: string[]

    The private state instance IDs to fetch. By default, we do not fetch any private states.

MMNEPVFCICPMFPCPTTAAATR