@ledgerhq/coin-evm 0.7.0-next.0 → 0.7.0-next.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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +12 -0
- package/lib/__tests__/unit/deviceTransactionConfig.unit.test.js +751 -296
- package/lib/__tests__/unit/deviceTransactionConfig.unit.test.js.map +1 -1
- package/lib/__tests__/unit/preload.unit.test.js +13 -0
- package/lib/__tests__/unit/preload.unit.test.js.map +1 -1
- package/lib/deviceTransactionConfig.d.ts +2 -2
- package/lib/deviceTransactionConfig.d.ts.map +1 -1
- package/lib/deviceTransactionConfig.js +299 -23
- package/lib/deviceTransactionConfig.js.map +1 -1
- package/lib/preload.d.ts.map +1 -1
- package/lib/preload.js +6 -4
- package/lib/preload.js.map +1 -1
- package/lib-es/__tests__/unit/deviceTransactionConfig.unit.test.js +751 -296
- package/lib-es/__tests__/unit/deviceTransactionConfig.unit.test.js.map +1 -1
- package/lib-es/__tests__/unit/preload.unit.test.js +13 -0
- package/lib-es/__tests__/unit/preload.unit.test.js.map +1 -1
- package/lib-es/deviceTransactionConfig.d.ts +2 -2
- package/lib-es/deviceTransactionConfig.d.ts.map +1 -1
- package/lib-es/deviceTransactionConfig.js +293 -20
- package/lib-es/deviceTransactionConfig.js.map +1 -1
- package/lib-es/preload.d.ts.map +1 -1
- package/lib-es/preload.js +6 -3
- package/lib-es/preload.js.map +1 -1
- package/package.json +1 -1
- package/src/__tests__/unit/deviceTransactionConfig.unit.test.ts +982 -317
- package/src/__tests__/unit/preload.unit.test.ts +16 -0
- package/src/deviceTransactionConfig.ts +411 -29
- package/src/preload.ts +31 -24
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @ledgerhq/coin-evm
|
|
2
2
|
|
|
3
|
+
## 0.7.0-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#4804](https://github.com/LedgerHQ/ledger-live/pull/4804) [`4cb507a52b`](https://github.com/LedgerHQ/ledger-live/commit/4cb507a52bf336d395b08b4c1a429bd4956ab22d) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Add cache to CDN requests during preload
|
|
8
|
+
|
|
9
|
+
## 0.7.0-next.1
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#4791](https://github.com/LedgerHQ/ledger-live/pull/4791) [`b779f6c964`](https://github.com/LedgerHQ/ledger-live/commit/b779f6c964079b9cd9a4ee985cd5cdbb8c49406e) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update `getDeviceTransactionConfig` to return correctly nano fields when the transaction has been crafted by a third party (like the Wallet API)
|
|
14
|
+
|
|
3
15
|
## 0.7.0-next.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|