-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
gaiacli tx decode #3872
Labels
Comments
But there is no // /github.com/cosmos/cosmos-sdk/client/tx/root.go
func RegisterRoutes(cliCtx context.CLIContext, r *mux.Router, cdc *codec.Codec) {
r.HandleFunc("/txs/{hash}", QueryTxRequestHandlerFn(cdc, cliCtx)).Methods("GET")
r.HandleFunc("/txs", SearchTxRequestHandlerFn(cliCtx, cdc)).Methods("GET")
r.HandleFunc("/txs", BroadcastTxRequest(cliCtx, cdc)).Methods("POST")
r.HandleFunc("/txs/encode", EncodeTxRequestHandlerFn(cdc, cliCtx)).Methods("POST")
} |
Yeah we should implement both @yangyanqing. I swear we had decoding, but I guess not. |
5 tasks
5 tasks
@fedekunze you mentioned you'll be creating a new PR (#4213 (comment)). Is this done then? |
Bump @fedekunze or perhaps @tnachen can tackle it? |
I'll take this too then. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a
POST /tx/decode
route in therest-server
. This functionality should also be available ingaiacli
astx decode
The text was updated successfully, but these errors were encountered: