-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathclient.rs
68 lines (62 loc) · 2.04 KB
/
client.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
use std::sync::Arc;
use std::time::Duration;
use sp1_sdk::SP1ProofWithPublicValues;
use crate::network_prover::AggSpanProver;
use crate::rpc::{
AggregationProofProposer, AggregationProofProposerRequest, AggregationProofProposerResponse,
};
use crate::{error, Error, ProposerClient, RequestId};
/// Implementation of the proposer client.
/// The Proposer client is responsible for retrieval of the AggregationProof.
/// AggregationProof is the aggregated proof of the multiple
/// block span full execution proofs.
///
/// The proposer client communicates with the proposer API to
/// request creation of the AggSpanProof (getting the proof ID in return),
/// and directly communicates with the SP1 cluster using NetworkProver
/// to retrieve the generated proof.
#[derive(Clone)]
pub struct Client<Proposer, Prover> {
proposer_rpc: Arc<Proposer>,
prover_rpc: Arc<Prover>,
proving_timeout: Option<Duration>,
}
impl<Proposer, Prover> Client<Proposer, Prover>
where
Proposer: AggregationProofProposer,
Prover: AggSpanProver,
{
pub fn new(
proposer: Proposer,
prover: Prover,
timeout: Option<Duration>,
) -> Result<Self, error::Error> {
Ok(Self {
proposer_rpc: Arc::new(proposer),
prover_rpc: Arc::new(prover),
proving_timeout: timeout,
})
}
}
#[async_trait::async_trait]
impl<Proposer, Prover> ProposerClient for Client<Proposer, Prover>
where
Proposer: AggregationProofProposer + Sync + Send,
Prover: AggSpanProver + Sync + Send,
{
async fn request_agg_proof(
&self,
request: AggregationProofProposerRequest,
) -> Result<AggregationProofProposerResponse, Error> {
self.proposer_rpc.request_agg_proof(request).await
}
async fn wait_for_proof(
&self,
request_id: RequestId,
) -> Result<SP1ProofWithPublicValues, Error> {
self.prover_rpc
.wait_for_proof(request_id.0, self.proving_timeout)
.await
.map_err(|e| Error::Proving(request_id, e.to_string()))
}
}