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
use crate::contracts::methods::get_jetton_data::GetJettonData;
use crate::contracts::methods::get_wallet_address::GetWalletAddress;
use crate::contracts::ton_contract::ContractCtx;
use ton_lib_core::ton_contract;

#[ton_contract]
pub struct JettonMaster;
impl GetJettonData for JettonMaster {}
impl GetWalletAddress for JettonMaster {}