I'd like to see the main smart contract used by STON.fi DEX. Is it open source, and if it is, where can I look at it? --- > This question was imported from T...
27 days ago
I know theoretically that a smart contract can deploy another smart contract. But is there an public example of it to learn from? --- > This question was imp...
one month ago
As far as I understand, NFTs in TON are just smart contracts that implement a specific interface. Suppose I create a wallet, an explorer or some other produc...
one month ago
The set_code() function can be used to alter the code of a smart contract. But while it's easy in theory, it would be great to see an example to fully unders...
one month 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...
2 months 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...
2 months ago
Blockchains are meant to be trustless, so it's good when the user can check how some smart contract works instead of trusting its author. Verifying smart con...
3 months ago
Can I collect information on all the incoming external messages that a specific smart contract receives? Everything that goes through its recv_external(). --...
3 months 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...
3 months 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...
4 months 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...
4 months 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 ...
4 months 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...
4 months 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...
4 months 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...
4 months ago
How do you define multiple cells in the storage of a contract? clike const data = beginCell() .storeUint(someVar, 64) .storeMaybeSlice() .endCell(); In other...
4 months ago
I've read in the TON whitepaper that smart contacts in TON can change their code. But if I simply change the code myself and deploy the contract, it gets a n...
5 months 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...
5 months 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 ...
5 months 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 ...
5 months ago
Given a smart contract, how do I deploy it using the TonWeb SDK? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8841
5 months 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...
5 months ago
What is the byte size of a smart contract that can be deployed on TON? --------- > This question was imported from Telegram Chat: https://t.me/tondev_eng/26332
5 months ago
For example, if you examine the code in detail here: https://github.com/ton-blockchain/payment-channels/blob/e605580c3fb1feb22d80be9a0cddfcd05671c347/func/as...
5 months 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,...
5 months 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...
5 months ago
In the Solidity programming language on the EVM, we need to be mindful of gas usage for each line of code. For now, the difference in gas cost in TON is stil...
5 months 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...
6 months 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/...
6 months ago
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...
6 months ago