@alephium/web3 0.5.0-rc.14 → 0.5.0-rc.15

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.
@@ -109,6 +109,7 @@ export interface SubmissionResult {
109
109
  }
110
110
  export interface EnableOptionsBase {
111
111
  chainGroup?: number;
112
+ keyType?: KeyType;
112
113
  networkId: string;
113
- onDisconnected: () => Promise<void>;
114
+ onDisconnected: () => Promise<void> | void;
114
115
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alephium/web3",
3
- "version": "0.5.0-rc.14",
3
+ "version": "0.5.0-rc.15",
4
4
  "description": "A JS/TS library to interact with the Alephium platform",
5
5
  "license": "GPL",
6
6
  "main": "dist/src/index.js",
@@ -166,6 +166,9 @@ export interface SubmissionResult {
166
166
  export interface EnableOptionsBase {
167
167
  // chainGroup - specify whether to use addresses from a specific group
168
168
  chainGroup?: number
169
+ // keyType - specify which type of signing algorithm to use
170
+ keyType?: KeyType
171
+
169
172
  networkId: string
170
- onDisconnected: () => Promise<void>
173
+ onDisconnected: () => Promise<void> | void
171
174
  }