miden-remote-prover 0.11.1

Miden blockchain remote prover
Documentation
use tonic::{Request, Response, Status};

use crate::api::prover::ProofType;
use crate::generated::worker_status_api_server::WorkerStatusApi;
use crate::generated::{self as proto};

pub struct StatusRpcApi {
    proof_type: ProofType,
}

impl StatusRpcApi {
    pub fn new(proof_type: ProofType) -> Self {
        Self { proof_type }
    }
}

#[async_trait::async_trait]
impl WorkerStatusApi for StatusRpcApi {
    async fn status(&self, _: Request<()>) -> Result<Response<proto::WorkerStatus>, Status> {
        Ok(Response::new(proto::WorkerStatus {
            version: env!("CARGO_PKG_VERSION").to_string(),
            supported_proof_type: self.proof_type as i32,
        }))
    }
}