@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 CHANGED
@@ -252,6 +252,7 @@ class HdKeyring extends eth_simple_keyring_1.default {
252
252
  index: Number(key),
253
253
  hdPathType: HD_PATH_TYPE[this.hdPath],
254
254
  hdPath: this.hdPath,
255
+ basePublicKey: this.publicKey,
255
256
  };
256
257
  }
257
258
  }
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rabby-wallet/eth-hd-keyring",
3
- "version": "4.1.0-beta.1",
3
+ "version": "4.2.0-beta.0",
4
4
  "description": "A simple standard interface for a seed phrase generated set of Ethereum accounts.",
5
5
  "keywords": [
6
6
  "ethereum",