Hi I am trying to get all transactions for a given address and am working my way backwards in time. I'm making the following request (using last tx_hash and ...
one year ago
Hey all - does anyone know why ther are different addresses between the PoW giver contracts listed here: https://ton.org/docs/#/howto/pow-givers and the ones...
one year ago
As far as I understand, on TON blockchain there is a globally set gas limit, and its value usually stays the same, but hypothetically it could be changed. If...
Is it possible to call a function in a recursive way in FunC? If so, how exactly should I do it? I haven't found it in the FunC documentation, is it covered ...
There is a wallet with a large NFT collection in it. Now I need to transfer all of it to a different wallet. Sending all the NFTs one-by-one feels very ineff...
Suppose there is a web3 blog platform where people follow specific writers. Each follower has its own smart contract. Usually data such as "X follows Y" woul...
one year ago
I've been trying to do the following using the uncons function, but it doesn't destructure as I expect it to: (var l, var rvalues) = uncons(values); --- > Th...
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
Given a frontend that lets users upload files to a server, is there a way to manage uploaded files with a TON smart contract? For example, make the uploaded ...
one year ago
Do I get it right that if my smart contract needs to store a string longer than 1023 bits, I should split that thing in parts and make a chain of cells conta...
As far as I understand, a seed phrase (mnemonic words) and a private key are dependent on each other. If I know one of them, can I generate the other from it...
one year ago
I'm trying to compile compile fift from the master, I'm getting this linking error: ton/third-party/rocksdb/env/io_posix.cc:686: undefined reference to 'io_u...
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...
one year ago
Out of interest, what is the storage fee for a wallet per year? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/23290
How is a reference serialized (stored)? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9475
It looks like Message X is almost the same as MessageAny. What is the difference? --- > This question was imported from Telegram Chat: https://t.me/tondev_en...
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...
I wrote a program in Fift, which included the following code: asm 1 PUSHINT I receive the following error: "PUSHINT: stack underflow" This doesn't make sense...
How do you generate the public address of TON wallet from the seed phrase? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9723
What is the right way to concatenate strings? I've tried this but didn't succeed: .store_slice("start test " + VAR1 + " finish text") --- > This question was...
It's known that smart contracts on TON have to pay storage fee, it is deducted during each transaction. And if a contract doesn't have any transactions for a...
Where is the line of code that specifies the price of a jetton? Is the price of a jetton always what I choose or does it change with supply and demand? --- >...
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
Can anyone point me to docs on Fift and the Fift assembler? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9973
one year ago
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 ...
How can I activate my wallet? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/2577
Does TON support EVM compatible? ----- > This question was import from: t.me/tondev_eng/2480 >
one year ago
Assuming that I am an experienced developer that can properly read protocol level virtual machine programming, what is the repository of the TVM? --- > This ...
Does anyone know or have an example how can I store a static address in FunC? I'm thinking about using the asm command, but I'm not sure what the syntax is f...
Is the function recv_internal required to have certain arguments or is it completely up to what you want the message sender to send you? I've noticed some Fu...