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.

tx.d.ts 591B

1234567891011121314151617181920
  1. import { Transaction, TransactionMetadata } from '../transactions';
  2. import { BaseRequest, BaseResponse } from './baseMethod';
  3. export interface TxRequest extends BaseRequest {
  4. command: 'tx';
  5. transaction: string;
  6. binary?: boolean;
  7. min_ledger?: number;
  8. max_ledger?: number;
  9. }
  10. export interface TxResponse extends BaseResponse {
  11. result: {
  12. hash: string;
  13. ledger_index?: number;
  14. meta?: TransactionMetadata | string;
  15. validated?: boolean;
  16. date?: number;
  17. } & Transaction;
  18. searched_all?: boolean;
  19. }
  20. //# sourceMappingURL=tx.d.ts.map