Koios v1.3.2 (#328)
- `/address_outputs` - Basic transaction output info for given addresses - `/pool_calidus_keys` - List of valid calidus keys for all pools - `/pool_groups` - List of all registered pool and their groups across sources from [pool_groups](https://github.com/cardano-community/pool_groups) repository. This is only relevant for mainnet - `/pool_owner_history` - Return information about pool owner's historical stake and their promised pledge to their pools - `/account_stake_history` - Get history for dreps voting power distribution - `/account_reward_history` - Get the full rewards history (including MIR) for given stake addresses - `/account_update_history` - Get historical updates (registration, deregistration, delegation and withdrawals) for given stake addresses - `/drep_voting_power_history` - Renamed from drep_history (left drep_history for consistency) - `/pool_voting_power_history` - New endpoint to give voting_power_history by pool - `/vote_list` - List of all votes posted on-chain - Input (non-breaking) - `/voter_proposal_list` - Make _voter_id optional - Output - `/tip` - Deprecate column `block_no` and use `block_height` to be consistent across all endpoints - Output - `/pool_list` - Add column `pool_group` to output - Output - `/pool_voting_summary` - Update fields with data type lovelace/integer to string - Output - `/account_info` - Add column proposal_refund to output - `/account_history` - Part of flattening the JSON heirarchy (so that horizontal filtering is optimal), use `/account_stake_history` instead - `/account_rewards` - Part of flattening the JSON heirarchy (so that horizontal filtering is optimal), use `/account_rewards_history` instead - `/account_updates` - Part of flattening the JSON heirarchy (so that horizontal filtering is optimal), use `/account_update_history` instead - `/drep_history` - Renamed to `/drep_voting_power_history` to be more precise - `/drep_votes` - Should be available via `/vote_list` (can use horizontal filtering) - `/pool_votes` - Should be available via `/vote_list` (can use horizontal filtering) - Replace [pg_bech32](https://github.com/cardano-community/pg_bech32) library with [pg_cardano](https://github.com/cardano-community/pg_cardano) - Improve grest.epoch_info_cache performance - `/proposal_voting_summary` - Do lookup for gov action id beforehand, Added handling of inactive DRep stake in voting as abstain, unless they voted in epoch of interest - `/account_info` - Add limit filters to ensure there is a single hit per account - Add indexes for voting_procedure - None