-
Notifications
You must be signed in to change notification settings - Fork 126
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
feat(batch): batch message request #2121
Conversation
Is it possible to put feature to chain txs? Specify event and field from one output and use this for specify input field in next tx? Example, call x/axelarnet LinkRequest and x/bank Send in one batch, use first output for second input? If it help I can contribute some design edit: It seems maybe mutate sdk.Msg is too difficult for here |
5f09dee
to
2e61459
Compare
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #2121 +/- ##
==========================================
+ Coverage 48.06% 48.28% +0.22%
==========================================
Files 263 267 +4
Lines 15928 16033 +105
==========================================
+ Hits 7656 7742 +86
- Misses 7683 7696 +13
- Partials 589 595 +6 ☔ View full report in Codecov by Sentry. |
You will be able to do that with a cosmwasm contract once we've fully rolled out the feature |
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.
I want to have a test case with {some messages, batch, some more messages} to check that all messages are in the correct order and none gets missed. Apart from that we still need to come up with a module name, but the rest looks good
Description
Introduce a new message type
BatchRequest
that suppresses execution errors messages, preventing them from causing the entire batch to fail.Todos
Steps to Test
Expected Behaviour
Other Notes