chia-sdk-driver 0.34.0

Driver code for interacting with standard puzzles on the Chia blockchain.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use clvmr::NodePtr;

use crate::{Cat, Puzzle};

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct ParsedCat {
    pub cat: Cat,
    pub p2_puzzle: Puzzle,
    pub p2_solution: NodePtr,
    pub revoked: bool,
}