Skip to content

Commit cbb72a2

Browse files
authored
chore: 📦 November deps update (#437)
* chore: 📦 Update node to 23 in CI * chore: 📦 Big pkg refactor * fix: 🐛 add retry logic to connecting providers * tidy * zombie fix
1 parent 4c86a9e commit cbb72a2

37 files changed

+7891
-5187
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Node
3131
uses: actions/setup-node@v4
3232
with:
33-
node-version: 20
33+
node-version: 23
3434
cache: pnpm
3535
- name: Setup Pages
3636
uses: actions/configure-pages@v3

.github/workflows/main.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
version: 9.1.4
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 20
20+
node-version: 23
2121
cache: "pnpm"
2222
- run: pnpm install
2323
- run: pnpm run build
@@ -31,7 +31,7 @@ jobs:
3131
version: 9.1.4
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 20
34+
node-version: 23
3535
cache: "pnpm"
3636
- run: pnpm install
3737
- run: pnpm run lint
@@ -45,7 +45,7 @@ jobs:
4545
version: 9.1.4
4646
- uses: actions/setup-node@v4
4747
with:
48-
node-version: 20
48+
node-version: 23
4949
cache: "pnpm"
5050
- run: pnpm install
5151
- run: pnpm run fmt
@@ -60,7 +60,7 @@ jobs:
6060
version: 9.1.4
6161
- uses: actions/setup-node@v4
6262
with:
63-
node-version: 20
63+
node-version: 23
6464
cache: "pnpm"
6565
- uses: oven-sh/setup-bun@v1
6666
with:
@@ -87,7 +87,7 @@ jobs:
8787
version: 9.1.4
8888
- uses: actions/setup-node@v4
8989
with:
90-
node-version: 20
90+
node-version: 23
9191
cache: "pnpm"
9292
- name: Build like before
9393
run: |
@@ -126,7 +126,7 @@ jobs:
126126
version: 9.1.4
127127
- uses: actions/setup-node@v4
128128
with:
129-
node-version: 20
129+
node-version: 23
130130
cache: "pnpm"
131131
- name: Build like before
132132
run: |
@@ -158,7 +158,7 @@ jobs:
158158
version: 9.1.4
159159
- uses: actions/setup-node@v4
160160
with:
161-
node-version: 20
161+
node-version: 23
162162
cache: "pnpm"
163163
- name: Build like before
164164
run: |
@@ -196,7 +196,7 @@ jobs:
196196
version: 9.1.4
197197
- uses: actions/setup-node@v4
198198
with:
199-
node-version: 20
199+
node-version: 23
200200
cache: "pnpm"
201201
- name: Build like before
202202
run: |
@@ -227,7 +227,7 @@ jobs:
227227
version: 9.1.4
228228
- uses: actions/setup-node@v4
229229
with:
230-
node-version: 20
230+
node-version: 23
231231
cache: "pnpm"
232232
- uses: oven-sh/setup-bun@v1
233233
with:

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
version: 9.1.4
3131
- uses: actions/setup-node@v4
3232
with:
33-
node-version: 20
33+
node-version: 23
3434
cache: "pnpm"
3535
- run: pnpm install
3636
- run: pnpm run build

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
version: 9.1.4
1717
- uses: actions/setup-node@v4
1818
with:
19-
node-version: 20
19+
node-version: 23
2020
cache: "pnpm"
2121
- run: pnpm install
2222
- run: pnpm run build

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
**/dist/
33
**/.tsup/
44
test/html/*
5-
*.sqlite
65
**/*.log
76
downloads/*
87
*.wasm
@@ -22,4 +21,6 @@ artifacts
2221
**/contracts/out/*
2322

2423

25-
.idea
24+
.idea
25+
db.sqlite*
26+
polkadot*

.npmignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
moonbeam
2-
polkadot
32
*.wasm
43
*.txt

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
33
"files": {
44
"include": ["*.js", "*.ts", "*.json", "*.yml", "*.md"],
55
"ignore": ["./dist/*", "./node_modules/*", "package.json"]

docs/guide/troubleshooting/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Make sure that you specify the correct version of Moonwall that you'd like to us
3333
"@moonwall/util": "^4.7.5",
3434
"ethers":"^6.10.0",
3535
"@polkadot/api": "^10.11.2",
36-
"typescript": "^5.3.3"
36+
"typescript": "^5.6.3"
3737
}
3838
}
3939
```

package.json

Lines changed: 45 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,50 @@
2222
"typecheck": "pnpm -r --filter='./packages/**' run typecheck"
2323
},
2424
"devDependencies": {
25-
"@biomejs/biome": "1.9.2",
26-
"@changesets/cli": "2.27.8",
27-
"@types/node": "20.14.10",
28-
"typescript": "5.5.3"
25+
"@biomejs/biome": "1.9.4",
26+
"@changesets/cli": "2.27.9",
27+
"@types/node": "22.9.0",
28+
"typescript": "5.6.3"
29+
},
30+
"dependencies": {
31+
"@acala-network/chopsticks": "1.0.1",
32+
"@moonbeam-network/api-augment": "0.3200.3",
33+
"@polkadot/api": "14.3.1",
34+
"@polkadot/api-base": "14.3.1",
35+
"@polkadot/api-derive": "14.3.1",
36+
"@polkadot/keyring": "13.2.3",
37+
"@polkadot/rpc-provider": "*",
38+
"@polkadot/types": "14.3.1",
39+
"@polkadot/types-codec": "14.3.1",
40+
"@polkadot/util": "13.2.3",
41+
"@polkadot/util-crypto": "13.2.3",
42+
"@types/debug": "*",
43+
"@types/semver": "^7.5.8",
44+
"@types/ws": "^8.5.10",
45+
"@types/yargs": "*",
46+
"@vitest/ui": "2.1.4",
47+
"@zombienet/utils": "0.0.25",
48+
"bottleneck": "2.19.5",
49+
"chalk": "5.3.0",
50+
"debug": "4.3.7",
51+
"ethers": "6.13.4",
52+
"inquirer": "9.3.3",
53+
"inquirer-press-to-continue": "1.2.0",
54+
"pnpm": "9.12.3",
55+
"semver": "7.6.2",
56+
"solc": "0.8.28",
57+
"tiny-invariant": "^1.3.3",
58+
"tsup": "8.3.5",
59+
"tsx": "4.19.2",
60+
"viem": "2.21.44",
61+
"vitest": "2.1.4",
62+
"web3": "4.15.0",
63+
"ws": "8.18.0",
64+
"yargs": "17.7.2"
65+
},
66+
"pnpm": {
67+
"overrides": {
68+
"inquirer": "9.3.3"
69+
}
2970
}
3071
}

packages/cli/biome.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.2/schema.json",
32
"extends": ["../../biome.json"]
43
}

0 commit comments

Comments
 (0)