@alephium/web3 0.10.4 → 0.11.0
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,7 +109,7 @@ export interface SubmissionResult {
|
|
|
109
109
|
toGroup: number;
|
|
110
110
|
}
|
|
111
111
|
export interface EnableOptionsBase {
|
|
112
|
-
|
|
112
|
+
addressGroup?: number;
|
|
113
113
|
keyType?: KeyType;
|
|
114
114
|
networkId?: NetworkId;
|
|
115
115
|
onDisconnected: () => Promise<void> | void;
|
package/package.json
CHANGED
package/src/signer/types.ts
CHANGED
|
@@ -164,8 +164,8 @@ export interface SubmissionResult {
|
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
export interface EnableOptionsBase {
|
|
167
|
-
//
|
|
168
|
-
|
|
167
|
+
// addressGroup - specify whether to use addresses from a specific group. Default: any group
|
|
168
|
+
addressGroup?: number
|
|
169
169
|
// keyType - specify which type of signing algorithm to use. Default: Secp256K1
|
|
170
170
|
keyType?: KeyType
|
|
171
171
|
// networkId - specify which network to connect. Default: the current network
|