-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The TEE Prover Gateway is a service component within our system infrastructure that functions as an intermediary between the TEE enclave and the server's HTTP API, introduced in commit eca98cc (#1993). It first registers TEE attestation using the /tee/register_attestation endpoint, then regularly invokes the server's HTTP API via the /tee/proof_inputs endpoint to obtain proof-related data, and finally submits the proof through the /tee/submit_proofs/<l1_batch_number> endpoint.
- Loading branch information
Showing
6 changed files
with
408 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[package] | ||
name = "zksync_tee_prover" | ||
version.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
homepage.workspace = true | ||
repository.workspace = true | ||
license.workspace = true | ||
keywords.workspace = true | ||
categories.workspace = true | ||
|
||
[dependencies] | ||
anyhow.workspace = true | ||
async-trait.workspace = true | ||
clap = { workspace = true, features = ["derive"] } | ||
k256.workspace = true | ||
reqwest.workspace = true | ||
serde = { workspace = true, features = ["derive"] } | ||
tokio = { workspace = true, features = ["full"] } | ||
tracing.workspace = true | ||
url.workspace = true | ||
zksync_basic_types.workspace = true | ||
zksync_config.workspace = true | ||
zksync_env_config.workspace = true | ||
zksync_node_framework.workspace = true | ||
zksync_proof_data_handler.workspace = true | ||
zksync_prover_interface.workspace = true | ||
zksync_tee_verifier.workspace = true | ||
zksync_types.workspace = true | ||
zksync_vlog.workspace = true |
Oops, something went wrong.