ckb_fee_estimator/
lib.rs

1//! CKB's built-in fee estimator, which shares data with the ckb node through the tx-pool service.
2
3pub mod constants;
4pub(crate) mod error;
5pub(crate) mod estimator;
6
7pub use error::Error;
8pub use estimator::FeeEstimator;