telegram-rs-2 0.1.1

A comprehensive Rust library for building Telegram bots and Mini Apps with optional wallet integration
Documentation
1
2
3
4
5
6
7
8
9
10
//! Wallet integration module (requires "wallet" feature)
//!
//! This module provides TON Connect v2 integration for wallet operations.
//! Allows bots and Mini Apps to interact with TON wallets for transactions and signing.

pub mod session;
pub mod ton;

pub use session::WalletSession;
pub use ton::TonConnector;