You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

accountDelete.d.ts 320B

12345678
  1. import { BaseTransaction } from './common';
  2. export interface AccountDelete extends BaseTransaction {
  3. TransactionType: 'AccountDelete';
  4. Destination: string;
  5. DestinationTag?: number;
  6. }
  7. export declare function validateAccountDelete(tx: Record<string, unknown>): void;
  8. //# sourceMappingURL=accountDelete.d.ts.map