Skip to main content
Version: v29.0.x

Type Alias: PayingAccount

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

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

Data representing the Account responsible for paying fees for a transaction

Type declaration

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

NameTypeDescriptionDefined in

account

Account

Account that pays for the transaction

src/base/types.ts:142

allowance

BigNumber

total amount that can be paid for

src/base/types.ts:146

type

Subsidy

src/base/types.ts:138

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

NameTypeDefined in

account

Account

src/base/types.ts:150

type

Caller | Other | MultiSigCreator

src/base/types.ts:149