Skip to main content
Version: 31.0.x

Type Alias: ClaimBalanceStatInput

ClaimBalanceStatInput = { 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/procedures/types.ts:514

Union Members

Type Literal

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

NameTypeDescriptionDefined in

claimType

Accredited

src/api/procedures/types.ts:517

issuer

Identity

src/api/procedures/types.ts:516

value?

object

The total balance values for token holder 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/procedures/types.ts:524

value.accredited

BigNumber

src/api/procedures/types.ts:524

value.nonAccredited

BigNumber

src/api/procedures/types.ts:524


Type Literal

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

NameTypeDescriptionDefined in

claimType

Affiliate

src/api/procedures/types.ts:528

issuer

Identity

src/api/procedures/types.ts:527

value?

object

The total balance values for token holder 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/procedures/types.ts:535

value.affiliate

BigNumber

src/api/procedures/types.ts:535

value.nonAffiliate

BigNumber

src/api/procedures/types.ts:535


Type Literal

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

NameTypeDescriptionDefined in

claimType

Jurisdiction

src/api/procedures/types.ts:539

issuer

Identity

src/api/procedures/types.ts:538

value?

object[]

The total balance values for token holder 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/procedures/types.ts:546