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
Is there a way to make a local network like Ganache for TON?

I would like to test the deployment and execution of smart contracts on my local network. I'm looking for a rapid system that I can spin up so that I don't need to acquire TestNet tokens and that I can restart when necessary.

Is there a way to make an instance of a local network to test with, like Ganache for TON?


This question was imported from Telegram Chat: https://t.me/tondev_eng/10121

  
  
Posted one year ago
Votes Newest

Answers


The best solution is likely the TON Contract Executor. It allows you to run the TON Virtual Machine locally, and thus execute smart contracts. You should be able to debug and fully test contracts before launching them to the network. I don't believe it forks networks like HardHat can, however.

There is also MyLocalTON which is a community led solution that runs not only the virtual machine but the rest of the TON blockchain systems as well.

1
1
Posted one year ago
Jeremy
384 × 5 Administrator
  
  

This also might be useful: https://github.com/Trinketer22/func_docker

Jeremy   one year ago Report
16K Views
1 Answer
one year ago
one year ago
Tags