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 310B

12345678
  1. import { RippleAPI } from '..';
  2. export interface FormattedSubmitResponse {
  3. resultCode: string;
  4. resultMessage: string;
  5. }
  6. declare function submit(this: RippleAPI, signedTransaction: string, failHard?: boolean): Promise<FormattedSubmitResponse>;
  7. export default submit;
  8. //# sourceMappingURL=submit.d.ts.map