chik-protocol 0.2.7

Chik network protocol message types
Documentation
use chik_streamable_macro::Streamable;

use crate::chik_error;
use crate::streamable_struct;
use crate::Streamable;

#[cfg(feature = "py-bindings")]
use crate::from_json_dict::FromJsonDict;
#[cfg(feature = "py-bindings")]
use crate::to_json_dict::ToJsonDict;
#[cfg(feature = "py-bindings")]
use chik_py_streamable_macro::PyStreamable;
#[cfg(feature = "py-bindings")]
use pyo3::prelude::*;

streamable_struct!(FeeRate {
    // Represents Fee Rate in mojos divided by KLVM Cost.
    // Performs XCK/mojo conversion.
    // Similar to 'Fee per cost'.
    mojos_per_klvm_cost: u64,
});

streamable_struct! (FeeEstimate {
    error: Option<String>,
    time_target: u64,            // unix time stamp in seconds
    estimated_fee_rate: FeeRate, // Mojos per klvm cost
});

streamable_struct! (FeeEstimateGroup {
    error: Option<String>,
    estimates: Vec<FeeEstimate>,
});