CloseAccountInput
type CloseAccountInput<TAccountAccount, TAccountDestination, TAccountOwner> = {
account: Address<TAccountAccount>;
destination: Address<TAccountDestination>;
multiSigners?: TransactionSigner[];
owner: Address<TAccountOwner> | TransactionSigner<TAccountOwner>;
};Type Parameters
| Type Parameter | Default type |
|---|---|
TAccountAccount extends string | string |
TAccountDestination extends string | string |
TAccountOwner extends string | string |
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.