arch_sdk 0.6.4

A Rust SDK for building applications on the Arch Network blockchain platform. Provides tools and interfaces for developing, testing, and deploying programs with native Bitcoin integration.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod async_rpc;
mod config;
mod error;
pub(crate) mod rpc;
pub(crate) mod runtime;
mod transport;
mod websocket;

pub use async_rpc::*;
pub use config::*;
pub use error::*;
pub use websocket::*;