Skip to content
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

Add SendTx rpc and proto message definitions #2052

Closed
3 of 6 tasks
Tracked by #2026
damiannolan opened this issue Aug 19, 2022 · 0 comments · Fixed by #2086
Closed
3 of 6 tasks
Tracked by #2026

Add SendTx rpc and proto message definitions #2052

damiannolan opened this issue Aug 19, 2022 · 0 comments · Fixed by #2086
Assignees
Milestone

Comments

@damiannolan
Copy link
Member

damiannolan commented Aug 19, 2022

Summary

  • Add SendTx rpc and message definitions
  • Add empty boilerplate func to controller keeper
  • Register codec types
service Msg {
  ...
  rpc SubmitTx(MsgSubmitTx) returns (MsgSubmitTxResponse);
}

message MsgSendTx {
  option (gogoproto.equal)           = false;
  option (gogoproto.goproto_getters) = false;

  string owner                       = 1;
  string connection_id               = 2 [(gogoproto.moretags) = "yaml:\"connection_id\""];
  string timeout                     = 3;
  google.protobuf.Any msg            = 4;
}

message MsgSendTxResponse {}

For Admin Use

  • Not duplicate issue
  • Appropriate labels applied
  • Appropriate contributors tagged/assigned
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

2 participants