tonlib-rs icon indicating copy to clipboard operation
tonlib-rs copied to clipboard

Rust SDK for The Open Network

Results 20 tonlib-rs issues
Sort by recently updated
recently updated
newest added

README create simple transfer example does not compile. Code: ```rs use num_bigint::BigUint; use std::time::SystemTime; use tonlib::address::TonAddress; use tonlib::cell::BagOfCells; use tonlib::message::TransferMessage; use tonlib::wallet::TonWallet; use tonlib::client::TonClient; use tonlib::client::TonClientInterface; use tonlib::mnemonic::Mnemonic; use tonlib::wallet::WalletVersion;...

As the newly version of wallet is launch (W5). Which, for mobile user of TonKeeper, if they create new wallet right now, it'll be fixed at version W5. I tried...

I ran `cargo fuzz` tests to validate BagOfCells decoding implementation, and found several cases that lead to arithmetic operation overflows and out-of-bounce access. All the inputs are hex-encoded. - [...

Hi, Can you tell me which version of libsecp256k1-dev` is needed for tonlib-sys to compile? I am using: ``` Package: libsecp256k1-dev Version: 0.2.0-2 ``` Build error: ``` /usr/bin/ld: libton_crypto_core.a(secp256k1.cpp.o): in...

I use the code in readme to create a jetton transfer. but the message is rejected by Ton use num_bigint::BigUint; use std::time::SystemTime; use tonlib::address::TonAddress; use tonlib::cell::BagOfCells; use tonlib::client::TonClient; use tonlib::client::TonClientInterface;...

Hello I am facing an issue - I can not reach the test network using tonlib = "0.15" ```rust use tonlib::client::TonClientBuilder; use tonlib::client::TonConnectionParams; use tonlib::config::TESTNET_CONFIG; use tonlib::client::TonClient; use tonlib::contract::TonContractFactory; use...

Hi, how to get the right seqno which is set to `let seqno:i32 = 30000000;` in the `create_jetton_transfer` example function? [let jetton_data = master_contract.get_jetton_data().await?;](https://github.com/ston-fi/tonlib-rs?tab=readme-ov-file#send-message-to-ton) As I understand the seqno must...

I've seen a lot of libs support smc.* methods (not sure what SMC stands for). Like I can use smc.runGetMethod, however I can't specify the block height at which I...

![image](https://github.com/user-attachments/assets/b4feed56-0773-4164-be01-473a2b44346d) env: macos x86, cargo 1.79.0, cargo.toml: tonlib-core = { git="https://github.com/ston-fi/tonlib-rs.git", branch="main" } tonlib-client = { git="https://github.com/ston-fi/tonlib-rs.git", branch="main" } tonlib-sys = { version="2024.9" } testnet config: https://ton.org/testnet-global.config.json ` async fn...

The latest version published to https://crates.io/crates/tonlib is `tonlib = "0.17.6"`, but the Usage section in the README refers to version `0.19`: https://github.com/ston-fi/tonlib-rs#usage.