@keplr-wallet/types 0.10.25-rc.1 → 0.11.0-rc.1

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.
@@ -57,7 +57,6 @@ export declare type WithGasPriceStep<T> = T & {
57
57
  /**
58
58
  * This is used to set the fee of the transaction.
59
59
  * If this field is empty, it just use the default gas price step (low: 0.01, average: 0.025, high: 0.04).
60
- * And, set field's type as primitive number because it is hard to restore the prototype after deserialzing if field's type is `Dec`.
61
60
  */
62
61
  readonly gasPriceStep?: {
63
62
  readonly low: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keplr-wallet/types",
3
- "version": "0.10.25-rc.1",
3
+ "version": "0.11.0-rc.1",
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": "2c1bcda6f8384837ecae5bb5dde9ec6cbb000c71"
26
+ "gitHead": "aca002449dca190b12bbf031f27f80e0b0a136bb"
27
27
  }
package/src/currency.ts CHANGED
@@ -71,7 +71,6 @@ export type WithGasPriceStep<T> = T & {
71
71
  /**
72
72
  * This is used to set the fee of the transaction.
73
73
  * If this field is empty, it just use the default gas price step (low: 0.01, average: 0.025, high: 0.04).
74
- * And, set field's type as primitive number because it is hard to restore the prototype after deserialzing if field's type is `Dec`.
75
74
  */
76
75
  readonly gasPriceStep?: {
77
76
  readonly low: number;