@inco/js 0.1.22 → 0.1.24

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ export interface Secp256k1Keypair extends PubKeyEncodable {
7
7
  }
8
8
  export type Secp256k1PubKey = curve.base.BasePoint;
9
9
  export declare function toSecp256k1Keypair(kp: ec.KeyPair): Secp256k1Keypair;
10
- export declare function generateSecp256k1Keypair(): Promise<Secp256k1Keypair>;
10
+ export declare function generateSecp256k1Keypair(): Secp256k1Keypair;
11
11
  export declare function encodeSecp256k1PublicKey(pub: Secp256k1PubKey): Uint8Array;
12
12
  export declare function decodeSecp256k1PublicKey(pubKeyCompressed: Uint8Array): Secp256k1PubKey;
13
13
  export declare function decodeSecp256k1PrivateKey(privKey: Uint8Array): Secp256k1Keypair;