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.

secp256k1.d.ts 545B

123456789101112131415
  1. /**
  2. * @param seed - Bytes.
  3. * @param [opts] - Object.
  4. * @param [opts.accountIndex=0] - The account number to generate.
  5. * @param [opts.validator=false] - Generate root key-pair,
  6. * as used by validators.
  7. * @returns {bn.js} 256 bit scalar value.
  8. *
  9. */
  10. export declare function derivePrivateKey(seed: any, opts?: {
  11. validator?: boolean;
  12. accountIndex?: number;
  13. }): any;
  14. export declare function accountPublicFromPublicGenerator(publicGenBytes: any): any;
  15. //# sourceMappingURL=secp256k1.d.ts.map