kudu 0.1.0

Library for interacting with Antelope blockchains
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//!
//! This module provides tools to encode/decode `Antelope` types into/from an ABI.
//!

mod definition;
mod error;
mod provider;
mod serializer;
mod typename;
pub mod data;

pub use definition::{ABIDefinition, abi_schema};
pub use error::ABIError;
pub use provider::ABIProvider;
pub use serializer::ABI;
pub use typename::TypeName;