Releases: pinknetworkx/eosio-contract-api
Releases · pinknetworkx/eosio-contract-api
v1.3.24
v1.3.21
- More consistent data in responses
- Speed Improvements
- Stability Fixes
Database will be migrated automatically on upgrade and first run of filler
v1.3.17
New filters for atomicassets /assets endpoint
- burner (filter by account that burned the asset)
- initial_receiver (filter by account that the asset was minted to)
Database Changes
- Rename table atomicassets_template_counts to atomicassets_asset_count and
- Dropped not used indexes
Multiple fixes and performance improvements
v1.3.14
New way to calculate the estimated prices for templates and removed all materialized views from the project
v1.3.13
Tables will be migrated automatically but update can take about 30 minutes.
- Remove materialized views
atomicmarket_stats_markets
andatomicmarket_stats_prices
to decrease IO usage - Added table
atomicmarket_stats_markets
that merges the data of both materialized views and is updated with new sales instead of refreshing the complete table - Fixed a bug that templates and schemas endpoints did not filter by collection_name
v1.3.12
- Fixed a bug that filler restarts from the wrong block if ship connection breaks while processing a block
- Add better autovacuum and autoanalyze settings for large tables to speed up queries and especially fork rollbacks
- Removed materialized view atomicmarket_sale_prices to reduce IO and database load -> Price sorting and price filters in /v1/sales wont work anymore. Please migrate to /v2/sales. If you are an operator, you can enable
disable_v1_sales
to map the /v2/sales endpoint to the /v1/sales endpoint, which should have the same interface to make this release non breaking. - Bumped dependencies
- General bugfixes