Monitoring
Every time a new value is submitted to the Tellor contract, the following event is emitted:
The _value
is the requested data, with _queryData
being the description of the data.
To dispute a value, go to the governance contract and run:
Note that before beginning a dispute, the proper amount of TRB tokens must be approved to the contract to cover the dispute fee. disputeFee
is a constant public variable in the contracts, however doubles with each voting round or with each open dispute on a given ID.
To get the number of open disputes on an ID:
To open a dispute on a previously dispute (challenge the result of the vote), simply run beginDispute()
with the same parameters (same timestamp/ queryID). Note that the dispute fee will need to be doubled from the previous round.
Last updated