get_hyper_block_by_nonce/
get_hyper_block_by_nonce.rsuse multiversx_sdk_http::{GatewayHttpProxy, DEVNET_GATEWAY};
#[tokio::main]
async fn main() {
let blockchain = GatewayHttpProxy::new(DEVNET_GATEWAY.to_string());
let result = blockchain.get_hyper_block_by_nonce(7468).await;
println!("block by nonce result: {result:#?}")
}