Compare commits

..

1 Commits

Author SHA1 Message Date
github-actions[bot]
780f3a84bd ci: update version string in docs 2025-03-23 21:13:02 +00:00
3 changed files with 8 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
import ezkl
project = 'ezkl'
release = '21.0.2'
release = '21.0.1'
version = release

View File

@@ -728,7 +728,7 @@ pub enum Commands {
},
/// Creates an Evm verifier artifact for a single proof to be used by the reusable verifier
#[command(name = "create-evm-vka")]
CreateEvmVka {
CreateEvmVKArtifact {
/// The path to SRS, if None will use ~/.ezkl/srs/kzg{logrows}.srs
#[arg(long, value_hint = clap::ValueHint::FilePath)]
srs_path: Option<PathBuf>,
@@ -747,7 +747,7 @@ pub enum Commands {
},
/// Creates an Evm verifier that attests to on-chain inputs for a single proof
#[command(name = "create-evm-da")]
CreateEvmDa {
CreateEvmDataAttestation {
/// The path to load circuit settings .json file from (generated using the gen-settings command)
#[arg(short = 'S', long, default_value = DEFAULT_SETTINGS, value_hint = clap::ValueHint::FilePath)]
settings_path: Option<PathBuf>,
@@ -856,7 +856,7 @@ pub enum Commands {
},
/// Deploys an evm verifier that allows for data attestation
#[command(name = "deploy-evm-da")]
DeployEvmDa {
DeployEvmDataAttestation {
/// The path to the .json data file, which should include both the network input (possibly private) and the network output (public input to the proof)
#[arg(short = 'D', long, default_value = DEFAULT_DATA, value_hint = clap::ValueHint::FilePath)]
data: Option<String>,

View File

@@ -212,7 +212,8 @@ pub async fn run(command: Commands) -> Result<String, EZKLError> {
addr_vk,
)
.map(|e| serde_json::to_string(&e).unwrap()),
Commands::CreateEvmVka {
Commands::CreateEvmVKArtifact {
vk_path,
srs_path,
settings_path,
@@ -228,7 +229,7 @@ pub async fn run(command: Commands) -> Result<String, EZKLError> {
)
.await
}
Commands::CreateEvmDa {
Commands::CreateEvmDataAttestation {
settings_path,
sol_code_path,
abi_path,
@@ -433,7 +434,7 @@ pub async fn run(command: Commands) -> Result<String, EZKLError> {
)
.await
}
Commands::DeployEvmDa {
Commands::DeployEvmDataAttestation {
data,
settings_path,
sol_code_path,