Skip to main content
Version: 31.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:570

Union Members

Type Literal

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

NameTypeDescriptionDefined in

claimType

Accredited

src/api/entities/types.ts:573

issuer

Identity

src/api/entities/types.ts:572

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:580

value.accredited

BigNumber

src/api/entities/types.ts:580

value.nonAccredited

BigNumber

src/api/entities/types.ts:580


Type Literal

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

NameTypeDescriptionDefined in

claimType

Affiliate

src/api/entities/types.ts:584

issuer

Identity

src/api/entities/types.ts:583

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:591

value.affiliate

BigNumber

src/api/entities/types.ts:591

value.nonAffiliate

BigNumber

src/api/entities/types.ts:591


Type Literal

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

NameTypeDescriptionDefined in

claimType

Jurisdiction

src/api/entities/types.ts:595

issuer

Identity

src/api/entities/types.ts:594

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:602