Skip to content

Commit

Permalink
adding encoding and txTypes fields to ica metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
damiannolan committed Feb 2, 2022
1 parent 20e5dd9 commit 9a07154
Show file tree
Hide file tree
Showing 3 changed files with 133 additions and 21 deletions.
2 changes: 2 additions & 0 deletions docs/ibc/proto-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,8 @@ See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-
| `controller_connection_id` | [string](#string) | | controller_connection_id is the connection identifier associated with the controller chain |
| `host_connection_id` | [string](#string) | | host_connection_id is the connection identifier associated with the host chain |
| `address` | [string](#string) | | address defines the interchain account address to be fulfilled upon the OnChanOpenTry handshake step NOTE: the address field is empty on the OnChanOpenInit handshake step |
| `encoding` | [string](#string) | | encoding defines the supported codec format |
| `tx_types` | [string](#string) | | tx_types defines the type of transactions the interchain account can execute |



Expand Down
148 changes: 127 additions & 21 deletions modules/apps/27-interchain-accounts/types/metadata.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions proto/ibc/applications/interchain_accounts/v1/metadata.proto
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,8 @@ message Metadata {
// address defines the interchain account address to be fulfilled upon the OnChanOpenTry handshake step
// NOTE: the address field is empty on the OnChanOpenInit handshake step
string address = 4;
// encoding defines the supported codec format
string encoding = 5;
// tx_types defines the type of transactions the interchain account can execute
string tx_types = 6;
}

0 comments on commit 9a07154

Please sign in to comment.