Skip to content

Releases: alephium/explorer-backend

v1.19.1

21 May 14:47
9efbd57
Compare
Choose a tag to compare

What's Changed

  • Add /addresses/<address>/public-key endpoint by @tdroxler in #540

Full Changelog: v1.19.0...v1.19.1

v1.19.0

15 May 11:38
336efb7
Compare
Choose a tag to compare

Rhone upgrade

This explorer-backend release is mandatory to work with the upcoming Rhone upgrade:

Full node v2.14.x

What's Changed

Full Changelog: v1.18.0...v1.19.0

v1.18.0

26 Mar 06:35
6fc715d
Compare
Choose a tag to compare

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

17 Mar 13:46
a8c5022
Compare
Choose a tag to compare

Some solid code

v1.17.2

08 Mar 08:03
93787b3
Compare
Choose a tag to compare

New fiat

  • AUD

What's Changed

Full Changelog: v1.17.1...v1.17.2

v1.17.1

05 Mar 06:29
ca8a361
Compare
Choose a tag to compare

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

  • Add more config for yearly data and default to 366 to handle leap years by @tdroxler in #519

Full Changelog: v1.17.0...v1.17.1

v1.17.0

29 Feb 13:55
2683329
Compare
Choose a tag to compare

Update node API to 2.9.0

What's Changed

Full Changelog: v1.16.2...v1.17.0

v1.16.2

19 Feb 15:01
1cecc0a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.16.1...v1.16.2

v1.16.1

17 Jan 10:53
70ee7f9
Compare
Choose a tag to compare

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

15 Jan 13:38
Compare
Choose a tag to compare

Some solid code