Skip to content

Commit d7b852d

Browse files
authored
Update dependencies (solana-labs#423)
1 parent bdbee5a commit d7b852d

File tree

9 files changed

+364
-600
lines changed

9 files changed

+364
-600
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
npm install node
3535
node --version
3636
npm install
37-
sh -c "$(curl -sSfL https://release.solana.com/v1.8.2/install)"
37+
sh -c "$(curl -sSfL https://release.solana.com/v1.8.14/install)"
3838
export PATH=~/.local/share/solana/install/active_release/bin:$PATH
3939
solana-install info
4040
solana-keygen new --no-bip39-passphrase

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
- nvm install node
2626
- node --version
2727
- npm install
28-
- sh -c "$(curl -sSfL https://release.solana.com/v1.7.8/install)"
28+
- sh -c "$(curl -sSfL https://release.solana.com/v1.8.14/install)"
2929
- export PATH=~/.local/share/solana/install/active_release/bin:$PATH
3030
- solana-install info
3131

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ on your OS, they may already be installed:
6666
- Install node (v14 recommended)
6767
- Install npm
6868
- Install Rust v1.56.1 or later from https://rustup.rs/
69-
- Install Solana v1.8.2 or later from
69+
- Install Solana v1.8.14 or later from
7070
https://docs.solana.com/cli/install-solana-cli-tools
7171

7272
If this is your first time using Rust, these [Installation

package-lock.json

+67-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"pretty": "prettier --write '{,src/**/}*.ts'"
2424
},
2525
"dependencies": {
26-
"@solana/web3.js": "^1.7.0",
26+
"@solana/web3.js": "^1.33.0",
2727
"borsh": "^0.7.0",
2828
"mz": "^2.7.0",
2929
"yaml": "^1.10.2"

src/client/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export async function getRpcUrl(): Promise<string> {
3636
console.warn(
3737
'Failed to read RPC url from CLI config file, falling back to localhost',
3838
);
39-
return 'http://localhost:8899';
39+
return 'http://127.0.0.1:8899';
4040
}
4141
}
4242

0 commit comments

Comments
 (0)