import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Deletes an account and transfers remaining XRP to a different account. * Taken from https://xrpl.org/accountdelete.html. * * @extends BaseTransactionInstructions * * @property Destination - The address of an account to receive any leftover XRP after deleting the sending account. * @property DestinationTag - Arbitrary destination tag that identifies a hosted recipient or other * information for the recipient of the deleted account's leftover XRP. */ export default interface AccountDeleteInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.AccountDelete; readonly Destination: string; readonly DestinationTag?: number; } //# sourceMappingURL=AccountDeleteInstructions.d.ts.map