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
Profile picture
Alireza
Moderator
0 Questions, 1 Answer
  Active since 30 October 2022
  Last activity one year ago

Reputation

0

Badges 1

Editor
3 How high are the fines for validators?

Hi,

The punishment value is calculated based on the configuration parameter 40, which specifies some related values, including:

  • default_flat_fine
  • default_proportional_fine
  • severity_flat_mult
  • severity_proportional_mult
  • long_flat_mult
  • long_proportional_mult

If this configuration parameter is not specified, then the maximum punishment is 101 TON, otherwise it's calculated as below:

let: flat = default_flat_fine * (severity_flat_mult / 256) * (long_flat_mult / 256)
...

one year ago