ton_lib 0.0.38

A collection of types and utilities for interacting with the TON network
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// https://github.com/ton-blockchain/TEPs/blob/master/text/0062-nft-standard.md

mod nft_excesses_msg;
mod nft_get_static_data_msg;
mod nft_msg_body;
mod nft_ownership_assigned_msg;
mod nft_report_static_data_msg;
mod nft_transfer_msg;

pub use nft_excesses_msg::*;
pub use nft_get_static_data_msg::*;
pub use nft_msg_body::*;
pub use nft_ownership_assigned_msg::*;
pub use nft_report_static_data_msg::*;
pub use nft_transfer_msg::*;