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.

transactionEntry.d.ts 648B

123456789101112131415161718
  1. import { LedgerIndex, ResponseOnlyTxInfo } from '../common';
  2. import { Transaction, TransactionMetadata } from '../transactions';
  3. import { BaseRequest, BaseResponse } from './baseMethod';
  4. export interface TransactionEntryRequest extends BaseRequest {
  5. command: 'transaction_entry';
  6. ledger_hash?: string;
  7. ledger_index?: LedgerIndex;
  8. tx_hash: string;
  9. }
  10. export interface TransactionEntryResponse extends BaseResponse {
  11. result: {
  12. ledger_hash: string;
  13. ledger_index: number;
  14. metadata: TransactionMetadata;
  15. tx_json: Transaction & ResponseOnlyTxInfo;
  16. };
  17. }
  18. //# sourceMappingURL=transactionEntry.d.ts.map