Skip to main content
Version: v30.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:516

Union Members

Type Literal

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

NameTypeDescriptionDefined in

claimType

Accredited

src/api/procedures/types.ts:519

issuer

Identity

src/api/procedures/types.ts:518

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

value.accredited

BigNumber

src/api/procedures/types.ts:526

value.nonAccredited

BigNumber

src/api/procedures/types.ts:526


Type Literal

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

NameTypeDescriptionDefined in

claimType

Affiliate

src/api/procedures/types.ts:530

issuer

Identity

src/api/procedures/types.ts:529

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

value.affiliate

BigNumber

src/api/procedures/types.ts:537

value.nonAffiliate

BigNumber

src/api/procedures/types.ts:537


Type Literal

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

NameTypeDescriptionDefined in

claimType

Jurisdiction

src/api/procedures/types.ts:541

issuer

Identity

src/api/procedures/types.ts:540

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