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
Rahul Dabhi
Moderator
4 Questions, 2 Answers
  Active since 17 August 2023
  Last activity 11 months ago

Reputation

43 + 3 this July

Badges 3

Editor Eureka! Newbie
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
i want to know which address is optional because i have define main wallet address many time. this is working example. i want to short this method if possibl...
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
I want to make sure that transfer was success using this method response tonConnectUI.sendTransaction() I am using : React js @tonconnect/ui-react @ton/ton E...
11 months ago
0 Votes
2 Answers
13K Views
0 Votes 2 Answers 13K Views
Hey, i am getting this error while trasnfer NFT. I can't find this error anywhere. i have used as ton metion in their docs. please help me why i am geeting t...
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
I am looking for NFT staking tutorial but couldn't found. Like other blockchain i want to create a staking platform for my client and they have collection of...
3 How we generate a Transaction Hash in the TON Blockchain?

You can generate hash with boc before transaction or after transaction with response boc.


const bocCell = TonWeb.boc.Cell.oneFromBoc(TonWeb.utils.base64ToBytes(response.boc));
        
const hash = TonWeb.utils.bytesToBase64(await bocCell.hash());
10 months ago
0 TypeError: Do not know how to serialize a BigInt

i already solved this error. the error was in converting TON to nano using this "toNano()" function, this should be work as they mention in docs but it's giving error. so i had to remove that function and set static value.

11 months ago