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 3 months ago

Reputation

13 + 13 this December 0 2

Badges 2

Editor Newbie
3 Votes
3 Answers
11K Views
3 Votes 3 Answers 11K Views
In the Ethereum world there is remix.ethereum.org — a browser-based IDE which lets you try out your contracts instantly. Is there anything like that in the T...
10 months ago
2 Votes
2 Answers
19K Views
2 Votes 2 Answers 19K Views
I want to use a hardware wallet like Ledger or Trezor for storing my TON coins. But unfortunately both don't currently have official support for TON coin. Is...
1 Votes
1 Answers
5K Views
1 Votes 1 Answers 5K Views
Hello is there TON Proxy documentation anywhere? The release was in Q3 2022, shouldn't there be documentation or a white paper? --- > This question was impor...
1 Votes
1 Answers
4K Views
1 Votes 1 Answers 4K Views
Hello everyone, please explain: ```` () send_message_back(addr, ans_tag, query_id, body, grams, mode) impure inline_ref { ;; int_msg_info$0 ihr_disabled:Bool...
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
I am trying to deploy a static website to TON Sites. What is the "ADNL address" used for linking the domain and where can I get it? --- > This question was i...
9 months ago
1 Votes
0 Answers
10K Views
1 Votes 0 Answers 10K Views
I'm trying to create a human-readable transaction graph, but haven't succeed yet. Maybe someone has seen successful examples on other blockchains? --- > This...
9 months ago
1 Votes
0 Answers
9K Views
1 Votes 0 Answers 9K Views
Highload wallets use queryId instead of seqno. It is better suited for large amounts of transactions, but does it come with a cost in terms of gas? How much ...
9 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
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...
9 months ago
1 Votes
1 Answers
6K Views
1 Votes 1 Answers 6K Views
In TON, messages are used to send data and instructions to smart contracts. Sometimes, these messages can contain large amounts of data such as media files, ...
1 Votes
0 Answers
2K Views
1 Votes 0 Answers 2K 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 ...
6 months ago
1 Votes
1 Answers
7K Views
1 Votes 1 Answers 7K Views
"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/...
1 Votes
2 Answers
12K Views
1 Votes 2 Answers 12K Views
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...
1 Votes
1 Answers
12K Views
1 Votes 1 Answers 12K Views
TON uses logical time (also known as Lamport time) in messages to track the order of events. But how exactly that time is generated? --- > This question was ...
1 Votes
1 Answers
6K Views
1 Votes 1 Answers 6K Views
In TVM's whitepaper, we got this in Chapter 3.2.8: > Integers in cells are big-endian by default. > Notice that the default order of bits in Integer s serial...
1 Votes
1 Answers
8K Views
1 Votes 1 Answers 8K Views
I'm new to TON. I know that each message in TON has its lt (Logical time) to track the order of events. But is logical time unique for each transaction or ca...
1 Votes
1 Answers
14K Views
1 Votes 1 Answers 14K Views
I'm currently using wallet contract v3. It was deployed for me automatically when I was using TonKeeper wallet. I saw that the core team released a new walle...
1 Votes
2 Answers
16K Views
1 Votes 2 Answers 16K Views
Currently I'm using wallet contract v3 - it was deployed for me automatically when I was using TonKeeper wallet. I saw that the core team released a new wall...
1 Votes
3 Answers
16K Views
1 Votes 3 Answers 16K Views
When using a test network like testnet or sandbox - the TON coin is different from the official TON coin you buy in exchanges. Where can I get test TON coin ...
one year ago
1 Votes
2 Answers
12K Views
1 Votes 2 Answers 12K Views
How do I get an RPC endpoint for the TON network, and where can I get relevant documentation for it?
10 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
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...
10 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
What would happen if someone tried to send an internal message with zero ton coins? And if the receiving party calls accept_message(), who would pay the fee?...
10 months ago
1 Votes
0 Answers
11K Views
1 Votes 0 Answers 11K Views
To interact with the outside world blockchains rely on oracles. But I see a problem here. Let's say we have a betting contract that lets users place their be...
10 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
Many programming languages have a ternary operator, such as booleanExpression ? expression1 : expression2 in Java (if booleanExpression equals true, than exp...
10 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
There are extensions for code editors like Visual Studio Code providing syntax highlighting for FunC. Is there anything like that for the vim editor? --- > T...
9 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
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
9 months ago
1 Votes
0 Answers
11K Views
1 Votes 0 Answers 11K Views
In developing for blockchain it's important to save space, so it seems better to store the dates using 32-bit timestamps instead of 64-bit. But blockchain is...
9 months ago
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
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...
9 months ago
1 Votes
2 Answers
11K Views
1 Votes 2 Answers 11K Views
I've heard from the TON Spanish DevChat that there exists "Ten Lessons for learning FunC". Are those video lessons? --- > This question was imported from Tel...
9 months ago
1 Votes
1 Answers
12K Views
1 Votes 1 Answers 12K Views
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": "....
1 Votes
1 Answers
11K Views
1 Votes 1 Answers 11K Views
What is the difference between addresses that start with EQ and those that start with UQ? There are also addresses that start with kf, but when searched up o...
9 months 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.

9 months ago
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K 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...
3 Votes
2 Answers
14K Views
3 Votes 2 Answers 14K 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 ...
one year ago