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
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...
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
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...
2 years 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...
2 years 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": "....
2 years 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/...
2 years 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...
2 years 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 ...
2 years ago
What if I develop a smart contract on TON but don't want the data included in the initState to be seen by others? Does it mean I need to use encryption? --- ...
2 years 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...
2 years ago
I'd like to put an address and a hash table into the c4 register. Can I put there both of them there separately or do I have to put the address into the hash...
2 years 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
FunC is the primary language used to program smart contracts on TON, but are there ways to use other programming languages to write smart contracts in progra...
2 years 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...
2 years 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...
2 years 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...
2 years 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 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
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,...
2 years 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...
2 years 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
2 years 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
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...
2 years 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
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...
2 years 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...
2 years 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...
2 years ago
If I want to make a board game, in order to show the fairness of the game, I put all the back-end computing on the blockchain. A board game could require ran...
2 years ago