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.

12345678
  1. import { SignOptions, KeyPair } from './types';
  2. import { RippleAPI } from '..';
  3. declare function sign(this: RippleAPI, txJSON: string, secret?: any, options?: SignOptions, keypair?: KeyPair): {
  4. signedTransaction: string;
  5. id: string;
  6. };
  7. export default sign;
  8. //# sourceMappingURL=sign.d.ts.map