Skip to content

Commit a66d2f1

Browse files
committed
fix(release): add Rust and wasm-pack installation steps to release workflow; update @ethersproject/providers version in access-control-conditions and add @ethersproject/transactions in auth-helpers
1 parent 1a08f07 commit a66d2f1

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,18 @@ jobs:
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818

19+
- name: Install rust
20+
uses: actions-rs/toolchain@v1
21+
with:
22+
toolchain: stable
23+
override: true
24+
components: rust-std
25+
26+
- name: Install wasm-pack
27+
uses: jetli/[email protected]
28+
with:
29+
version: 'latest'
30+
1931
- name: Setup Node
2032
uses: actions/setup-node@v4
2133
with:

packages/access-control-conditions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@
2727
"dependencies": {
2828
"ethers": "5.7.2",
2929
"zod": "3.24.3",
30-
"@ethersproject/providers": "5.7.2"
30+
"@ethersproject/providers": "5.7.0"
3131
}
3232
}

packages/auth-helpers/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
"siwe": "2.3.2",
3535
"siwe-recap": "0.0.2-alpha.0",
3636
"viem": "2.29.4",
37-
"zod": "3.24.3"
37+
"zod": "3.24.3",
38+
"@ethersproject/transactions": "5.7.0"
3839
}
3940
}

0 commit comments

Comments
 (0)