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.

submit.d.ts 831B

12345678910111213141516171819202122232425262728
  1. import { Transaction } from '../transactions';
  2. import { BaseRequest, BaseResponse } from './baseMethod';
  3. export interface SubmitRequest extends BaseRequest {
  4. command: 'submit';
  5. tx_blob: string;
  6. fail_hard?: boolean;
  7. }
  8. export interface SubmitResponse extends BaseResponse {
  9. result: {
  10. engine_result: string;
  11. engine_result_code: number;
  12. engine_result_message: string;
  13. tx_blob: string;
  14. tx_json: Transaction & {
  15. hash?: string;
  16. };
  17. accepted: boolean;
  18. account_sequence_available: number;
  19. account_sequence_next: number;
  20. applied: boolean;
  21. broadcast: boolean;
  22. kept: boolean;
  23. queued: boolean;
  24. open_ledger_cost: string;
  25. validated_ledger_index: number;
  26. };
  27. }
  28. //# sourceMappingURL=submit.d.ts.map