Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
Telegram Chat Import
Moderator
402 Questions, 1 Answer
  Active since 10 October 2022
  Last activity one year ago

Reputation

55 + 12 this October 0 2

Badges 2

Editor Newbie
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
Web3 aims to be decentralized, but it's not always so in reality. Sometimes there is a "higher power" that can intervene to some degree, such in the case of ...
one year ago
0 Votes
0 Answers
3K Views
0 Votes 0 Answers 3K Views
I already have a game made with Unity. Can it be "imported" into TON? If it is possible, how do I do that and where do I start? --- > This question was impor...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Some projects in the TON ecosystem provide people their smart contracts to see. For example, getgems.io have a GitHub repository with their smart contracts: ...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
The fragment.com website shows some of usernames that can be bought but hides others saying "and 1.68K+ more". Is there a way to get the full list of those 1...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
I know there is an unofficial Python library "TON Fragment". Are there any other libraries or an official API to interact with fragment.com programmatically?...
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
TON whitepapers present "Infinite Sharding Paradigm", but I couldn't quite figure it out by reading the whitepapers. Is there another explanation avaliable s...
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
I'm coming from EVM ecosystem. I know there are explorers on TON, but the ones I've seen yet provide information regarding a specific wallet address. And I'm...
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
Sometimes I encounter "out of gas" error, and it's hard to predict. Are there any best practices on how to deal with that and make sure in advance the code w...
one year ago
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
This is not strictly a programming question, but it is related to the TON development ecosystem. If I am a lone developer interested in TON blockchain, how c...
one year ago
0 Votes
0 Answers
3K Views
0 Votes 0 Answers 3K Views
Sometimes NFTs are used for granting access to some exclusive content. Let's say there is a Telegram channel or chat that should be available only to owners ...
one year ago
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
There are different approaches to division: * using floating-point numbers (so 23 / 4 = 5.75) * mathematical rounding (23 / 4 = 6 since it's the closest inte...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
I am using TonWeb to get data from a Jetton wallet: javascript let res = new TonWeb.token.jetton.JettonWallet( tonweb.provider, { ownerAddress: new TonWeb.Ad...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
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 ...
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
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...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
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...
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
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...
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
In the following API link, the server gets the list of items of a collection. https://tonapi.io/v2/nfts/collections/0%3A80d78a35f955a14b679faa887ff4cd5bfc0f4...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Jettons on TON usually have decimal precision value of 9, meaning the smallest amount of a Jetton is 0.000000001 of a coin. I know it's not the only possible...
one year ago
1 Votes
0 Answers
4K Views
1 Votes 0 Answers 4K Views
I have a storage node & bag in TON storage, and this bag can be obtained from network by other nodes. I set the "site" DNS entry to the bagId (with checkbox ...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
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
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
Is there a way to get the current TON coin price with the TON API? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/27900
one year ago
0 Votes
0 Answers
4K Views
0 Votes 0 Answers 4K Views
There is an item at the end of roadmap in the TON website that mentions "Bitcoin & EVM Workchains". Is there any reading material available on that? It's men...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
Can anyone can create a jetton? Even an ETH token? How do we know which one is the official bridge of ETH? --- > This question was imported from Telegram Cha...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Is there a way that I can use a TON wallet to log in to a website? Specifically, I am looking at the functionality that is already present on getgems.io. ---...
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
How can I call a function from a smart contract using Python? > This question was imported from Telegram Chat: https://t.me/tondev_eng/27664
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
How can I connect MyLocalTon using TonWeb? > This question was imported from Telegram Chat: https://t.me/tondev_eng/1380
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
I am using the TON API to fetch transaction data, and I have noticed some discrepancies when using the /getTransactions, /lookupBlock, and /getBlockTransacti...
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
how can I calculate the gas price for get/set operations to Hashmap? https://docs.ton.org/learn/tvm-instructions/instructions for these operations the gas pr...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
Hello, could you please guide me on where to find information about the fines imposed on validators and the duration of the rounds? I checked the global-conf...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
In languages such as x86 assembly there is a NOP instruction that does absolutely nothing. Is there something like that when using the Fift language? --- > T...
one year ago
Show more results questions
0 What is the storage fee for a wallet per year?

1 MB is 4 TON per year. A wallet is less than 1/4 KB which results in less than 0.001 TON per year.

one year ago
3 Votes
2 Answers
23K Views
3 Votes 2 Answers 23K Views
Consider I have a highload wallet smart contract deployed to the TON network and I send an external message to it in order to deliver 100 value transfers to ...
2 years ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
How can you obtain a v3r2 address from a v4r2 address of a wallet in the TON network? -- > This question was imported from Telegram Chat: https://t.me/tondev...
1 Votes
1 Answers
13K Views
1 Votes 1 Answers 13K Views
In Blueprint, we will need to write the Wrapper functions ourselves. More importantly, when we code the op code in our FunC code, we need to decode the strin...
one year ago