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
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
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
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
"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
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
It's known that blockchain is not the best place to store lots of data (there is TON Storage for that, while smart contract data should generally be as small...
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
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
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
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
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
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
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
We are looking to create a DAO on TON. Are there any tools available to create one for us, if not what would you recommend we do until the relevant tooling b...
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
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
I've been trying to create a simple wallet smart contract by myself to learn FunC, but my transactions keep failing with exit code 34. What am I doing wrong?...
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
What error code should a smart contract use when dealing with an unsupported opcode? Is it up to the smart contract developer, or there is a conventional one...
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
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
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
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
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...
one year ago
I have a smart contract that accepts messages from users. I would like to keep a history of requests. How can I save a list of pairs (address, text of the me...
one year ago
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...
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