-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Description <!--- Describe your changes --> - [x] Implement CIP-129 - [x] Add index for drep (raw instead of encoded) - [x] Add `has_script` to drep endpoints - [x] Add `proposal_id` to `committee_info`, `drep_votes`, `proposal_list`, `proposal_votes` - [x] Use `_cc_hot_id` as input for committee_votes - [x] Use `_voter_id` as input for voter_proposal_list - [x] Add `delegated_drep` and `deposit` to `account_info_cached` - [x] Add `proposal_voting_summary` - [x] Bump Koios Release --------- Co-authored-by: Ola <[email protected]> Co-authored-by: Greg B <[email protected]>
- Loading branch information
1 parent
41bcff5
commit 4f94b40
Showing
25 changed files
with
1,341 additions
and
431 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
CREATE INDEX IF NOT EXISTS pool_stat_pool_hash_id ON pool_stat(pool_hash_id); | ||
CREATE INDEX IF NOT EXISTS pool_stat_epoch_no ON pool_stat(epoch_no); | ||
CREATE INDEX IF NOT EXISTS idx_drep_hash_view ON drep_hash (view); | ||
-- CREATE INDEX IF NOT EXISTS idx_drep_hash_view ON drep_hash (view); | ||
CREATE INDEX IF NOT EXISTS idx_drep_hash_raw ON drep_hash (raw); | ||
CREATE INDEX IF NOT EXISTS idx_reward_rest_addr_id ON reward_rest (addr_id); | ||
CREATE INDEX IF NOT EXISTS idx_reward_rest_spendable_epoch ON reward_rest (spendable_epoch); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.