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
Back to post

Revisions 2

one year ago
Tal Kol
334 × 3 Administrator
TON supports multiple workchains - which one should I use in my code?
TON supports multiple workchains - which one should I use in my code?
According to [TON whitepaper](https://ton-blockchain.github.io/docs/ton.pdf), the TON blockchain network supports multiple chains. What's the differences between these and which workchain should I use when deploying contracts or reading data from contracts? When deploying my contract I must to specify which workchain I’m working on, I’m not sure which value to put there: ```js import { contractAddress } from "ton"; const workchain = ?; const newContractAddress = contractAddress({ workchain, initialData: initDataCell, initialCode: initCodeCell }); ```
According to [TON whitepaper](https://ton-blockchain.github.io/docs/ton.pdf), the TON blockchain network supports multiple chains. What's the differences between these and which workchain should I use when deploying contracts or reading data from contracts? When deploying my contract I must to specify which workchain I’m working on, I’m not sure which value to put there: import { contractAddress } from "ton"; const workchain = ?; const newContractAddress = contractAddress({ workchain, initialData: initDataCell, initialCode: initCodeCell });
#architecture
#architecture
one year ago
Original
Tal Kol
334 × 3 Administrator
TON supports multiple workchains - which one should I use in my code?

According to [TON whitepaper](https://ton-blockchain.github.io/docs/ton.pdf), the TON blockchain network supports multiple chains. What's the differences between these and which workchain should I use when deploying contracts or reading data from contracts? When deploying my contract I must to specify which workchain I’m working on, I’m not sure which value to put there: import { contractAddress } from "ton"; const workchain = ?; const newContractAddress = contractAddress({ workchain, initialData: initDataCell, initialCode: initCodeCell });
#architecture