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
Answered
It is possible to set arbitrary time using Sandbox?

The Sandbox projects allows to emulate arbitrary TON smart contracts and interact with them as if they were deployed on a real network. But is there an option to set an arbitrary blockchain time when emulating the network?


This question was imported from Telegram Chat: https://t.me/tondev/116281

  
  
Posted one year ago
Votes Newest

Answers


I believe the now field will help you. For example:

const buyResult = await buyer.send({
    to: sale.address,
    value: price + toNano('1'),
    sendMode: SendMode.PAY_GAS_SEPARATELY,
		now: 1682370000
})
  
  
Posted one year ago
Jeremy
384 × 5 Administrator
4K Views
1 Answer
one year ago
one year ago
Tags