@ledgerhq/live-env 2.0.0-next.0 → 2.0.1-next.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ledgerhq/live-env@1.0.1 build /home/runner/work/ledger-live/ledger-live/libs/env
2
+ > @ledgerhq/live-env@2.0.0 build /home/runner/work/ledger-live/ledger-live/libs/env
3
3
  > tsc && tsc -m ES6 --outDir lib-es
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @ledgerhq/live-env
2
2
 
3
+ ## 2.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - [#6614](https://github.com/LedgerHQ/ledger-live/pull/6614) [`762dea1`](https://github.com/LedgerHQ/ledger-live/commit/762dea1c52ef0537961d058f7ba81fa399663ac1) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Change `COSMOS_GAS_AMPLIFIER` from 1.5 to 1.3 to match what Keplr is doing
8
+
9
+ ## 2.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - [#5682](https://github.com/LedgerHQ/ledger-live/pull/5682) [`4744c31`](https://github.com/LedgerHQ/ledger-live/commit/4744c3136021f1f47ad1617f2c84f47ac0647370) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Removing unused env var related to `Ethereum` transactions crafted with the old `ethereum` family
14
+
15
+ ### Patch Changes
16
+
17
+ - [#6262](https://github.com/LedgerHQ/ledger-live/pull/6262) [`0dd1546`](https://github.com/LedgerHQ/ledger-live/commit/0dd15467070cbf7fcbb9d9055a4535f6a25b2ad0) Thanks [@JesseKuntz](https://github.com/JesseKuntz)! - Updating the near-api-js library and fetching the NEAR staking positions from the node rather than the kitwallet API.
18
+
3
19
  ## 2.0.0-next.0
4
20
 
5
21
  ### Major Changes
package/lib/env.js CHANGED
@@ -79,7 +79,7 @@ const envDefinitions = {
79
79
  desc: "Node endpoint for celo",
80
80
  },
81
81
  COSMOS_GAS_AMPLIFIER: {
82
- def: 1.5,
82
+ def: 1.3,
83
83
  parser: intParser,
84
84
  desc: "Cosmos gas estimate multiplier",
85
85
  },
package/lib-es/env.js CHANGED
@@ -76,7 +76,7 @@ const envDefinitions = {
76
76
  desc: "Node endpoint for celo",
77
77
  },
78
78
  COSMOS_GAS_AMPLIFIER: {
79
- def: 1.5,
79
+ def: 1.3,
80
80
  parser: intParser,
81
81
  desc: "Cosmos gas estimate multiplier",
82
82
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/live-env",
3
- "version": "2.0.0-next.0",
3
+ "version": "2.0.1-next.0",
4
4
  "description": "Ledger Live environment definition",
5
5
  "keywords": [
6
6
  "Ledger"
package/src/env.ts CHANGED
@@ -88,7 +88,7 @@ const envDefinitions = {
88
88
  desc: "Node endpoint for celo",
89
89
  },
90
90
  COSMOS_GAS_AMPLIFIER: {
91
- def: 1.5,
91
+ def: 1.3, // Same as Keplr
92
92
  parser: intParser,
93
93
  desc: "Cosmos gas estimate multiplier",
94
94
  },