fiber-types 0.9.0-rc2

Core domain types for the Fiber Network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[allow(clippy::all)]
pub mod fiber;
#[allow(clippy::all)]
pub mod gossip;
#[allow(clippy::all)]
pub mod invoice;
// fiber module requires types from blockchain.
// We need to re-export these types.
mod blockchain {
    pub use ckb_gen_types::packed::{
        Byte32, Byte32Reader, Bytes, BytesReader, BytesVec, BytesVecReader, OutPoint,
        OutPointReader, Script, ScriptOpt, ScriptOptReader, ScriptReader, Transaction,
        TransactionReader, Uint128, Uint128Reader, Uint32, Uint32Reader, Uint64, Uint64Reader,
    };
}