Did anybody ever complete stress test on ton network? Per my knowledge it has very limited capacity. In addition, the base config allows you to have a master...
2 years ago
Is there a dedicated chat group for validators? I'm looking because I want to discuss updates to MyTonCtrl. --- > This question was imported from Telegram Ch...
This question has been answered many times before. But people keep asking it again and again, so it is probably a good idea to have the question here, where ...
2 years ago
Currently it is debated whether or not it is a good idea to temporary freeze the inactive mining wallets. Regardless of the discussion outcome, how exactly s...
2 years ago
What if I develop a smart contract on TON but don't want the data included in the initState to be seen by others? Does it mean I need to use encryption? --- ...
2 years ago
I would like to see the whole history of past voting by the validators. How exactly can I do it? --- > This question was imported from Telegram Chat: https:/...
Hi everyone I use API v4. In the docs there is example of getting block by unix time: https://mainnet-v4.tonhubapi.com/block/utime/1680031682. Here everythin...
one year ago
I have experience as a developer in the EVM ecosystem and now I want do develop on TON. What do I need to learn in the first place? What things change, and w...
what is the shortcut key for building project on blueprint
What is the difference between addresses that start with EQ and those that start with UQ? There are also addresses that start with kf, but when searched up o...
I know there's a project TonAPI that provides REST API to TON blockchain. Is it the only one or are there other projects like that? --- > This question was i...
2 years ago
// Create a transfer const seqno: number = await contract.getSeqno(); const transfer = await contract.createTransfer({ seqno, secretKey: keyPair.secretKey, m...
one year ago
When running the command: cmake --build . --target adnl-http-proxy --config Release The build fails with error: msbuild: can not find adnl-http-proxy.vscxpro...
I'm getting the following error when compiling Fift. I'm using this command: ./ton-build/crypto/fift counter.fif I followed this tutorial, but when I run fun...
Suppose we check for two conditions at the same time: if( (a == b) & (b == c) ). If a is not equal to b, that makes the first condition false. And that means...
2 years ago
Where is it possible to retrieve current TON coin price in USD? Preferably an open API, not a paid one. --- > This question was imported from Telegram Chat: ...
2 years ago
Blockchains are considered "append-only" and immutable. But I've heard that in the TON world smart contracts can change their own code. So, is it possible fo...
2 years ago
I have a generated keypair. How to import the secretKey in code? I tried passing it as a string (hex version) but didnt work > This question was imported fro...
The pytonlib is the commonly used python package for TON, but they don't have many examples. How do I create a TON address, check the transactions of the add...
How can I call a function from a smart contract using Python? > This question was imported from Telegram Chat: https://t.me/tondev_eng/27664
Some programming languages have built-in functions like is_int() helping to check quickly if a specific variable is of type integer or not. Is there somethin...
2 years ago
Let func "call" such as: int call((int -> int) f, int x) { return f(x); } But I need to store "f" on smc deployment stage, as initial state. How can I store ...
one year ago
Hey all - does anyone know why ther are different addresses between the PoW giver contracts listed here: https://ton.org/docs/#/howto/pow-givers and the ones...
2 years ago
here is my FunC code: C-like forall X -> int is_null (X x) asm "ISNULL"; forall X -> (tuple, ()) push_back (tuple tail, X head) asm "CONS"; forall X -> (tupl...
While building a dApp some questions arise such as "where to store static files for UI" and "where and how to cache data for the app to be responsive". Is th...
2 years ago
I found online mentions of projects using Solidity to build for TON instead of using FunC and Fift. Is this really possible to do? I already know Solidity an...
2 years ago
i sent a transaction from my telegram wallet to an Exchange wallet but forgot to Comment, the transaction is not reflecting on the exchange wallet, is there ...
one year ago
Hi guys. They sent me NFT to the TON address: EQDCgYOsp7papvk4O2_R1qcrtItnRzeZz-knOb4q7xsI_0so It turns out that this wallet does not have the functionality ...
one year ago
Is there any specific reason why single line comments in FunC start with ;; and not something more common like //? It feels very odd. --- > This question was...
2 years ago
In languages such as x86 assembly there is a NOP instruction that does absolutely nothing. Is there something like that when using the Fift language? --- > T...
2 years ago