Skip to content

Commit 0a90d0c

Browse files
authored
fix: update sdk deployment docs
2 parents d18f6d1 + 3a59399 commit 0a90d0c

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

src/content/docs/en/sdk/guides/aws-deployment.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ Ensure you have the following tools installed on your local machine:
5555

5656
Make sure to follow the installation instructions for each tool on their respective websites. For `kubectl`, you can refer to the detailed installation steps provided in the [Amazon EKS documentation](https://docs.aws.amazon.com/eks/latest/userguide/install-kubectl.html).
5757

58-
To install the scroll-sdk-cli, run:
58+
To install the latest version of scroll-sdk-cli, run:
5959

6060
```bash
61-
npm install -g @scroll-tech/scroll-sdk-cli@0.1.1
61+
npm install -g @scroll-tech/scroll-sdk-cli
6262
```
6363

6464
{/* TODO: Replace with new command */}

src/content/docs/en/sdk/guides/devnet-deployment.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ As we migrate to the Blockscout upgrade with native Scroll SDK support, we haven
6464
- `brew install nvm`
6565
- `nvm install node`
6666
- scroll-sdk-cli *(Experimental, APIs may change)*
67-
- `npm install -g @scroll-tech/scroll-sdk-cli@0.1.1`
67+
- `npm install -g @scroll-tech/scroll-sdk-cli`
6868
3. You should now be able to open a terminal and run the following:
6969
- `docker -v`
7070
- `kubectl version`
@@ -125,7 +125,7 @@ As we migrate to the Blockscout upgrade with native Scroll SDK support, we haven
125125
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
126126
# Re-login or source your shell configuration
127127
nvm install 20
128-
npm install -g @scroll-tech/scroll-sdk-cli@0.1.1
128+
npm install -g @scroll-tech/scroll-sdk-cli
129129
```
130130
{/* TODO: Update the cli command to use the new `scrollsdk` install command */}
131131

src/content/docs/en/sdk/guides/digital-ocean-alt-gas-token.mdx

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Please be aware that Blockscout will take a few extra steps to setup without aut
6363
- k9s *(optional)*
6464

6565

66-
To install the scroll-sdk-cli, run `npm install -g @scroll-tech/scroll-sdk-cli@0.1.1`
66+
To install the latest version of scroll-sdk-cli, run `npm install -g @scroll-tech/scroll-sdk-cli`
6767

6868
Then, run `scrollsdk test dependencies` to test that the tool works and to check the required dependencies listed above.
6969

@@ -689,22 +689,22 @@ Now, let's add the prover services to the bottom of your `Makefile`.
689689

690690
```
691691
install-provers:
692-
helm upgrade -i prover-chunk oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
693-
--version=0.0.5 \
694-
--values values/prover-chunk-production.yaml
692+
helm upgrade -i prover-chunk oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
693+
--version=0.0.5 \
694+
--values values/prover-chunk-production.yaml
695695

696-
helm upgrade -i prover-batch oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
697-
--version=0.0.5 \
698-
--values values/prover-batch-production.yaml
696+
helm upgrade -i prover-batch oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
697+
--version=0.0.5 \
698+
--values values/prover-batch-production.yaml
699699

700-
helm upgrade -i prover-bundle oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
701-
--version=0.0.5 \
702-
--values values/prover-bundle-production.yaml
700+
helm upgrade -i prover-bundle oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
701+
--version=0.0.5 \
702+
--values values/prover-bundle-production.yaml
703703

704704
delete-provers:
705-
helm delete -n $(NAMESPACE) prover-chunk
706-
helm delete -n $(NAMESPACE) prover-batch
707-
helm delete -n $(NAMESPACE) prover-bundle
705+
helm delete -n $(NAMESPACE) prover-chunk
706+
helm delete -n $(NAMESPACE) prover-batch
707+
helm delete -n $(NAMESPACE) prover-bundle
708708
```
709709
710710
Now, simply run `make install-provers` to deploy the provers.

0 commit comments

Comments
 (0)