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

123456789101112131415
  1. import type { Client, SubmitResponse, Wallet } from '..';
  2. import { TxResponse } from '../models/methods';
  3. import { Transaction } from '../models/transactions';
  4. declare function submit(this: Client, transaction: Transaction | string, opts?: {
  5. autofill?: boolean;
  6. failHard?: boolean;
  7. wallet?: Wallet;
  8. }): Promise<SubmitResponse>;
  9. declare function submitAndWait(this: Client, transaction: Transaction | string, opts?: {
  10. autofill?: boolean;
  11. failHard?: boolean;
  12. wallet?: Wallet;
  13. }): Promise<TxResponse>;
  14. export { submit, submitAndWait };
  15. //# sourceMappingURL=submit.d.ts.map