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
Unanswered
What does "dns_storage_address#7473 bag_id:uint256 = DNSRecord;" mean?

Have seen this: https://ton.org/docs/participate/ton-storage/storage-faq#how-to-host-static-ton-site-in-ton-storage-low-level

dns_storage_address#7473 bag_id:uint256 = DNSRecord;

Looks like need to assign bag_id to the sha256 of "site" ("site"H) DNS record?

Possibly it can be achieved with TonWeb lib like this?

const bagId = new TonWeb.utils.StorageBagId(value)
record = TonWeb.dns.createStorageBagIdRecord(bagId)
setTx(TonWeb.dns.DNS_CATEGORY_SITE, record)

Any other ways to implement other than TonWeb lib?

Votes Newest

Answers

1K Views
0 Answers
one year ago
one year ago
Tags