@keplr-wallet/types 0.10.13-rc.1 → 0.10.13-rc.2

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.
@@ -28,6 +28,10 @@ export interface ChainInfo {
28
28
  /**
29
29
  * This is the coin type in slip-044.
30
30
  * This is used for fetching address from ENS if this field is set.
31
+ *
32
+ * ** Use the `bip44.coinType` field to set the coin type to generate the address. **
33
+ *
34
+ * @deprecated This field is likely to be changed. ENS will continue to be supported, but will change in the future to use other methods than this field. Because of the low usage of the ENS feature, the change is a low priority and it is not yet clear how it will change.
31
35
  */
32
36
  readonly coinType?: number;
33
37
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/types",
3
- "version": "0.10.13-rc.1",
3
+ "version": "0.10.13-rc.2",
4
4
  "main": "build/index.js",
5
5
  "author": "chainapsis",
6
6
  "license": "Apache-2.0",
@@ -23,5 +23,5 @@
23
23
  "long": "^4.0.0",
24
24
  "secretjs": "^0.17.0"
25
25
  },
26
- "gitHead": "ea360f0d5286301a3f66398e7bf674b461cea9bf"
26
+ "gitHead": "a985f231335c4442a29a54976b57e53c5450ca6a"
27
27
  }
package/src/chain-info.ts CHANGED
@@ -30,6 +30,10 @@ export interface ChainInfo {
30
30
  /**
31
31
  * This is the coin type in slip-044.
32
32
  * This is used for fetching address from ENS if this field is set.
33
+ *
34
+ * ** Use the `bip44.coinType` field to set the coin type to generate the address. **
35
+ *
36
+ * @deprecated This field is likely to be changed. ENS will continue to be supported, but will change in the future to use other methods than this field. Because of the low usage of the ENS feature, the change is a low priority and it is not yet clear how it will change.
33
37
  */
34
38
  readonly coinType?: number;
35
39