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.
usecrate::client::error::Result;useasync_trait::async_trait;useserde_json::Value;pubmodhttp;pubmodtcp;pubusetcp::TcpClient;#[async_trait]pubtraitRpcTransport: Send + Sync {/// Calls the RPC method on the server and returns the
/// resulting JSON in serialized format.
async fncall(&self, json:&Value)->Result<String>;}