github.com/okex/exchain@v1.8.0/libs/ibc-go/proto/ibc/applications/interchain_accounts/host/v1/host.proto (about) 1 syntax = "proto3"; 2 3 package ibc.applications.interchain_accounts.host.v1; 4 5 option go_package = "github.com/cosmos/ibc-go/v4/modules/apps/27-interchain-accounts/host/types"; 6 7 import "gogoproto/gogo.proto"; 8 9 // Params defines the set of on-chain interchain accounts parameters. 10 // The following parameters may be used to disable the host submodule. 11 message Params { 12 // host_enabled enables or disables the host submodule. 13 bool host_enabled = 1 [(gogoproto.moretags) = "yaml:\"host_enabled\""]; 14 // allow_messages defines a list of sdk message typeURLs allowed to be executed on a host chain. 15 repeated string allow_messages = 2 [(gogoproto.moretags) = "yaml:\"allow_messages\""]; 16 }