We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example:
use flow_rust_sdk::*; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { let mut connection = FlowConnection::new("grpc://localhost:3569").await?; let result = connection.get_account("f8d6e0586b0a20c7").await?; println!("Got Address: {:?}", hex::encode(result.account.unwrap().address)); Ok(()) }