smplx-sdk 0.0.3

Simplex sdk to simplify the development with simplicity
Documentation
1
2
3
4
5
6
7
8
use dyn_clone::DynClone;
use simplicityhl::WitnessValues;

pub trait WitnessTrait: DynClone {
    fn build_witness(&self) -> WitnessValues;
}

dyn_clone::clone_trait_object!(WitnessTrait);