Closed
Description
Summary
Implement sign mode handlers in the x/tx
module that use the google.golang.org/protobuf
API.
Problem Definition
autocli
/hubl
use google.golang.org/protobuf
types and in the future the SDK intends to support them for general usage in transactions, message handlers, etc. One of the biggest blockers to this is sign mode handlers supporting these types. To support this, we are adding sign mode handlers to the x/tx
module which natively use the new golang protobuf API.
Work Breakdown
SIGN_MODE_DIRECT
and SIGN_MODE_TEXTUAL
are already supported in x/tx
.
- x/tx SIGN_MODE_DIRECT_AUX handler #15169
- x/tx transaction decoder #15411
- x/tx SIGN_MODE_LEGACY_AMINO_JSON handler #15170
- Move x/tx/textual to x/tx/signing/textual for consistency refactor(x/tx): Move textual,aminojson to signing #15278
- Add all handlers to x/tx/signing/std handler map