All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
NOTE: As semantic versioning states all 0.y.z releases can contain breaking changes in API (flags, grpc API, any backward compatibility)
We use breaking
v5.8.0 - 2021.06.15
-
#440 Completely refactored the internal architecture to make it more modular, easier to understand and maintain. In this gigantic PR also added a submitter for the new tellor access oracle. All config files now follow a new structure so see the latest docs for more details.
-
#461 Data ID 57 - TVL now uses different API endpoints to return consistent values and to include only TVL from ethereum and the aggregation is switched from Mean to Median.
-
Data ID 41 is now using the default granularity of 6 digits after the decimal point. For example 113.406333 should be submitted as 113406333.
-
#432 At startup it prints the current version and git tag.
-
#452 At startup it prints a message when the cli has a new release to notify people that they can upgrade.
-
#434 Added k8s deployments for alertmanager and telegram bot alerting.
-
#441 Auto generating the docs from the code itself for the CLI args and the configs so now they will be allways up to date. Added a check in the CI to make sure the docs are regenerated on any code changes.
-
#446 Added a new dispute tracker module which tracks all submitted values in the oracle and exposes metrics to allow comparing the values. Eventually will also add settings and docs how to create alerting so that people submitting values can set an elrt when submitted values looks different than what is expected.
-
#448 Return an error at startup when an entry in the index.json file contains an env variable, but the variable is not set.
-
#463 When aggregating a median of odd values count, use use mean for the 2 middle numbers.
v5.7.0 - 2021.02.23
-
#399 We no longer use the
"publicAddress"
config in the config file, instead we get public addresses from the"ETH_PRIVATE_KEYS"
environment variable. -
#399 We changed
"ETH_PRIVATE_KEY"
environment variable to a list of private keys (separated by,
) and now it will be defined using"ETH_PRIVATE_KEYS"
environment variable. -
#403 The config file now has fields separated by commands(eg. Dataserve, mine,etc) where all the command specific configuration goes. It now uses strict parsing, meaning that unused fields throw an error, which will likely happen to a lot of users. For a clear view of the conifg, please take a look at the config file
-
#403 Renamed
indexes.json
toapi.json
. -
#403 Removed the configs folder and now user should use apiFile and manualDataFile.
-
#410 Public addresses should be prefixed with
0x
. -
#410 Integration and testing to use the newer contracts.
- #406 Added new command
migrate
to migrate old tokens for the new one.
- #410 Fixed most submit races, causing fewer submission errors. More effort will be dedicated to completely removing them in the next release.
v5.6.0 - 2021.02.08
-
#240 Replaced the cli package to allow for command specific flags and configuration. Now all flags should be passed last. Example: Instead of:
./telliot --config="config.json" stake deposit
, it becomes:./telliot stake deposit --config="config.json"
Removed theRemoteMining
-r
flag. Remote is active when specifying aRemoteDBHost
for theMine
command. See theconfigs/config.json
for an example. -
#378 Removed GPU mining, as it weren't being used.
-
#390 Removed the feature to connect using Stratum Pool, as it weren't being used.
-
#386 Removed the need to provide the tellor contract address in the config file
-
#386 Removed the logLevel flag. Now all logging setup is in the config file. See the example at
configs/config.json
.
-
#347 Added onchain trackers for Uniswap and Balancer.
-
#385 Added a new psr for Defi Market cap, for id 58. Miners will need to create a free api key in CoinMarketCap pro to be able to read the apis.
v5.5.0 - 2021.01.18
- #372 Split the configs of the mine and dataserver command to avoid confusion and be more explicit. This also fixes an issue where can't run a miner and dataserver on the same machine(now that the miner also runs an HTTP server to expose metrics). The config format has changed so users need to update their configs. See the
configs/config.json
for an example of the new format. - #374 Changed DEFITVL from median to mean as it has only 2 API endpoints and with mean the calcs return more accurate results.
v5.4.0 - 2021.01.13
- #321 Unified all configuration files. LoggingConfig and LogLevel now reside in the main config file.
- #366 Refactored the
index.json
parsing to be more flexible and allow using different parsers. With the notion ofparser
andparam
can allow combining different parsers and parsers parameters. The default is stilljsonPath
, but current users need to renamejsonPath
toparam
in theirindex.json
file.
- #321
interval
field in theindexes.json
file. This sets a custom trackerCycle for a specific (e.g. aninterval: 600
would lead to the API being updated every hour) - #321
minSubmitPeriod
field in theconfig.json
file. This sets a limit on how often telliot can send submits. The default is 15min which is what the current oracle contract allows. - #339 Initial support for Prometheus metrics.
- #340 Manifest files to run in k8s google cloud with Prometheus and Grafana monitoring. The team will run a public telliot miner dashboard at http://monitor.tellor.io/
- #334 DEFITVL feed as a new request ID 57. Miners would have to update the binary and
index.json
to be able to submit.
v5.3.0 - 2020.12.21
- #317 Removed nodeURL and private key from config file
- #318
indexes.json
file format migrated to JSONPath format.
- #272 Automated Docker images on every push to master and with every tagged release.
v5.2.0 - 2020.11.12
- #254
- Added support for expanding variables in the indexer api url.
- Added config to specify the
.env
file location. The default is nowconfigs/.env
so users should either specify a custom location in theconfig.json
or move it inside the default config folder.
v5.0.0 - 2020.11.02
- Profitability calculations which is set through the
ProfitThreshold
(in percents) settings in the config, - Docs how to contribute.