Skip to content

Commit aba655d

Browse files
authored
Merge pull request #32 from ourzora/update_libraries_fix_wallet_connections
update libraries and fix connections
2 parents 7290d17 + 20c0c2b commit aba655d

File tree

11 files changed

+5469
-6531
lines changed

11 files changed

+5469
-6531
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,8 @@ jobs:
1010
- name: Checkout 🛎️
1111
uses: actions/checkout@master
1212

13-
- name: Install Node.js
14-
uses: actions/setup-node@v3
15-
with:
16-
node-version: 18
17-
cache: "yarn"
18-
19-
- name: Install project dependencies
20-
shell: bash
21-
run: yarn
13+
- run: corepack enable
14+
- run: pnpm install --frozen-lockfile
2215

2316
- name: Build 🏗️
24-
run: yarn build
17+
run: pnpm build

.github/workflows/publish.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,11 @@ jobs:
1313
- name: Checkout 🛎️
1414
uses: actions/checkout@master
1515

16-
- name: Install Node.js
17-
uses: actions/setup-node@v3
18-
with:
19-
node-version: 18
20-
cache: "yarn"
21-
22-
- name: Install project dependencies
23-
shell: bash
24-
run: yarn
16+
- run: corepack enable
17+
- run: pnpm install --frozen-lockfile
2518

2619
- name: Build 🏗️
27-
run: yarn build
20+
run: pnpm build
2821

2922
- name: Deploy to GH Pages 🚀
3023
uses: peaceiris/actions-gh-pages@v3

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
auto-install-peers=true

package.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"type": "module",
66
"dependencies": {
7-
"@safe-global/protocol-kit": "^3.1.1",
7+
"@safe-global/protocol-kit": "^6.1.1",
88
"@safe-global/safe-deployments": "^1.37.14",
99
"@zoralabs/zorb": "^0.1.0",
1010
"buffer": "^6.0.3",
@@ -17,7 +17,7 @@
1717
"react-router-dom": "^6.20.0",
1818
"reshaped": "^2.6.0",
1919
"toastify-js": "^1.12.0",
20-
"viem": "^2.22.17",
20+
"viem": "^2.38.2",
2121
"yup": "^1.3.2"
2222
},
2323
"scripts": {
@@ -26,10 +26,10 @@
2626
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
2727
"preview": "vite preview",
2828
"prettier": "prettier src/ --write",
29-
"deploy": "yarn build && gh-pages -d dist"
29+
"deploy": "pnpm build && gh-pages -d dist"
3030
},
3131
"devDependencies": {
32-
"@safe-global/safe-core-sdk-types": "^3.0.1",
32+
"@safe-global/safe-core-sdk-types": "^5.1.0",
3333
"@types/react": "^18.2.38",
3434
"@types/react-dom": "^18.2.16",
3535
"@typescript-eslint/eslint-plugin": "^6.12.0",
@@ -49,5 +49,6 @@
4949
"ts-node": "^10.9.1",
5050
"typescript": "^5.3.2",
5151
"vite": "^5.0.2"
52-
}
52+
},
53+
"packageManager": "[email protected]+sha512.c9fc7236e92adf5c8af42fd5bf1612df99c2ceb62f27047032f4720b33f8eacdde311865e91c411f2774f618d82f320808ecb51718bfa82c060c4ba7c76a32b8"
5354
}

0 commit comments

Comments
 (0)