charms 13.0.0

Programmable assets on Bitcoin and beyond
Documentation
1
2
3
4
5
6
7
8
use crate::utils::{BoxedSP1Prover, Shared};
use charms_app_runner::AppRunner;
use std::sync::Arc;

pub struct Prover {
    pub sp1_client: Arc<Shared<BoxedSP1Prover>>,
    pub runner: AppRunner,
}