chik-sdk-driver 0.25.0

Driver code for interacting with standard puzzles on the Chik blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use chik_sdk_types::puzzles::{
    EnforceDelegatedPuzzleWrappers, Force1of2RestrictedVariable, Timelock,
};
use klvmr::NodePtr;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum ParsedRestriction {
    Force1of2RestrictedVariable(Force1of2RestrictedVariable),
    EnforceDelegatedPuzzleWrappers(EnforceDelegatedPuzzleWrappers, Vec<NodePtr>),
    Timelock(Timelock),
}