From 6bbf6e96419e42fe450034fcac76dc7215b4331c Mon Sep 17 00:00:00 2001 From: abishek Date: Mon, 3 Feb 2025 12:57:52 +0545 Subject: [PATCH] doc updates --- bin/datatool/Cargo.toml | 2 +- bin/datatool/README.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bin/datatool/Cargo.toml b/bin/datatool/Cargo.toml index de4e993b50..29b6120778 100644 --- a/bin/datatool/Cargo.toml +++ b/bin/datatool/Cargo.toml @@ -30,4 +30,4 @@ default = [] risc0-builder = ["strata-risc0-guest-builder", "bytemuck"] sp1-builder = ["strata-sp1-guest-builder/sp1-dev"] sp1-mock-builder = ["sp1-builder", "strata-sp1-guest-builder/mock"] -sp1-docker-docker = ["sp1-builder", "strata-sp1-guest-builder/docker-build"] +sp1-docker-builder = ["sp1-builder", "strata-sp1-guest-builder/docker-build"] diff --git a/bin/datatool/README.md b/bin/datatool/README.md index e17b604f15..bcba3805dd 100644 --- a/bin/datatool/README.md +++ b/bin/datatool/README.md @@ -37,16 +37,16 @@ Before proceeding, make sure that you have SP1 correctly set up by following the To ensure that the RollupParams contain the correct verifying key, build the binary in release mode and confirm that SP1 is set up correctly by following its installation instructions. -For production usage—since SP1 verification key generation is platform and workspace dependent—build the data tool in release mode with the sp1-docker feature: +For production usage—since SP1 verification key generation is platform and workspace dependent—build the data tool in release mode with the sp1-docker-builder feature: ```bash -cargo build --bin strata-datatool -F "sp1-docker" --release +cargo build --bin strata-datatool -F "sp1-docker-builder" --release ``` Because building the guest code in Docker can be time-consuming, you can generate the verification key locally for testing or development using: ```bash -cargo build --bin strata-datatool -F "sp1" --release +cargo build --bin strata-datatool -F "sp1-builder" --release ``` Additionally, the generated ELF can be exported after building the datatool as specified above: