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
Vudi Kingyru
Moderator
1 Question, 3 Answers
  Active since 03 October 2022
  Last activity one year ago

Reputation

27 + 20 this May
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
TON and Everscale have similar roots and should be fairly compatible from a technological perspective. Although they are separate networks with different val...
-1 How to create a new TON wallet programatically?

You can use the TonWeb javascript SDK.

const tonweb = new TonWeb();

const wallet = tonweb.wallet.create({publicKey});

const address = await wallet.getAddress();

const nonBounceableAddress = address.toString(true, true, false);

const seqno = await wallet.methods.seqno().call();

await wallet.deploy(secretKey).send(); // deploy wallet to blockchain

const fee = await wallet.methods.transfer({
    secretKey,
    toAddress: 'EQDjV...
one year ago
1 What's the difference between wallet contract v3 and v4?

There are a bunch of contracts developed by the original TON team to manage TON coins, but only 4 versions are currently available.

Wallet v1: allows you to create a wallet.
Wallet v2: added a sequence of actions (seqno).
Wallet v3: added public key generation (TON Wallet)
Wallet v4: relevant to Tonkeeper, tonhub. v4 adds new functionality to complex logic and pairing of smart contracts. For example subscriptions (private channels) and stacking. This version allows you to greatly expan...

one year ago
1 About TON DNS Future

Существует 3 статьи на эту тему:

  1. Общие вопросы (7 вопросов-ответов) https://telegra.ph/Otvety-na-voprosy-o-TON-DNS-kanalu-Investment-kingyru-CHast-1-08-05
  2. Технические вопросы (10 вопросов-ответов) https://telegra.ph/Otvety-na-voprosy-o-TON-DNS-kanalu-Investment-kingyru-CHast-2-08-06
  3. Вопросы про будущее (7 вопросов-ответов) https://telegra.ph/Otvety-na-voprosy-o-TON-DNS-kanalu-Investment-kingyru-CHast-3-08-09
one year ago