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.

depositPreauth.d.ts 320B

12345678
  1. import { BaseTransaction } from './common';
  2. export interface DepositPreauth extends BaseTransaction {
  3. TransactionType: 'DepositPreauth';
  4. Authorize?: string;
  5. Unauthorize?: string;
  6. }
  7. export declare function validateDepositPreauth(tx: Record<string, unknown>): void;
  8. //# sourceMappingURL=depositPreauth.d.ts.map