sv 0.2.2

A Rust library for working with Bitcoin SV
Documentation
//! Configuration for mainnet and testnet
//!
//! # Examples
//!
//! Iterate through seed nodes:
//!
//! ```no_run, rust
//! use sv::network::Network;
//!
//! for (ip, port) in Network::Mainnet.seed_iter() {
//!     println!("Seed node {:?}:{}", ip, port);
//! }
//! ```

mod network;
mod seed_iter;

pub use self::network::Network;
pub use self::seed_iter::SeedIter;