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
mod account_filter;
mod account_info;
mod block;
mod block_filter;
mod event;
mod inner_instruction;
mod processed_transaction;
mod program_account;
mod runtime_transaction;
mod signature;
mod subscription;
mod transaction_to_sign;

pub use account_filter::*;
pub use account_info::*;
pub use block::*;
pub use block_filter::*;
pub use event::*;
pub use inner_instruction::*;
pub use processed_transaction::*;
pub use program_account::*;
pub use runtime_transaction::*;
pub use signature::*;
pub use subscription::*;
pub use transaction_to_sign::*;

pub const MAX_TX_BATCH_SIZE: usize = 100;