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

#[derive(Debug, Clone, PartialEq, TLBDerive)]
pub enum JettonWalletMsgBody {
    Burn(JettonBurnMsg),
    BurnNotification(JettonBurnNotification),
    InternalTransfer(JettonInternalTransferMsg),
    Transfer(JettonTransferMsg),
    TransferNotification(JettonTransferNotificationMsg),
}