You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/content/docs/en/sdk/guides/digital-ocean-alt-gas-token.mdx
+28-7
Original file line number
Diff line number
Diff line change
@@ -542,7 +542,7 @@ Some services do not support this without additional configurations (for example
542
542
543
543
The Scroll team has been collaborating closely with teams specializing in proof generation to enable plug-and-play proof generation for SDK networks.
544
544
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 externalproviders.
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)
546
546
547
547
Because this feature is not directly built into the Scroll SDK, there will be quite a bit of copy-pasting.
548
548
@@ -564,11 +564,18 @@ persistence:
564
564
type: configMap
565
565
mountPath: /sdk_prover/
566
566
name: prover-chunk-config
567
+
db:
568
+
enabled: true
569
+
type: pvc
570
+
mountPath: /db/
571
+
size: 10Mi
572
+
accessMode: ReadWriteOnce
567
573
568
574
scrollConfig: |
569
575
{
570
576
"prover_name_prefix": "sindri_chunk_",
571
577
"keys_dir": "keys",
578
+
"db_path": "db",
572
579
"coordinator": {
573
580
"base_url": "http://coordinator-api:80",
574
581
"retry_count": 3,
@@ -605,11 +612,18 @@ persistence:
605
612
type: configMap
606
613
mountPath: /sdk_prover/
607
614
name: prover-batch-config
615
+
db:
616
+
enabled: true
617
+
type: pvc
618
+
mountPath: /db/
619
+
size: 10Mi
620
+
accessMode: ReadWriteOnce
608
621
609
622
scrollConfig: |
610
623
{
611
624
"prover_name_prefix": "sindri_batch_",
612
625
"keys_dir": "keys",
626
+
"db_path": "db",
613
627
"coordinator": {
614
628
"base_url": "http://coordinator-api:80",
615
629
"retry_count": 3,
@@ -647,11 +661,18 @@ persistence:
647
661
type: configMap
648
662
mountPath: /sdk_prover/
649
663
name: prover-bundle-config
664
+
db:
665
+
enabled: true
666
+
type: pvc
667
+
mountPath: /db/
668
+
size: 10Mi
669
+
accessMode: ReadWriteOnce
650
670
651
671
scrollConfig: |
652
672
{
653
673
"prover_name_prefix": "sindri_bundle_",
654
674
"keys_dir": "keys",
675
+
"db_path": "db",
655
676
"coordinator": {
656
677
"base_url": "http://coordinator-api:80",
657
678
"retry_count": 3,
@@ -689,16 +710,16 @@ Now, let's add the prover services to the bottom of your `Makefile`.
0 commit comments