diff options
| author | Kamen Mladenov <kamen@syndamia.com> | 2025-02-10 17:15:21 +0200 |
|---|---|---|
| committer | Kamen Mladenov <kamen@syndamia.com> | 2025-02-10 17:15:21 +0200 |
| commit | 0baed210fa4946669e9a701bc688a9618f0d9583 (patch) | |
| tree | 6c83122d6df0906ac00a0f2a6ed6390b73dbdf88 /zkvms/zkm/sdk/src/proto | |
| parent | 01b199735cffdec1376024b8214499190d08a876 (diff) | |
| download | zkVMs-benchmarks-0baed210fa4946669e9a701bc688a9618f0d9583.tar zkVMs-benchmarks-0baed210fa4946669e9a701bc688a9618f0d9583.tar.gz zkVMs-benchmarks-0baed210fa4946669e9a701bc688a9618f0d9583.zip | |
feat(zkm): Remove copy of sdk
Diffstat (limited to 'zkvms/zkm/sdk/src/proto')
| -rw-r--r-- | zkvms/zkm/sdk/src/proto/stage.proto | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/zkvms/zkm/sdk/src/proto/stage.proto b/zkvms/zkm/sdk/src/proto/stage.proto deleted file mode 100644 index dea3e92..0000000 --- a/zkvms/zkm/sdk/src/proto/stage.proto +++ /dev/null @@ -1,82 +0,0 @@ -syntax = "proto3"; - -package stage.v1; - - -service StageService { - rpc GenerateProof(GenerateProofRequest) returns (GenerateProofResponse) {} - rpc GetStatus(GetStatusRequest) returns (GetStatusResponse) {} -} - -enum Status { - SUCCESS = 0; - UNSPECIFIED = 1; - COMPUTING = 2; - INVALID_PARAMETER = 3; - INTERNAL_ERROR = 4; - SPLIT_ERROR = 5; - PROVE_ERROR = 6; - AGG_ERROR = 7; - FINAL_ERROR = 8; -} - -enum Step { - Init = 0; - InSplit = 1; - InProve = 2; - InAgg = 3; - InAggAll = 4; - InFinal = 5; - End = 6; -} - -message BlockFileItem { - string file_name = 1; - bytes file_content = 2; -} - -message GenerateProofRequest { - string proof_id = 1; - bytes elf_data = 2; - repeated BlockFileItem block_data = 3; - optional uint64 block_no = 4; - uint32 seg_size = 5; - - string signature = 7; - bytes public_input_stream = 8; - bytes private_input_stream = 9; - bool execute_only = 10; - bool precompile = 11; - repeated bytes receipt_input = 12; - repeated bytes receipt = 13; -} - -message GenerateProofResponse { - uint32 status = 1; - string error_message = 2; - string proof_id = 3; - string proof_url = 4; - string stark_proof_url = 5; - string solidity_verifier_url = 6; - bytes output_stream = 7; - string public_values_url = 8; -} - -message GetStatusRequest { - string proof_id = 1; -} - -message GetStatusResponse { - string proof_id = 1; - uint32 status = 2; - bytes proof_with_public_inputs = 3; - string proof_url = 4; - string stark_proof_url = 5; - string solidity_verifier_url = 6; - bytes output_stream = 7; - int32 step = 8; // Step - string public_values_url = 9; - uint64 total_steps = 10; - bytes receipt = 11; - bytes elf_id = 12; -}
\ No newline at end of file |
