-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merge 1.0.0-maint
into main
#226
Open
joel-u410
wants to merge
40
commits into
anoma:main
Choose a base branch
from
joel-u410:joel/1.0.0-maint-merge-main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
41e0ca0
refactor: insert bonds to use col count macro
mateuszjasiuk 2b8fcf5
feat: insert votes in chunks
mateuszjasiuk fec6b0e
feat: add active at query param to bonds and unbonds (#198)
mateuszjasiuk 68215a7
fetch validators out of consensus set
Fraccaman dddd8a8
return cargo tag
Fraccaman 365a92b
improve logic
Fraccaman 838dff1
update swagger
Fraccaman fb31083
feat: add block proposer to addresses_with_balance_change
joel-u410 f8c8276
Merge pull request #205 from anoma/backport-fix-pos
Fraccaman 3024947
Merge pull request #207 from anoma/add-cargo-version
Fraccaman 8e7893f
fetch rewards in batches
Fraccaman 051b57a
fix: insert rewards in batch
RuslanGlaznyov a99a85e
minors
Fraccaman 9128561
feat: print processed rewards batch
mateuszjasiuk cda97c1
Merge pull request #217 from MELLIFERA-Labs/fix/insert-db-rewards-in-…
Fraccaman e2ab703
Merge pull request #216 from anoma/improve-rewards-fetching
Fraccaman 7cf71cf
Merge pull request #203 from joel-u410/joel/block-proposer-balances
Fraccaman 6588900
enhancement: store blocks while crawling transactions and chain
joel-u410 daac819
update diesel schema for blocks
joel-u410 64d042a
upsert block before balances during initial_query
joel-u410 593ef20
Store the validator namada address on blocks instead of the tendermin…
joel-u410 e6ec420
Merge pull request #190 from joel-u410/joel/record-block-details
mateuszjasiuk fe544d5
parsing ack tx
Fraccaman e790084
parse sequence + ack + tx id
Fraccaman 4d5886f
added handler
Fraccaman 1e15f3b
update swagger
Fraccaman 510b829
minors
Fraccaman 1b91539
minors
Fraccaman d1eb8df
Merge pull request #219 from anoma/ibc-events
Fraccaman 679b9d7
added gas_used to thw wrapper tx
Fraccaman 321ca54
update endpoint and swagger
Fraccaman 5b30e97
fix ibc_ack migration
Fraccaman 509c992
fix ibc_ack migration
Fraccaman 001e1e0
feat: return blocks by timestamp or height
mateuszjasiuk fbbd3bd
fmt
Fraccaman 52bc198
Merge pull request #221 from anoma/add-gas
mateuszjasiuk cc865d9
Merge pull request #222 from anoma/feat/return-block-by-timestamp
mateuszjasiuk ccc9c61
chore: update version in cargo toml
mateuszjasiuk 59dddc7
Merge pull request #224 from anoma/chore/update-version-in-cargo-toml…
mateuszjasiuk 98325e7
Merge remote-tracking branch 'upstream/1.0.0-maint' into joel/1.0.0-m…
joel-u410 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ authors = ["Heliax <[email protected]>"] | |
edition = "2021" | ||
license = "GPL-3.0" | ||
readme = "README.md" | ||
version = "1.0.0" | ||
version = "1.1.4" | ||
|
||
[workspace.dependencies] | ||
clokwerk = "0.4.0" | ||
|
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was probably the trickiest part of the merge -- given the changes on both sides to this, I had to make sure
pgf_recipient_addresses
was still accounted for (which it is, as you can see).