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
How do I deploy a contract to MainNet with tondev?

I'm trying to deploy my contract to the TON MainNet, but I get an error:

<<Account ___ has low balance to deploy.>>

The account that I'm using has a 1.5 TON balance, which should be enough! What am I doing wrong? This is what I'm calling:

tondev contract deploy test.abi.json -s mykeys

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

Votes Newest

Answers


You are likely referring to the tondev tool which has since been renamed to everdev. While both Everscale and TON use the TVM, they are in reality different blockchains that have since gone their separate development paths. You cannot use the tondev or everdev tools to deploy a smart contract to TON.

I recommend using the Blueprint tool at ton-community/Blueprint to deploy to TON.

  
  
Posted one year ago
Edited one year ago
Jeremy
394 × 5 Administrator
6K Views
1 Answer
one year ago
one year ago
Tags