gill
gill/programs/token/Type aliases

RevokeInput

type RevokeInput<TAccountSource, TAccountOwner> = {
  multiSigners?: TransactionSigner[];
  owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
  source: Address<TAccountSource>;
};

Type Parameters

Type ParameterDefault type
TAccountSource extends stringstring
TAccountOwner extends stringstring

Properties

multiSigners?

optional multiSigners: TransactionSigner[];

owner

owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;

The source account owner or its multisignature.


source

source: Address<TAccountSource>;

The source account.

On this page