Skip to main content
Version: v30.0.x

Type Alias: ClaimCountStatInput

ClaimCountStatInput = { claimType: Accredited; issuer: Identity; value?: { accredited: BigNumber; nonAccredited: BigNumber; }; } | { claimType: Affiliate; issuer: Identity; value?: { affiliate: BigNumber; nonAffiliate: BigNumber; }; } | { claimType: Jurisdiction; issuer: Identity; value?: object[]; }

Defined in: src/api/entities/types.ts:586

Union Members

Type Literal

{ claimType: Accredited; issuer: Identity; value?: { accredited: BigNumber; nonAccredited: BigNumber; }; }

NameTypeDescriptionDefined in

claimType

Accredited

src/api/entities/types.ts:589

issuer

Identity

src/api/entities/types.ts:588

value?

object

The count values for token holders with the accredited and non-accredited claim

Note

If not provided when enabling a stat, values will default to zero. If not provided when updating stats, the current values will remain unchanged

src/api/entities/types.ts:596

value.accredited

BigNumber

src/api/entities/types.ts:596

value.nonAccredited

BigNumber

src/api/entities/types.ts:596


Type Literal

{ claimType: Affiliate; issuer: Identity; value?: { affiliate: BigNumber; nonAffiliate: BigNumber; }; }

NameTypeDescriptionDefined in

claimType

Affiliate

src/api/entities/types.ts:600

issuer

Identity

src/api/entities/types.ts:599

value?

object

The count values for token holders with the affiliate and non-affiliate claim

Note

If not provided when enabling a stat, values will default to zero. If not provided when updating stats, the current values will remain unchanged

src/api/entities/types.ts:607

value.affiliate

BigNumber

src/api/entities/types.ts:607

value.nonAffiliate

BigNumber

src/api/entities/types.ts:607


Type Literal

{ claimType: Jurisdiction; issuer: Identity; value?: object[]; }

NameTypeDescriptionDefined in

claimType

Jurisdiction

src/api/entities/types.ts:611

issuer

Identity

src/api/entities/types.ts:610

value?

object[]

The count values for token holders per jurisdiction claim

Note

If not provided when enabling a stat, values will default to zero. If not provided when updating stats, the current values will remain unchanged

src/api/entities/types.ts:618