Some checks failed
CodeQL / Analyze (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Buf-Push / push (push) Has been cancelled
23 lines
1.1 KiB
Protocol Buffer
23 lines
1.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ibc.applications.interchain_accounts.v1;
|
|
|
|
option go_package = "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types";
|
|
|
|
// Metadata defines a set of protocol specific data encoded into the ICS27 channel version bytestring
|
|
// See ICS004: https://github.com/cosmos/ibc/tree/master/spec/core/ics-004-channel-and-packet-semantics#Versioning
|
|
message Metadata {
|
|
// version defines the ICS27 protocol version
|
|
string version = 1;
|
|
// controller_connection_id is the connection identifier associated with the controller chain
|
|
string controller_connection_id = 2;
|
|
// host_connection_id is the connection identifier associated with the host chain
|
|
string host_connection_id = 3;
|
|
// 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_type defines the type of transactions the interchain account can execute
|
|
string tx_type = 6;
|
|
}
|