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
Dr. Awesome Doge
  Doge Island
Moderator
0 Questions, 10 Answers
  Active since 11 October 2022
  Last activity one year ago

Reputation

120 + 40 this May

Badges 1

Editor
0 toncli: ERROR: Command '['/home/fera/ton/fift', '-V']' died with <Signals.SIGILL: 4>.

I suggest you compile your own version yourself.

wget https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/scripts/toninstaller.sh
sudo bash toninstaller.sh

If all goes well you can find everything you need in /usr/bin/ton/

one year ago
1 How to deploy the contract to the testnet

Hello, in my case.

toncli deploy -n testnet

I successfully completed deploying the contract on testnet.

I think it might be because you don't have enough test coins.

one year ago
0 Can you use Solidity to write contracts for TON blockchain? (ton.org)

This is a project we have discussed in the past.
In the past, free ton (everscale) has made a similar solidity compiler.
https://github.com/tonlabs/TON-Solidity-Compiler/blob/master/API.md#compiler-version

Seems to be deprecated internally, I forget why.

one year ago
0 About TON DNS Future

https://telegra.ph/TON-DNS-auction-rules-07-21

In regards to price action, the following is copied from the link above:

Minimum price.
As protection against spamming bots that automatically register names, there will be a base price and floor price one has to pay.

The base price and floor price depend on the number of characters in your domain name.

Base price — The price at which begins the bidding.

Floor price — A price that cannot go lower than this threshol...

one year ago
1 What is the global network config file (global.config.json) and where can I download a recent one for mainnet and testnet?
# This is a general node, it cannot find all transaction data.
wget https://ton.org/global-config.json -P ~/
wget https://ton.org/global-config-wallet.json -P ~/
wget https://ton-blockchain.github.io/global.config.json -P ~/

# This is the archive node, you can find all transaction data
wget https://ton.org/global-config-archive.json -P ~/


# The following are general test nodes
wget https://ton-blockchain.github.io/testnet-global.config.json -P ~/
wget https://ton.org/testne...
one year ago
4 Can't compile TON binaries on M1 macbook

https://github.com/awesome-doge/ton-compile/blob/main/ninja-Apple%20M1.md

# Install dependent packages
brew update
brew install openssl cmake llvm
brew link openssl --force

# Install ninja
brew install ninja

# generate env folder / clone ton source code
mkdir ~/ton-env
cd ~/ton-env
git clone --recursive https://github.com/ton-blockchain/ton.git

# compile
cd ~/ton-env/
mkdir ton-bin
cd ~/ton-env/ton-bin

cmake ~/ton-env/ton \
    -DCMAKE_BUILD_TYPE=Release \
    ...
one year ago
2 Votes
2 Answers
27K Views
2 Votes 2 Answers 27K 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...
0 Votes
2 Answers
27K Views
0 Votes 2 Answers 27K Views
I know Metamask but never used it for TON before. Is to possible do to that? And if it is, where I might find settings for the network switch on Metamask wal...
one year ago