arch_sdk 0.6.7

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
13
14
mod async_program_deployment;
mod async_utxo;
mod bip322;
mod keys;
pub(crate) mod program_deployment;
mod transaction_building;
pub(crate) mod utxo;

pub use async_program_deployment::*;
pub use async_utxo::*;
pub use bip322::*;
pub use keys::*;
pub use program_deployment::{get_state, ProgramDeployerError};
pub use transaction_building::*;