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
use chik_sdk_types::puzzles::{PreventConditionOpcode, Timelock};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ParsedWrapper {
    ForceAssertCoinAnnouncement,
    ForceCoinMessage,
    PreventConditionOpcode(PreventConditionOpcode),
    PreventMultipleCreateCoins,
    Timelock(Timelock),
}