@rabby-wallet/eth-hd-keyring 4.1.0-beta.1 → 4.2.0-beta.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.
- package/dist/index.js +1 -0
- package/index.ts +2 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/index.ts
CHANGED
|
@@ -49,6 +49,7 @@ interface AccountDetail {
|
|
|
49
49
|
hdPath: string;
|
|
50
50
|
hdPathType: HDPathType;
|
|
51
51
|
index: number;
|
|
52
|
+
basePublicKey?: string;
|
|
52
53
|
}
|
|
53
54
|
|
|
54
55
|
class HdKeyring extends SimpleKeyring {
|
|
@@ -287,6 +288,7 @@ class HdKeyring extends SimpleKeyring {
|
|
|
287
288
|
index: Number(key),
|
|
288
289
|
hdPathType: HD_PATH_TYPE[this.hdPath],
|
|
289
290
|
hdPath: this.hdPath,
|
|
291
|
+
basePublicKey: this.publicKey,
|
|
290
292
|
};
|
|
291
293
|
}
|
|
292
294
|
}
|