I'm using the ton-connect to connect the wallet from a bot. however after the user confirms the connection in the wallet, he's being redirected to walletbot....
one year ago
How do you access individual elements of a tuple in FunC using a while loop? As in, say there are 5 values in a tuple. How do I access the "nth" value in my ...
2 years ago
I'm trying to compile a lite client on a macbook with M1, which gives an error: march-native is not supported How can I compile on mac book M1 (ARM)? Is ther...
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 have a wallet that has a jetton in it but no TON coins, so I can't send the jetton from it. I want to send a bit of TON to the wallet and after that send t...
2 years 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 year ago
I have a usual user-friendly bounceable contract address. I need to get the raw HEX form of it. How do I convert it? --- > This question was imported from Te...
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
TonKeeper is a widely used wallet for TON mainnet, but can I use it with testnet for development purposes? How can I make it connect to testnet? --- > This q...
If there are two dicts and one of them is bigger than other, would the operations like insert require more gas for the bigger one, or would the gas fees be t...
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
On the Ton Whales website there is a "Top 1000 accounts" list sorted by the balance size: https://tonwhales.com/explorer/top How exactly such a list can be c...
2 years ago
There is an open source tool minter.ton.org for deploying custom Jettons to mainnet. Is there something like it for testnet? --- > This question was imported...
I wanna build a ton dapp on tg bot, but I cant find the way to switch net work in the official wallet bot. This is the code I forked. https://github.com/ton-...
In the EVM ecosystems there are oracles like Chainlink that let smart contracts get random numbers from outside of the blockchain. Is there anything like tha...
one year ago
Could I run a TON Proxy on a Raspberry Pi 400? And what are its minimum system requirements in general? --- > This question was imported from Telegram Chat: ...
one year ago
How can I print out something in FunC? https://t.me/tondev_eng/9305
2 years ago
I haven't used the TonHub Wallet for quite some time. Now, when I open the app, it prompts me for a migration process. However, upon clicking the migration b...
Are there any tips how to install/configure the smart contract development environment on an Apple M1 device? I'm having an issue with CMake here: CMake Erro...
2 years ago
What would be your suggestions on some basic pet projects for studying main concepts of ton? These would be smart contracts to write immidiately after doing ...
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...
Does anyone know if multiple addresses correspond to a 24-word mnemonic or if this is a 1:1 relationship between them? On networks like Ethereum, a mnemonic ...
We are making a Jetton for a game that users can deposit and withdraw from their wallet. But i was wondering how can we handle the fees for the transactions ...
Some projects like exchanges ask users to include memo (a comment) in the TON coin transaction. What is the purpose, isn't the address enough for identificat...
2 years ago
When working with TON blockchain, I need to provide a network config file, for example when using the lite client: lite-client -C global.config.json -c 'send...
2 years ago
Why there is always only one shard in masterchain for any seqno? For example: https://toncenter.com/api/v2/getMasterchainInfo gives seqno 19586270 then https...
2 years ago
Suppose I need to store 50 000 objects and have the ability to sort them (e.g., find an object with the minimal value of some parameter). Is it possible and ...
2 years ago
Is there any specific reason why single line comments in FunC start with ;; and not something more common like //? It feels very odd. --- > This question was...
2 years ago
Suppose I've created an NFT collection for testing purposes. After the testing I don't need it anymore and would like to get rid of it. Is there "NFT burning...