What's the main way to create a TON wallet (v4r2 version) using JavaScript/TypeScript? --- > This question was imported from Telegram Chat: https://t.me/tond...
one year ago
There are several different wallet contract versions on TON, with the latest wallet contract version currently being v4r2. They have different abilities and ...
one year ago
Some of the TON wallets are mobile applications, some are Chrome extensions, some are Telegram bots. But is there any browser extension that supports Firefox...
I don't fully understand the masterchain/workchain distinction yet. If someone sends me Toncoins, what chain does it send it in? Do I need to use the same ch...
one year ago
It's said that TON blockchain is capable of processing millions of transactions per second. That sounds like it only needs to spend a small fraction of a sec...
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...
TON Storage isn't meant to be a hosting for all kinds of websites, but it can host static content. Are there any real-life examples of static TON Sites that ...
one year ago
Can I collect information on all the incoming external messages that a specific smart contract receives? Everything that goes through its recv_external(). --...
one year ago
There are numerous APIs that let you get information on TON wallets, NFTs and so on. But is there a known API with methods that provide information on the va...
In FunC, if you apply the letter c to a string literal (writing it as "string"c), the crc32 check value of the string is calculated and used instead of the s...
one year ago
Anyone can use one of TON wallet apps, manually create a new wallet with it and get its seed phrase. But what if I need to programmatically create a random s...
one year ago
On other blockchains such as Ethereum I've encountered a concept of "block confirmations". It means that transaction is considered "complete" and irreversibl...
one year ago
TON API provides REST API access to TON Blockchain. Some of its methods require to fill the {account-id} variable. What should I put there, what value format...
one year ago
I would like to track every change regarding Telegram anonymous numbers. They exist as NFTs, so any transaction such as ownership change is stored in the TON...
one year ago
I'm new to TON. I know that each message in TON has its lt (Logical time) to track the order of events. But is logical time unique for each transaction or ca...
one year ago
Seqno is meant to increment when transactions happen. But does it always change with each one transaction, or is it possible that some smart contract is invo...
one year ago
Can an NFT collection on TON consist of a million items or it's too much? Is there a size limit and how big is it? --- > This question was imported from Tele...
one year ago
I have a question that might be silly. If I get it right, declined transactions do not increment the seqno of the sender wallet. Can it lead to a situation w...
one year ago
A good way to learn in development is to study code written by other people. There are open source smart contracts written in FunC that people can use for le...
one year ago
On TON the wallet address is derived from the combination of a key and a wallet contract. So the same key used with different wallet versions (v4r1, v3r2 and...
Developing for EVM-based blockchains, I got used to doing that using ethers: parseFloat(ethers.utils.formatUnits(reserves.token0, token0.decimals)); Is there...
one year ago
On TON blockchain the address of a smart contract depends on its code. The set_code() function can change the code of a contract. What happes to the address ...
one year ago
Minting NFTs can be done in a randomized way. Are there random minters in the TON ecosystem with an open source code? --- > This question was imported from T...
one year ago
If I want to study by example, are there any smart contracts for implementing auction on TON open for everyone to learn from? --- > This question was importe...
one year ago
I've created a new smart contract and I've sent three different transactions to it via TonKeeper, but it still has inactive status. What should I do? --- > T...
one year ago
On Ethereum, if you want to get rid of an NFT, you can send it to a special0x0000000000000000000000000000000000000000 address, and after that it can't be acc...
In the Bitcoin standard there is concept called "derivation path" defined in BIP32: it is used by hierarchical deterministic wallets to derive keys. How do T...
one year ago
Is it possible to programmatically monitor what smart contracts were deployed on TON on any given day? Not just general statistics "how much contracts were d...
one year ago
In FunC there is a function run_ticktock called in ticktock transactions of special smart contracts. But can such smart contracts work on a basechain, or is ...
TON testnet went down for some time. Since it's the testing network (not the main one) and it was temporary, it's obviously not a critical issue. But what's ...
one year ago