Technically speaking, masterchain and basechain are similar in many ways. Why does using the masterchain cost much more gas? --- > This question was imported...
one year ago
What is the minimum stake for a validator? On GitHub (https://github.com/ton-blockchain/mytonctrl/blob/master/docs/en/nominator-pool.md) I found that the min...
Suppose there is a mutex that locks some operations in the smart contract waiting for some other execution chains outside of the smart contract to finish. Is...
one year ago
I am looking for an easy walkthrough for setting up a TON Site. I have setup the usual webserver using Nginx, with /var/www/site website directory. What shou...
FunC language evolves and gets new versions. But there seems to be no release notes for those versions on the TON website and FunC doesn't have its own websi...
So, is there no way to speed up the rate of confirmations? Are you saying that the exchanges are simply asking for too high a number? Also, is there any way ...
one year ago
How can I transfer TON in PHP? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8808
one year ago
I have a balance on the Whales pool. Can you take it out?
one year ago
When "throwing" inside a function, is the transaction cancelled? For example, if I send 10 TON from a main account but in a smart contract there an error is ...
one year ago
How do you hardcode an address in a smart contract? An example in both FunC would be helpful. https://t.me/tondev_eng/4099
one year ago
Is there an API to programmatically get the current conversion rate of TON to a fiat currency? --- > This question was imported from Telegram Chat: https://t...
one year ago
I would like to take a look at the source code of wallet contracts (wallet v3 and v4). As far as I understand, both these contracts are open source, but wher...
I have a simple transfer from a TON wallet to a contract. It has a comment: "2". Is there a way to parse this comment within the recv_internal function? Here...
one year ago
how can I calculate the gas price for get/set operations to Hashmap? https://docs.ton.org/learn/tvm-instructions/instructions for these operations the gas pr...
I know there are multiple TON wallets for different platforms. Can you name some open source ones for iOS? --- > This question was imported from Telegram Cha...
one year ago
How can I run and launch a TON Site on windows server with IIS web server?
How do you define multiple cells in the storage of a contract? clike const data = beginCell() .storeUint(someVar, 64) .storeMaybeSlice() .endCell(); In other...
one year ago
It is well known that code written in FunC gets compiled to the Fift language (which is more low-level). But is there a way to go back and turn Fift code fil...
Follow the docs there:https://ton.org/docs/develop/func/overview back by the code: () send_money(slice address, int amount) impure inline { var msg = begin_c...
Is there is some way to remove unused smart-contract from TestNet/MainNet to reduce the bloating of the network, and to remove its functionality? --- > This ...
one year ago
I remember there was a function equal_slices in stdlib for comparing two slices, but now at compilation time I get an error saying such a function does not e...
In TON software development, everything is a cell. Every cell can reference up to 4 other cells, creating a parent-child relationship. What if I have a speci...
Is there an upgradeable standard for TON contracts? For example, in Ethereum, you can deploy proxy-contracts and then upgrade them through OpenZeppelin's upg...
one year 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
What makes TON a game changer in competition with numerous Layer 1 competitors is its synergy with Telegram. ? This is because it is tailored to . One of the...
one year ago
what is the shortcut key for building project on blueprint
Hi guys, how can I sign a Cell with ton-crypto, or ton-core or in someway, that later can be correctly verified by check_signature or check_data_signature fr...
As recommended, I've been using the RPC provided by toncenter.com. Is there a way to get around this limitation? --- > This question was imported from Telegr...
one year ago
Is the code of smart contracts visible to the explorers? Can I use some explorer to see the code of any specific smart contract I'm interested in? --- > This...
one year ago
One of the primary differentiators of TON is the fact that it is an asynchronous block chain. This introduces concepts such as lamport time and crazy orderin...
one year ago