1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use chik_streamable_macro::streamable;

use crate::ClassgroupElement;
use crate::{Bytes, Bytes32};

#[streamable]
pub struct VDFInfo {
    challenge: Bytes32,
    number_of_iterations: u64,
    output: ClassgroupElement,
}

#[streamable]
pub struct VDFProof {
    witness_type: u8,
    witness: Bytes,
    normalized_to_identity: bool,
}