I am new to developing smart contracts on the TON blockchain and I am looking for assistance in creating a contract that can automatically distribute a jetto...
one year ago
Using the ton.cx explorer as an example, when you click on the tab Contract, in the Data section, a lot of information is displayed. Unfortunately, it is all...
2 years ago
Is there any call to get the contract address inside it? I cant find anything like that in tvm https://t.me/tondev_eng/363
one year ago
Is my understanding correct that smart contracts are written in FunC, then compiled into Fift, and deployed on the blockchain, and they can later be interact...
one year ago
Using the JSON API, I'm attempting to call a get method on a non existing method on a smart contract. I send a POST request to /runGetMethod. { "address": "....
one year 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...
one year ago
"Why is the data empty even though I deployed the jetton contract?" the contract is deployed correctly but data is empty https://github.com/toncenter/tonweb/...
one year ago
In whitepaper, 2.1.1. Account addresses. we got description in below: The source address and destination address are always present in any message. Normally,...
one year ago
What would be the best method to check if my address received a payment with a specific message? Is 'getTransactions' method okay? ---- This question was imp...
one year ago
There are TIP standards, but are there interfaces (libraries) that I can use when writing smart contracts with FunC? Or should I just attept to follow the st...
one year ago
Got this in whitepaper: This appendix contains a formal description of the elliptic curve cryptography currently used in TON, particularly in the TON Blockch...
one year ago
What happens if we verify the source code in the explorer, but the contract's code gets updated using set_code() instruction? Does the verified source code d...
one year ago
For example, if you examine the code in detail here: https://github.com/ton-blockchain/payment-channels/blob/e605580c3fb1feb22d80be9a0cddfcd05671c347/func/as...
one year ago
I can't find the zero address, or at least send tokens to it correctly. I would like to use the address it to implement burn mechanics for a Jetton. How do I...
one year ago
If I put a logical calculation, such as a multiplication, on the TON blockchain, do I not need a server to perform that remote calculation? --- > This questi...
one year ago
Hi is it possible to calculate input and output message hash before sending it. For example, this is my transaction https://testnet.tonscan.org/tx/op5iqZD9X7...
one year ago
I would like to develop a lottery smart contract on TON. This would likely require a source of randomness. How would I start? --- > This question was importe...
one year ago
Is there a size limit for bocs? I've heard values such as 64kb, but I don't know where this limit is defined. --- > This question was imported from Telegram ...
one year ago
Does TON support EVM compatible? ----- > This question was import from: t.me/tondev_eng/2480 >
one year ago
Remix is a great online code editor for developers who want to work with EVMs. Does TON have something similar for the TVM? --- > This question was imported ...
one year ago
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'm looking for a good tutorial to make an NFT smart contract on TON. --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/10064
one year ago
Hi, I transferred my TG NFT username to another wallet, but the transfer has not happened yet. The transaction generated exit code 206. Is this normal? Can s...
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
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
I'd like to learn developing on TON by creating some small pet projects. What kinds of such projects would be the most helpful and give the most useful exper...
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
This might be a very basic question, but if I want to handle incoming transactions to my smart contract and react to them in some way, how should I monitor t...
one year ago
I would like to store data in the smart contract storage in such a way that only the owner of that smart contract could read it. How to achieve it? --- > Thi...
one year ago