gill
gill/programs/token/Type aliases

CloseAccountInput

type CloseAccountInput<TAccountAccount, TAccountDestination, TAccountOwner> = {
  account: Address<TAccountAccount>;
  destination: Address<TAccountDestination>;
  multiSigners?: TransactionSigner[];
  owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
};

Type Parameters

Type ParameterDefault type
TAccountAccount extends stringstring
TAccountDestination extends stringstring
TAccountOwner extends stringstring

Properties

account

account: Address<TAccountAccount>;

The account to close.


destination

destination: Address<TAccountDestination>;

The destination account.


multiSigners?

optional multiSigners: TransactionSigner[];

owner

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

The account's owner or its multisignature account.

On this page