kudu 0.2.0

Library for interacting with Antelope blockchains
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-FileCopyrightText: 2024-2026 DigiGaia SCCL
// SPDX-License-Identifier: AGPL-3.0-or-later

//!
//! This module provides tools to encode/decode `Antelope` types into/from an ABI.
//!

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

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