Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cosmos.network/llms.txt

Use this file to discover all available pages before exploring further.

The 09-localhost light client module registers codec types within the core IBC module. This differs from other light client module implementations which are expected to register codec types using the AppModuleBasic interface. The localhost client is added to the 02-client submodule param allowed_clients by default in ibc-go.
var (
  / DefaultAllowedClients are the default clients for the AllowedClients parameter.
  DefaultAllowedClients = []string{
    exported.Solomachine, exported.Tendermint, exported.Localhost
}
)