ton_lib_core 0.0.7

A collection of types and utilities for interacting with the TON network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// The lowest brick in the library stack
/// Provides the basic types to interact with the TON blockchain:
/// TonHash, TonCell, TonCellRef, CellBuilder, CellParser
///
mod build_parse;
mod meta;
mod ton_cell;
mod ton_cell_num;
mod ton_cell_utils;
mod ton_hash;

pub use build_parse::*;
pub use meta::*;
pub use ton_cell::*;
pub use ton_cell_num::*;
pub use ton_cell_utils::*;
pub use ton_hash::*;