Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '22.14.x'
node-version: '24.x.x'
registry-url: "https://registry.npmjs.org"
- name: Install yarn
run: yarn
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '22.14.x'
node-version: '24.x.x'
registry-url: "https://registry.npmjs.org"
- name: Install yarn
run: yarn
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '22.14.x'
node-version: '24.x.x'
registry-url: "https://registry.npmjs.org"

- name: Setup yarn
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/on-sdk-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: '22.14.x'
node-version: '24.x.x'
registry-url: "https://registry.npmjs.org"

- name: Determine sdk version
Expand Down
6 changes: 3 additions & 3 deletions ts/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@
},
"devDependencies": {
"@coral-xyz/anchor": "0.29.0",
"@types/bn.js": "5.1.3"
"@types/bn.js": "5.1.6"
},
"engines": {
"node": ">=22.14.x"
"node": "^24.0.0"
},
"scripts": {
"cli": "ts-node cli/cli.ts",
"clean": "rm -rf lib",
"build": "yarn clean && tsc"
},
"resolutions": {
"@types/bn.js": "5.1.3",
"@types/bn.js": "5.1.6",
"rpc-websockets": "10.0.0",
"@solana/web3.js": "1.98.0"
}
Expand Down
Loading