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.

submitMultisigned.d.ts 595B

12345678910111213141516171819
  1. import { Transaction } from '../transactions';
  2. import { BaseRequest, BaseResponse } from './baseMethod';
  3. export interface SubmitMultisignedRequest extends BaseRequest {
  4. command: 'submit_multisigned';
  5. tx_json: Transaction;
  6. fail_hard?: boolean;
  7. }
  8. export interface SubmitMultisignedResponse 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. };
  18. }
  19. //# sourceMappingURL=submitMultisigned.d.ts.map