CosmosChainInfo: {
    allowedMessages: TypeUrl[];
    allowedQueries: TypeUrl[];
    chainId: string;
    ibcConnectionInfo: {
        client_id: string;
        counterparty: {
            client_id: string;
            connection_id: string;
            prefix: {
                key_prefix: string;
            };
        };
        delay_period: bigint;
        id: string;
        state: "OPEN" | "TRYOPEN" | "INIT" | "CLOSED";
        versions: {
            features: string[];
            identifier: string;
        }[];
    };
    ibcHooksEnabled: boolean;
    icaEnabled: boolean;
    icqEnabled: boolean;
    pfmEnabled: boolean;
}

Info for a Cosmos-based chain.

Type declaration

  • allowedMessages: TypeUrl[]
  • allowedQueries: TypeUrl[]
  • chainId: string
  • ibcConnectionInfo: {
        client_id: string;
        counterparty: {
            client_id: string;
            connection_id: string;
            prefix: {
                key_prefix: string;
            };
        };
        delay_period: bigint;
        id: string;
        state: "OPEN" | "TRYOPEN" | "INIT" | "CLOSED";
        versions: {
            features: string[];
            identifier: string;
        }[];
    }
    • client_id: string
    • counterparty: {
          client_id: string;
          connection_id: string;
          prefix: {
              key_prefix: string;
          };
      }
      • client_id: string
      • connection_id: string
      • prefix: {
            key_prefix: string;
        }
        • key_prefix: string
    • delay_period: bigint
    • id: string
    • state: "OPEN" | "TRYOPEN" | "INIT" | "CLOSED"
    • versions: {
          features: string[];
          identifier: string;
      }[]
  • ibcHooksEnabled: boolean
  • icaEnabled: boolean
  • icqEnabled: boolean
  • pfmEnabled: boolean