@ledgerhq/coin-casper 2.0.9 → 2.0.10-nightly.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/.eslintrc.js +23 -0
- package/CHANGELOG.md +9 -0
- package/package.json +11 -11
package/.eslintrc.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
module.exports = {
|
|
2
|
+
env: {
|
|
3
|
+
browser: true,
|
|
4
|
+
es6: true,
|
|
5
|
+
},
|
|
6
|
+
overrides: [
|
|
7
|
+
{
|
|
8
|
+
files: ["src/**/*.test.{ts,tsx}"],
|
|
9
|
+
env: {
|
|
10
|
+
"jest/globals": true,
|
|
11
|
+
},
|
|
12
|
+
plugins: ["jest"],
|
|
13
|
+
},
|
|
14
|
+
],
|
|
15
|
+
rules: {
|
|
16
|
+
eqeqeq: ["error"],
|
|
17
|
+
"no-console": ["error", { allow: ["warn", "error"] }],
|
|
18
|
+
"@typescript-eslint/no-empty-function": "off",
|
|
19
|
+
"no-empty-pattern": "off",
|
|
20
|
+
"@typescript-eslint/no-explicit-any": "warn",
|
|
21
|
+
"@typescript-eslint/no-unused-vars": "warn",
|
|
22
|
+
},
|
|
23
|
+
};
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @ledgerhq/coin-casper
|
|
2
2
|
|
|
3
|
+
## 2.0.10-nightly.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`12277dc`](https://github.com/LedgerHQ/ledger-live/commit/12277dcb478f24152060e3e11e2eb37d650b5b60)]:
|
|
8
|
+
- @ledgerhq/cryptoassets@13.27.0-nightly.0
|
|
9
|
+
- @ledgerhq/coin-framework@6.2.1-nightly.0
|
|
10
|
+
- @ledgerhq/types-live@6.82.0
|
|
11
|
+
|
|
3
12
|
## 2.0.9
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/coin-casper",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.10-nightly.0",
|
|
4
4
|
"description": "Ledger Casper integration",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger",
|
|
@@ -94,15 +94,15 @@
|
|
|
94
94
|
"license": "Apache-2.0",
|
|
95
95
|
"dependencies": {
|
|
96
96
|
"bignumber.js": "^9.1.2",
|
|
97
|
+
"casper-js-sdk": "5.0.5",
|
|
97
98
|
"invariant": "^2.2.2",
|
|
98
99
|
"lodash": "^4.17.21",
|
|
99
|
-
"casper-js-sdk": "5.0.5",
|
|
100
100
|
"rxjs": "^7.8.1",
|
|
101
|
-
"@ledgerhq/coin-framework": "^6.2.0",
|
|
102
|
-
"@ledgerhq/cryptoassets": "^13.
|
|
103
|
-
"@ledgerhq/devices": "8.5.0",
|
|
104
|
-
"@ledgerhq/errors": "^6.
|
|
105
|
-
"@ledgerhq/live-network": "^2.0.
|
|
101
|
+
"@ledgerhq/coin-framework": "^6.2.1-nightly.0",
|
|
102
|
+
"@ledgerhq/cryptoassets": "^13.27.0-nightly.0",
|
|
103
|
+
"@ledgerhq/devices": "8.5.1-nightly.0",
|
|
104
|
+
"@ledgerhq/errors": "^6.25.0-nightly.0",
|
|
105
|
+
"@ledgerhq/live-network": "^2.0.16-nightly.1",
|
|
106
106
|
"@ledgerhq/logs": "^6.13.0",
|
|
107
107
|
"@ledgerhq/types-live": "^6.82.0"
|
|
108
108
|
},
|
|
@@ -111,12 +111,12 @@
|
|
|
111
111
|
"@types/jest": "^29.5.10",
|
|
112
112
|
"@types/lodash": "^4.14.191",
|
|
113
113
|
"@types/semver": "^7.5.8",
|
|
114
|
+
"axios": "1.11.0",
|
|
115
|
+
"expect": "^27.4.6",
|
|
114
116
|
"jest": "^29.7.0",
|
|
115
117
|
"ts-jest": "^29.1.1",
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"@ledgerhq/types-cryptoassets": "^7.25.0",
|
|
119
|
-
"@ledgerhq/disable-network-setup": "^0.0.0"
|
|
118
|
+
"@ledgerhq/disable-network-setup": "^0.0.0",
|
|
119
|
+
"@ledgerhq/types-cryptoassets": "^7.26.0-nightly.1"
|
|
120
120
|
},
|
|
121
121
|
"scripts": {
|
|
122
122
|
"clean": "rimraf lib lib-es",
|