@talismn/balances 0.0.0-pr707-20230419064725 → 0.0.0-pr707-20230419094832
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/CHANGELOG.md
CHANGED
@@ -1,21 +1,23 @@
|
|
1
1
|
# @talismn/balances
|
2
2
|
|
3
|
-
## 0.0.0-pr707-
|
3
|
+
## 0.0.0-pr707-20230419094832
|
4
4
|
|
5
5
|
### Patch Changes
|
6
6
|
|
7
7
|
- fb8ee962: feat: proxy dapp websocket requests to talisman wallet backend when available
|
8
|
+
- f7aca48b: eslint rules
|
8
9
|
- 01bf239b: feat: crowdloan and nom pool balances
|
9
10
|
- 01bf239b: fix: packages publishing with incorrect interdependency versions
|
10
11
|
- Updated dependencies [fb8ee962]
|
11
12
|
- Updated dependencies [c898da98]
|
13
|
+
- Updated dependencies [f7aca48b]
|
12
14
|
- Updated dependencies [01bf239b]
|
13
15
|
- Updated dependencies [01bf239b]
|
14
|
-
- @talismn/chain-connector@0.0.0-pr707-
|
15
|
-
- @talismn/chain-connector-evm@0.0.0-pr707-
|
16
|
-
- @talismn/
|
17
|
-
- @talismn/
|
18
|
-
- @talismn/
|
16
|
+
- @talismn/chain-connector@0.0.0-pr707-20230419094832
|
17
|
+
- @talismn/chain-connector-evm@0.0.0-pr707-20230419094832
|
18
|
+
- @talismn/chaindata-provider@0.0.0-pr707-20230419094832
|
19
|
+
- @talismn/token-rates@0.0.0-pr707-20230419094832
|
20
|
+
- @talismn/util@0.0.0-pr707-20230419094832
|
19
21
|
|
20
22
|
## 0.4.0
|
21
23
|
|
@@ -69,7 +69,7 @@ const db = new TalismanBalancesDatabase();
|
|
69
69
|
|
70
70
|
var packageJson = {
|
71
71
|
name: "@talismn/balances",
|
72
|
-
version: "0.0.0-pr707-
|
72
|
+
version: "0.0.0-pr707-20230419094832",
|
73
73
|
author: "Talisman",
|
74
74
|
homepage: "https://talisman.xyz",
|
75
75
|
license: "UNLICENSED",
|
@@ -92,7 +92,7 @@ var packageJson = {
|
|
92
92
|
},
|
93
93
|
scripts: {
|
94
94
|
test: "jest",
|
95
|
-
lint: "eslint
|
95
|
+
lint: "eslint src --max-warnings 0",
|
96
96
|
clean: "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
97
97
|
},
|
98
98
|
dependencies: {
|
@@ -224,7 +224,11 @@ class StorageHelper {
|
|
224
224
|
#module;
|
225
225
|
#method;
|
226
226
|
#parameters;
|
227
|
+
|
228
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
227
229
|
tags = null;
|
230
|
+
|
231
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
228
232
|
constructor(registry, module, method, ...parameters) {
|
229
233
|
this.#registry = registry;
|
230
234
|
this.#module = module;
|
@@ -258,6 +262,8 @@ class StorageHelper {
|
|
258
262
|
get parameters() {
|
259
263
|
return this.#parameters;
|
260
264
|
}
|
265
|
+
|
266
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
261
267
|
tag(tags) {
|
262
268
|
this.tags = tags;
|
263
269
|
return this;
|
@@ -69,7 +69,7 @@ const db = new TalismanBalancesDatabase();
|
|
69
69
|
|
70
70
|
var packageJson = {
|
71
71
|
name: "@talismn/balances",
|
72
|
-
version: "0.0.0-pr707-
|
72
|
+
version: "0.0.0-pr707-20230419094832",
|
73
73
|
author: "Talisman",
|
74
74
|
homepage: "https://talisman.xyz",
|
75
75
|
license: "UNLICENSED",
|
@@ -92,7 +92,7 @@ var packageJson = {
|
|
92
92
|
},
|
93
93
|
scripts: {
|
94
94
|
test: "jest",
|
95
|
-
lint: "eslint
|
95
|
+
lint: "eslint src --max-warnings 0",
|
96
96
|
clean: "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
97
97
|
},
|
98
98
|
dependencies: {
|
@@ -224,7 +224,11 @@ class StorageHelper {
|
|
224
224
|
#module;
|
225
225
|
#method;
|
226
226
|
#parameters;
|
227
|
+
|
228
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
227
229
|
tags = null;
|
230
|
+
|
231
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
228
232
|
constructor(registry, module, method, ...parameters) {
|
229
233
|
this.#registry = registry;
|
230
234
|
this.#module = module;
|
@@ -258,6 +262,8 @@ class StorageHelper {
|
|
258
262
|
get parameters() {
|
259
263
|
return this.#parameters;
|
260
264
|
}
|
265
|
+
|
266
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
261
267
|
tag(tags) {
|
262
268
|
this.tags = tags;
|
263
269
|
return this;
|
@@ -60,7 +60,7 @@ const db = new TalismanBalancesDatabase();
|
|
60
60
|
|
61
61
|
var packageJson = {
|
62
62
|
name: "@talismn/balances",
|
63
|
-
version: "0.0.0-pr707-
|
63
|
+
version: "0.0.0-pr707-20230419094832",
|
64
64
|
author: "Talisman",
|
65
65
|
homepage: "https://talisman.xyz",
|
66
66
|
license: "UNLICENSED",
|
@@ -83,7 +83,7 @@ var packageJson = {
|
|
83
83
|
},
|
84
84
|
scripts: {
|
85
85
|
test: "jest",
|
86
|
-
lint: "eslint
|
86
|
+
lint: "eslint src --max-warnings 0",
|
87
87
|
clean: "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
88
88
|
},
|
89
89
|
dependencies: {
|
@@ -215,7 +215,11 @@ class StorageHelper {
|
|
215
215
|
#module;
|
216
216
|
#method;
|
217
217
|
#parameters;
|
218
|
+
|
219
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
218
220
|
tags = null;
|
221
|
+
|
222
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
219
223
|
constructor(registry, module, method, ...parameters) {
|
220
224
|
this.#registry = registry;
|
221
225
|
this.#module = module;
|
@@ -249,6 +253,8 @@ class StorageHelper {
|
|
249
253
|
get parameters() {
|
250
254
|
return this.#parameters;
|
251
255
|
}
|
256
|
+
|
257
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
252
258
|
tag(tags) {
|
253
259
|
this.tags = tags;
|
254
260
|
return this;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@talismn/balances",
|
3
|
-
"version": "0.0.0-pr707-
|
3
|
+
"version": "0.0.0-pr707-20230419094832",
|
4
4
|
"author": "Talisman",
|
5
5
|
"homepage": "https://talisman.xyz",
|
6
6
|
"license": "UNLICENSED",
|
@@ -23,22 +23,22 @@
|
|
23
23
|
},
|
24
24
|
"scripts": {
|
25
25
|
"test": "jest",
|
26
|
-
"lint": "eslint
|
26
|
+
"lint": "eslint src --max-warnings 0",
|
27
27
|
"clean": "rm -rf dist && rm -rf .turbo rm -rf node_modules"
|
28
28
|
},
|
29
29
|
"dependencies": {
|
30
|
-
"@talismn/chain-connector": "0.0.0-pr707-
|
31
|
-
"@talismn/chain-connector-evm": "0.0.0-pr707-
|
32
|
-
"@talismn/chaindata-provider": "0.0.0-pr707-
|
33
|
-
"@talismn/token-rates": "0.0.0-pr707-
|
34
|
-
"@talismn/util": "0.0.0-pr707-
|
30
|
+
"@talismn/chain-connector": "0.0.0-pr707-20230419094832",
|
31
|
+
"@talismn/chain-connector-evm": "0.0.0-pr707-20230419094832",
|
32
|
+
"@talismn/chaindata-provider": "0.0.0-pr707-20230419094832",
|
33
|
+
"@talismn/token-rates": "0.0.0-pr707-20230419094832",
|
34
|
+
"@talismn/util": "0.0.0-pr707-20230419094832",
|
35
35
|
"anylogger": "^1.0.11",
|
36
36
|
"dexie": "^3.2.3",
|
37
37
|
"lodash": "4.17.21"
|
38
38
|
},
|
39
39
|
"devDependencies": {
|
40
40
|
"@polkadot/types": "^10.1.4",
|
41
|
-
"@talismn/eslint-config": "0.0.
|
41
|
+
"@talismn/eslint-config": "0.0.0-pr707-20230419094832",
|
42
42
|
"@talismn/tsconfig": "0.0.2",
|
43
43
|
"@types/jest": "^27.5.1",
|
44
44
|
"@types/lodash": "^4.14.180",
|