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

Questions 208

Questions 208

Tags
Sorting
Results
per page
Filter

   
0 Votes
2 Answers
20K Views
0 Votes 2 Answers 20K Views
I can't find one in the official extension store, is someone working/getting to work on one?
0 Votes
2 Answers
20K Views
0 Votes 2 Answers 20K Views
I am looking for an easy walkthrough for setting up a TON Site. I have setup the usual webserver using Nginx, with /var/www/site website directory. What shou...
one year ago
2 Votes
1 Answers
24K Views
2 Votes 1 Answers 24K Views
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...
0 Votes
1 Answers
20K Views
0 Votes 1 Answers 20K Views
I am new to programming, but I really want to connect my future with the TON blockchain. Where would you advise me to start? What programming language should...
0 Votes
1 Answers
20K Views
0 Votes 1 Answers 20K Views
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...
0 Votes
2 Answers
20K Views
0 Votes 2 Answers 20K Views
I'm interested to see the project's future and how its sales and prices change. Also, is there a roadmap or schedule for the TON DNS project?
one year ago
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
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...
1 Votes
2 Answers
24K Views
1 Votes 2 Answers 24K 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...
2 Votes
2 Answers
29K Views
2 Votes 2 Answers 29K 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
4 Answers
31K Views
1 Votes 4 Answers 31K 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
4 Votes
3 Answers
25K Views
4 Votes 3 Answers 25K Views
If I want to hold and store a significant amount of toncoin, what options do I have and what would be the pros and cons of the various approaches from a secu...
0 Votes
1 Answers
24K Views
0 Votes 1 Answers 24K Views
Are there any examples in Python for signing and sending TON transactions? For example, sending TON coin from one wallet to another. --- > This question was ...
0 Votes
2 Answers
28K Views
0 Votes 2 Answers 28K Views
TON wallets are smart contracts that need to be deployed on-chain. But if someone does not deploy their wallet contract, their wallet is unininitialized. Wha...
one year ago
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
I want to deploy a new smart contract that I've written. Where can I read how the gas cost of deploying the smart contract in TON is calculated? Is there a c...
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
I want to develop different things on TON, like: * Smart contracts * Telegram bots * Dapps What programming languages can be used for building these things? ...
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K Views
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...
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K Views
TON and Everscale have similar roots and should be fairly compatible from a technological perspective. Although they are separate networks with different val...
3 Votes
1 Answers
36K Views
3 Votes 1 Answers 36K Views
How is the gas fee for a transaction on The Open Network calculated?
2 Votes
2 Answers
24K Views
2 Votes 2 Answers 24K Views
Is there an API method to query data according to old blocks? For example, specify an old block number and query the TON balance of a wallet. A different exa...
one year ago
3 Votes
1 Answers
24K Views
3 Votes 1 Answers 24K Views
I'm writing a simple DApp on TON blockchain and using the tonweb JavaScript library to interact with it. I need to first send a transaction, and then after i...
Daniil Sedov
234 × 6 Administrator
5 Votes
2 Answers
22K Views
5 Votes 2 Answers 22K Views
There's a lot of setup for a project to implement a smart contract in FunC for TON blockchain (ton.org). Is there a good practice setup project that provides...
Tal Kol
359 × 3 Administrator
one year ago
1 Votes
1 Answers
22K Views
1 Votes 1 Answers 22K Views
I want to use TON blockchain (ton.org) to receive payments. What does that involve? What components do I need to implement?
Tal Kol
359 × 3 Administrator
2 Votes
1 Answers
23K Views
2 Votes 1 Answers 23K Views
There's an existing contract that was deployed by somebody else, for example a token, that has getter methods like get_balance(address) or get_total_supply()...
Tal Kol
359 × 3 Administrator
one year ago
1 Votes
1 Answers
22K Views
1 Votes 1 Answers 22K Views
In order to compile smart contracts in the FunC language I need the executables named func and fift. They are used to compile my FunC source code to TVM byte...
Tal Kol
359 × 3 Administrator
2 Votes
1 Answers
22K Views
2 Votes 1 Answers 22K Views
According to TON whitepaper, the TON blockchain network supports multiple chains. What's the differences between these and which workchain should I use when ...
Tal Kol
359 × 3 Administrator
2 Votes
2 Answers
23K Views
2 Votes 2 Answers 23K Views
In TON blockchain, when implementing my dapp smart contract in FunC, my contract can accept both internal messages handled by recv_internal() and external me...
Tal Kol
359 × 3 Administrator
7 Votes
2 Answers
23K Views
7 Votes 2 Answers 23K Views
I'm developing a smart contract for TON blockchain in FunC and I'm trying to find a bug in my code. I'm trying to debug the issue and will appreciate somethi...
Tal Kol
359 × 3 Administrator
one year ago
2 Votes
2 Answers
10K Views
2 Votes 2 Answers 10K Views
I found online mentions of projects using Solidity to build for TON instead of using FunC and Fift. Is this really possible to do? I already know Solidity an...
Tal Kol
359 × 3 Administrator
Show more results questions