Skip to content

Commit 23c69c9

Browse files
committed
Merge branch 'main' into bsc
2 parents 831ea4a + ccf857e commit 23c69c9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

docs/setup-cloud9.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ After arranging your environment windows, you'll want to install and update some
8484
```bash
8585
sudo pip install awscli --upgrade
8686
sudo yum install -y jq
87-
aws configure set default.region us-east-2
87+
aws configure set default.region us-east-1
8888
```
8989

9090
Install NodeJS v18 and set as the default version
9191

9292
```bash
93-
nvm install 16
94-
nvm use 16
95-
nvm alias default 16
93+
nvm install 18
94+
nvm use 18
95+
nvm alias default 18
9696
```
9797

9898
The AWS CDK includes the CDK Toolkit (also called the CLI), a command line tool for working with your AWS CDK apps and stacks. Install the CDK toolkit

lib/solana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ Create your own copy of `.env` file and edit it to update with your AWS Account
148148
7. Connect with the RPC API exposed by the node:
149149

150150
```bash
151-
INSTANCE_ID=$(cat single-node-deploy.json | jq -r '..|.node-instance-id? | select(. != null)')
151+
INSTANCE_ID=$(cat single-node-deploy.json | jq -r '..|.nodeinstanceid? | select(. != null)')
152152
NODE_INTERNAL_IP=$(aws ec2 describe-instances --instance-ids $INSTANCE_ID --query 'Reservations[*].Instances[*].PublicIpAddress' --output text)
153153
# We query token balance this account: https://solanabeach.io/address/9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM
154154
curl http://$NODE_INTERNAL_IP:8899 -X POST -H "Content-Type: application/json" \

lib/solana/sample-configs/.env-sample-baserpc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ AWS_REGION="us-east-2"
99
## Common configuration parameters ##
1010
SOLANA_CLUSTER="mainnet-beta" # All options: "mainnet-beta", "testnet", "devnet"
1111
SOLANA_NODE_CONFIGURATION="baserpc" # All options: "consensus", "baserpc", "extendedrpc"
12-
SOLANA_VERSION="1.17.16" # Current required version of Solana
12+
SOLANA_VERSION="1.17.20" # Current required version of Solana
1313

1414
SOLANA_INSTANCE_TYPE="r6a.8xlarge"
1515
SOLANA_CPU_TYPE="x86_64" # All options: "x86_64", "ARM_64". IMPORTANT: Make sure the CPU type matches the instance type used

lib/solana/sample-configs/.env-sample-consensus

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ AWS_REGION="us-east-2"
99
## Common configuration parameters ##
1010
SOLANA_CLUSTER="mainnet-beta" # All options: "mainnet-beta", "testnet", "devnet"
1111
SOLANA_NODE_CONFIGURATION="consensus" # All options: "consensus", "baserpc", "extendedrpc"
12-
SOLANA_VERSION="1.17.16" # Current required version of Solana
12+
SOLANA_VERSION="1.17.20" # Current required version of Solana
1313

1414
SOLANA_INSTANCE_TYPE="r6a.8xlarge"
1515
SOLANA_CPU_TYPE="x86_64" # All options: "x86_64", "ARM_64". IMPORTANT: Make sure the CPU type matches the instance type used

lib/solana/sample-configs/.env-sample-extendedrpc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ AWS_REGION="us-east-2"
99
## Common configuration parameters ##
1010
SOLANA_CLUSTER="mainnet-beta" # All options: "mainnet-beta", "testnet", "devnet"
1111
SOLANA_NODE_CONFIGURATION="extendedrpc" # All options: "consensus", "baserpc", "extendedrpc"
12-
SOLANA_VERSION="1.17.16" # Current required version of Solana
12+
SOLANA_VERSION="1.17.20" # Current required version of Solana
1313

1414
SOLANA_INSTANCE_TYPE="x2idn.16xlarge"
1515
SOLANA_CPU_TYPE="x86_64" # All options: "x86_64", "ARM_64". IMPORTANT: Make sure the CPU type matches the instance type used

0 commit comments

Comments
 (0)