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
use ton_lib_core::TLBDerive;

/// ```raw
/// revoke#6f89f5e3
///   query_id:uint64
/// = InternalMsgBody;
/// ```
#[derive(Clone, Debug, PartialEq, TLBDerive)]
#[tlb_derive(prefix = 0x6f89f5e3, bits_len = 32, ensure_empty = true)]
pub struct SbtRevokeMsg {
    pub query_id: u64,
}