Skip to content

Latest commit

 

History

History
105 lines (84 loc) · 5.63 KB

CHANGELOG.md

File metadata and controls

105 lines (84 loc) · 5.63 KB

Unreleased

Changes

Staking Module

  • (#443) Remove tombstone status from staking module(already stored in slashing module)

Version v3.2.0

Changes

Mint module

  • (#432) Update inflation rate when mint param change proposal is passed

Gov module

  • (#401) Update the proposal status to the latest in bdjuno parse gov proposal [id] command
  • (#430) Update the proposals that have invalid status but can still be in voting or deposit periods

Dependencies

  • (#440) Updated Juno to v3.3.0

Version v3.1.0

Dependencies

  • Updated Juno to v3.2.0

Changes

Hasura

  • (#395) Remove time label from Hasura Prometheus monitoring

Bank module

  • (#410) Change total supply query from only 1 page to all pages

Version v3.0.1

Dependencies

  • Updated Juno to v3.1.1

Version v3.0.0

Notes

This version introduces breaking changes to transaction and message PostgreSQL tables. It implements PostgreSQL table partitioning to fix slow data retrieval from database that stores large amount of transactions and messages. Read more details about migrating to v3.0.0

New features

CLI

  • (#356) Implemented migrate command to perform easy migration to higher BDJuno versions
  • (#356) Updated parse-genesis command to parse genesis file without accessing the node

Database

  • (#356) Added PostgreSQL table partition to transaction and message table
  • (#356) Created new messages_by_address function

Changes

Hasura

  • (#377) Updated Hasura metadata
  • (#381) Hasura actions are now a module

Dependencies

  • (#356) Updated Juno to v3.0.0

Version v2.0.0

Notes

This version introduces breaking changes to certain address-specific data that is no longer periodically parsed from the node and stored in the database. Instead, the data is now obtained directly from the node when needed using Hasura Actions. Read more details about migrating to v2.0.0

New features

CLI

  • (#257) Added parse-genesis command to parse the genesis file
  • (#228) (#248) Added fix command:
    • auth: fix vesting accounts details
    • blocks: fix missing blocks and transactions from given start height
    • gov: fix proposal with given proposal ID
    • staking: fix validators info at the latest height

Hasura Actions

  • (#329) Implemented Hasura Actions service to replace periodic queries. If you are using GraphQL queries on your application, you should updated the old queries to use the below new actions instead.
    Here's a list of data acquired through Hasura Actions:
    • Of a certain address/delegator:
      • Account balance (action_account_balance)
      • Delegation rewards (action_delegation_reward)
      • Delegator withdraw address (action_delegator_withdraw_address)
      • Delegations (action_delegation)
      • Total delegations amount (action_delegation_total)
      • Unbonding delegations (action_unbonding_delegation)
      • Total unbonding delegations amount (action_unbonding_delegation_total)
      • Redelegations (action_redelegation)
    • Of a certain validator:
      • Commission amount (action_validator_commission_amount)
      • Delegations to this validator (action_validator_delegations)
      • Redelegations from this validator (action_validator_redelegations_from)
      • Unbonding delegations (action_validator_unbonding_delegations)
  • (#352) Added prometheus monitoring to hasura actions

Local node support

  • Added the support for node.type = "local" for parsing a static local node without the usage gRPC queries: config reference.

Modules

  • (#232) Updated the x/auth module support to handle and store vesting accounts and vesting periods inside the database.
  • (#276) Added the support for the x/feegrant module (v0.44.x)

Changes

CLI

  • (#351) Fixed version display for bdjuno version cmd

Database

  • (#300) Changed bonded_tokens and not_bonded_tokens type inside staking_pool table to TEXT to avoid value overflow
  • (#275) Added tombstoned column inside validator_status table
  • (#232) Added vesting_account and vesting_period table
  • (#276) Added fee_grant_allowance table (v0.44.x)

Modules

  • (#353) Removed the support for the history module