concordium_base 10.0.0

A library that defines common types and functionality that are needed by Concordium Rust projects.
Documentation
//! Types and functions for working with Protocol Level Tokens (PLT).

mod cbor;
mod token_amount;
mod token_event;
mod token_holder;
mod token_id;
mod token_metadata_url;
mod token_module_account_state;
mod token_module_initialization_parameters;
mod token_module_ref;
mod token_module_state;
mod token_operations;
mod token_reject_reason;

pub use cbor::*;
pub use token_amount::*;
pub use token_event::*;
pub use token_holder::*;
pub use token_id::*;
pub use token_metadata_url::*;
pub use token_module_account_state::*;
pub use token_module_initialization_parameters::*;
pub use token_module_ref::*;
pub use token_module_state::*;
pub use token_operations::*;
pub use token_reject_reason::*;