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.

norippleCheck.d.ts 673B

1234567891011121314151617181920
  1. import { LedgerIndex, ResponseOnlyTxInfo } from '../common';
  2. import { Transaction } from '../transactions';
  3. import { BaseRequest, BaseResponse } from './baseMethod';
  4. export interface NoRippleCheckRequest extends BaseRequest {
  5. command: 'noripple_check';
  6. account: string;
  7. role: 'gateway' | 'user';
  8. transactions?: boolean;
  9. limit?: number;
  10. ledger_hash?: string;
  11. ledger_index?: LedgerIndex;
  12. }
  13. export interface NoRippleCheckResponse extends BaseResponse {
  14. result: {
  15. ledger_current_index: number;
  16. problems: string[];
  17. transactions: Array<Transaction & ResponseOnlyTxInfo>;
  18. };
  19. }
  20. //# sourceMappingURL=norippleCheck.d.ts.map