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 to estimate NFT minting fees on TON?

Suppose I'm deploying an NFT collection consisting of 1000 items. I would like to know the minting cost in advance. How can I calculate it?


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

  
  
Posted 11 months ago
Votes Newest

Answers


Good question! In TON, the gas cost of minting an NFT is the same, whether it's the first or the last minting in the series. This is different from Solidity in the EVM world, where the cost can vary depending on the specific implementation.

As for calculating the cost, it will depend on the specific details of your deployment, such as the gas price and the complexity of your smart contract code. You can use the TON Gas Calculator (https://ton.live/gas) to estimate the gas cost for your deployment.

  
  
Posted 11 months ago
Howard Peng
10 × 1 Administrator
4K Views
1 Answer
11 months ago
11 months ago
Tags