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 RegisterAccount rpc and proto message definitions #2051

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

Add RegisterAccount rpc and proto message definitions #2051

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

Comments

@damiannolan
Copy link
Member

Summary

  • Add RegisterAccount rpc and message definitions
  • Add empty boilerplate handler to controller keeper
  • Register codec types
service Msg {
  rpc RegisterAccount(MsgRegisterAccount) returns (MsgRegisterAccountResponse);
  ...
}

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

  string owner                      = 1;
  string connection_id              = 2 [(gogoproto.moretags) = "yaml:\"connection_id\""];
  string version                    = 3;
}

message MsgRegisterAccountResponse {}

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.

1 participant