1use crate::{models::transactions::Transaction, *}; 2 3/// Get a specific account by its address 4pub async fn get(client: &Client, hash: &str) -> Result<Transaction> { 5 client 6 .fetch(&format!("/transactions/{}", hash), NO_QUERY) 7 .await 8}