-
Notifications
You must be signed in to change notification settings - Fork 4.1k
feat: implement object stores #22893
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
Closed
+811
−458
Closed
Changes from 15 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
8ad2ace
Support object store (#206)
69d1149
resolve
mmsqe b09d61e
Apply suggestions from code review
mmsqe 31fb466
cleanup
mmsqe 8e13d6c
prefix store support object store (#236)
1ef617e
resolve
mmsqe 178e6ac
Merge remote-tracking branch 'origin/main' into obj_store
mmsqe c043a58
lint
mmsqe 70c1e18
build
mmsqe 39059eb
fix test
mmsqe 0dc83a6
Problem: snapshot for object store is not skipped (#585)
mmsqe 6ad55d3
Merge remote-tracking branch 'origin/main' into obj_store
mmsqe e6ff064
lint
mmsqe 411b061
Merge remote-tracking branch 'origin/main' into obj_store
mmsqe 5efcbf8
go-mod-tidy-all
mmsqe 7837006
resolve
mmsqe 444848d
fix test
mmsqe c44d29d
fix test
mmsqe 05c6017
Merge remote-tracking branch 'origin/main' into obj_store
mmsqe 1f174d7
fix test
mmsqe 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,52 @@ | ||
| module cosmossdk.io/simapp | ||
|
|
||
| go 1.23.3 | ||
|
|
||
| // Here are the short-lived replace from the SimApp | ||
| // Replace here are pending PRs, or version to be tagged | ||
| // replace ( | ||
| // <temporary replace> | ||
| // ) | ||
|
|
||
| // SimApp on main always tests the latest extracted SDK modules importing the sdk | ||
| replace ( | ||
| cosmossdk.io/client/v2 => ../client/v2 | ||
| cosmossdk.io/indexer/postgres => ../indexer/postgres | ||
| cosmossdk.io/store => ../store | ||
| cosmossdk.io/tools/benchmark => ../tools/benchmark | ||
| cosmossdk.io/tools/confix => ../tools/confix | ||
| cosmossdk.io/x/accounts => ../x/accounts | ||
| cosmossdk.io/x/accounts/defaults/base => ../x/accounts/defaults/base | ||
| cosmossdk.io/x/accounts/defaults/lockup => ../x/accounts/defaults/lockup | ||
| cosmossdk.io/x/accounts/defaults/multisig => ../x/accounts/defaults/multisig | ||
| cosmossdk.io/x/authz => ../x/authz | ||
| cosmossdk.io/x/bank => ../x/bank | ||
| cosmossdk.io/x/circuit => ../x/circuit | ||
| cosmossdk.io/x/consensus => ../x/consensus | ||
| cosmossdk.io/x/distribution => ../x/distribution | ||
| cosmossdk.io/x/epochs => ../x/epochs | ||
| cosmossdk.io/x/evidence => ../x/evidence | ||
| cosmossdk.io/x/feegrant => ../x/feegrant | ||
| cosmossdk.io/x/gov => ../x/gov | ||
| cosmossdk.io/x/group => ../x/group | ||
| cosmossdk.io/x/mint => ../x/mint | ||
| cosmossdk.io/x/nft => ../x/nft | ||
| cosmossdk.io/x/params => ../x/params | ||
| cosmossdk.io/x/protocolpool => ../x/protocolpool | ||
| cosmossdk.io/x/slashing => ../x/slashing | ||
| cosmossdk.io/x/staking => ../x/staking | ||
| cosmossdk.io/x/upgrade => ../x/upgrade | ||
| ) | ||
|
|
||
| // Below are the long-lived replace of the SimApp | ||
| replace ( | ||
| // use cosmos fork of keyring | ||
| github.com/99designs/keyring => github.com/cosmos/keyring v1.2.0 | ||
| // Simapp always use the latest version of the cosmos-sdk | ||
| github.com/cosmos/cosmos-sdk => ../. | ||
| // Fix upstream GHSA-h395-qcrw-5vmq and GHSA-3vp4-m3rf-835h vulnerabilities. | ||
| // TODO Remove it: https://github.com/cosmos/cosmos-sdk/issues/10409 | ||
| github.com/gin-gonic/gin => github.com/gin-gonic/gin v1.9.1 | ||
| // replace broken goleveldb | ||
| github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 | ||
| ) | ||
Empty file.
This file contains hidden or 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 hidden or 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 hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.