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
16
17
// https://github.com/ton-blockchain/TEPs/blob/master/text/0085-sbt-standard.md

mod sbt_destroy_msg;
mod sbt_msg_body;
mod sbt_owner_info_msg;
mod sbt_ownership_proof_msg;
mod sbt_prove_ownership_msg;
mod sbt_request_owner_msg;
mod sbt_revoke_msg;

pub use sbt_destroy_msg::*;
pub use sbt_msg_body::*;
pub use sbt_owner_info_msg::*;
pub use sbt_ownership_proof_msg::*;
pub use sbt_prove_ownership_msg::*;
pub use sbt_request_owner_msg::*;
pub use sbt_revoke_msg::*;