• Parameters

    • chainInfo: Record<string, Readonly<{
          bech32Prefix?: string;
          chainId: string;
          connections?: Record<string, IBCConnectionInfo>;
          icqEnabled?: boolean;
          pfmEnabled?: boolean;
          stakingTokens?: readonly {
              denom: string;
          }[];
      }>>
    • Optionalopts: {
          IcqEnabled: Record<string, boolean>;
          PfmEnabled: Record<string, boolean>;
      } = ...
      • IcqEnabled: Record<string, boolean>
      • PfmEnabled: Record<string, boolean>

    Returns Record<string, {
        bech32Prefix?: string;
        chainId: string;
        connections?: Record<string, IBCConnectionInfo>;
        icqEnabled: boolean;
        pfmEnabled: boolean;
        stakingTokens?: readonly {
            denom: string;
        }[];
    }>