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
12
13
14
use klvm_utils::TreeHash;

#[derive(Debug, Clone, Copy)]
pub struct Restriction {
    pub kind: RestrictionKind,
    pub puzzle_hash: TreeHash,
}

#[derive(Debug, Clone, Copy)]
pub enum RestrictionKind {
    MemberCondition,
    DelegatedPuzzleHash,
    DelegatedPuzzleWrapper,
}