Skip to content

Commit 984232c

Browse files
committed
update sdk launch prover docs
1 parent 14aefa8 commit 984232c

File tree

1 file changed

+28
-7
lines changed

1 file changed

+28
-7
lines changed

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

+28-7
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ Some services do not support this without additional configurations (for example
542542

543543
The Scroll team has been collaborating closely with teams specializing in proof generation to enable plug-and-play proof generation for SDK networks.
544544

545-
In this example, we'll use a sample chart from the `scroll-proving-sdk` repo to generate proofs with [Sindri](https://sindri.app/docs/introduction/). In the future, teams will publish their own charts for chains to easily enable one or external providers.
545+
In this example, we'll use a sample chart from the `sindri-scroll-sdk` repo to generate proofs with [Sindri](https://sindri.app/docs/introduction/). For more, you can check out [here]https://docs.scroll.io/en/sdk/technical-stack/proof-generation/#outsourcing-proof-generation-to-external-service-providers)
546546

547547
Because this feature is not directly built into the Scroll SDK, there will be quite a bit of copy-pasting.
548548

@@ -564,11 +564,18 @@ persistence:
564564
type: configMap
565565
mountPath: /sdk_prover/
566566
name: prover-chunk-config
567+
db:
568+
enabled: true
569+
type: pvc
570+
mountPath: /db/
571+
size: 10Mi
572+
accessMode: ReadWriteOnce
567573
568574
scrollConfig: |
569575
{
570576
"prover_name_prefix": "sindri_chunk_",
571577
"keys_dir": "keys",
578+
"db_path": "db",
572579
"coordinator": {
573580
"base_url": "http://coordinator-api:80",
574581
"retry_count": 3,
@@ -605,11 +612,18 @@ persistence:
605612
type: configMap
606613
mountPath: /sdk_prover/
607614
name: prover-batch-config
615+
db:
616+
enabled: true
617+
type: pvc
618+
mountPath: /db/
619+
size: 10Mi
620+
accessMode: ReadWriteOnce
608621
609622
scrollConfig: |
610623
{
611624
"prover_name_prefix": "sindri_batch_",
612625
"keys_dir": "keys",
626+
"db_path": "db",
613627
"coordinator": {
614628
"base_url": "http://coordinator-api:80",
615629
"retry_count": 3,
@@ -647,11 +661,18 @@ persistence:
647661
type: configMap
648662
mountPath: /sdk_prover/
649663
name: prover-bundle-config
664+
db:
665+
enabled: true
666+
type: pvc
667+
mountPath: /db/
668+
size: 10Mi
669+
accessMode: ReadWriteOnce
650670
651671
scrollConfig: |
652672
{
653673
"prover_name_prefix": "sindri_bundle_",
654674
"keys_dir": "keys",
675+
"db_path": "db",
655676
"coordinator": {
656677
"base_url": "http://coordinator-api:80",
657678
"retry_count": 3,
@@ -689,16 +710,16 @@ Now, let's add the prover services to the bottom of your `Makefile`.
689710

690711
```
691712
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 \
713+
helm upgrade -i prover-chunk oci://ghcr.io/sindri-labs/sindri-scroll-sdk/helm/scroll-proving-sindri -n $(NAMESPACE) \
714+
--version=0.0.4 \
694715
--values values/prover-chunk-production.yaml
695716

696-
helm upgrade -i prover-batch oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
697-
--version=0.0.5 \
717+
helm upgrade -i prover-batch oci://ghcr.io/sindri-labs/sindri-scroll-sdk/helm/scroll-proving-sindri -n $(NAMESPACE) \
718+
--version=0.0.4 \
698719
--values values/prover-batch-production.yaml
699720

700-
helm upgrade -i prover-bundle oci://ghcr.io/scroll-tech/scroll-sdk/helm/scroll-proving-sdk -n $(NAMESPACE) \
701-
--version=0.0.5 \
721+
helm upgrade -i prover-bundle oci://ghcr.io/sindri-labs/sindri-scroll-sdk/helm/scroll-proving-sindri -n $(NAMESPACE) \
722+
--version=0.0.4 \
702723
--values values/prover-bundle-production.yaml
703724

704725
delete-provers:

0 commit comments

Comments
 (0)