aptos-client-icp 0.0.1

The Aptos Node API is a RESTful API for client applications to interact with the Aptos blockchain.
Documentation
#![allow(unused_imports)]
#![allow(clippy::too_many_arguments)]

use getrandom::register_custom_getrandom;

extern crate serde;
extern crate serde_json;
extern crate serde_repr;
extern crate url;

pub mod apis;
pub mod client;
pub mod http;
pub mod models;

fn custom_getrandom(_buf: &mut [u8]) -> Result<(), getrandom::Error> {
    panic!("getrandom not supported")
}
register_custom_getrandom!(custom_getrandom);