Skip to main content
Version: v30.0.x

Type Alias: PayingAccount

PayingAccount = { account: Account; allowance: BigNumber; type: Subsidy; } | { account: Account; type: Caller | Other | MultiSigCreator; }

Defined in: src/base/types.ts:144

Data representing the Account responsible for paying fees for a transaction

Union Members

Type Literal

{ account: Account; allowance: BigNumber; type: Subsidy; }

NameTypeDescriptionDefined in

account

Account

Account that pays for the transaction

src/base/types.ts:150

allowance

BigNumber

total amount that can be paid for

src/base/types.ts:154

type

Subsidy

src/base/types.ts:146


Type Literal

{ account: Account; type: Caller | Other | MultiSigCreator; }