Releases: alephium/explorer-backend
v1.19.1
What's Changed
Full Changelog: v1.19.0...v1.19.1
v1.19.0
Rhone upgrade
This explorer-backend release is mandatory to work with the upcoming Rhone
upgrade:
What's Changed
Full Changelog: v1.18.0...v1.19.0
v1.18.0
Update explorer-backend to node v.2.11.0
Node version 2.11.0 introduces significant changes to event logging, necessitating a complete resync of the explorer-backend against a Node v.2.11.0 instance. Additionally, your node will also require resynchronization. However, if your node hasn't enabled event logging and your explorer-backend doesn't rely on events, a resync may not be necessary
Warning - Manual database work required
If you want to fully resync your explorer-backend you can just go with:
DROP DATABASE <your-explorer-backend-database>;
CREATE DATABASE <your-explorer-backend-database>;
If you don't want to re-sync because events aren't use:
DELETE FROM app_state WHERE key = 'migrations_version';
Full Changelog: v1.17.3...v1.18.0
v1.17.3
Some solid code
v1.17.2
v1.17.1
Fix leap year issue
Some charts endpoints weren't working anymore on the front end because the max time range allowed wasn't supporting leap years.
What's Changed
Full Changelog: v1.17.0...v1.17.1
v1.17.0
v1.16.2
v1.16.1
Introduce new endpoints to fetch price
POST /market/prices?currency=<currency>
[ "ALPH", "USDT", ... ]
Response:
[
2.3344200593699997,
0.99857265312
]
List of symbol can be found in the config file as well as the supported currencies
/market/prices/<symbol>/charts?currency=<currency>
Response:
{
"timestamps": [
1674000000000,
1674086400000,
....
],
"values": [
0.0000030183904972431026,
0.0000031580520894762075,
.....
]
}
What's Changed
Full Changelog: v1.16.0...v1.16.1
v1.16.1-rc3
Some solid code