Conversation
codchen
reviewed
Jun 27, 2022
app/antedecorators/gasless.go
Outdated
| ) | ||
|
|
||
| type GaslessDecorator struct { | ||
| wrapped sdk.AnteDecorator |
Collaborator
There was a problem hiding this comment.
we might want to make this a list, since it's possible that some future cosmos version adds a new builtin ante handler that we want to skip for gasless transactions
philipsu522
approved these changes
Jun 27, 2022
dcec93e to
c829ca3
Compare
codchen
approved these changes
Jun 28, 2022
masih
pushed a commit
that referenced
this pull request
Sep 26, 2025
masih
pushed a commit
that referenced
this pull request
Sep 29, 2025
## Describe your changes and provide context This adds the gov proposal type for wasm dependency mapping updates. ## Testing performed to validate your change Based the changes off of this PR: https://github.com/sei-protocol/sei-cosmos/pull/33/files
masih
pushed a commit
that referenced
this pull request
Sep 30, 2025
## Describe your changes and provide context This adds the gov proposal type for wasm dependency mapping updates. ## Testing performed to validate your change Based the changes off of this PR: https://github.com/sei-protocol/sei-cosmos/pull/33/files
masih
pushed a commit
that referenced
this pull request
Oct 1, 2025
* Set unsafe bypass to false * improve errors * sd * Sd * sd
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This refactors the gasless ante handler, and we want to include oracle gasless voting too.
Additionally, I refactored the gasless wrapper decorator to be build into the gasless wrapper since otherwise we'd incur two checks for gasless TX
Oracle gasless behavior summary
Prevote: gasless allowed if the validator hasn't already submitted a prevote in the voting window. This means feeder or validator will be able to make one gasless prevote tx
Vote: gasless allowed if validator hasnt already submitted a vote in the voting window. ALSO there needs to be a prevote from the previous window present in store (implying the vote can potentially be valid)
Combined: TODO, will add in future PR