Function withChainCapabilities
- withChainCapabilities(chainInfo, opts?): Record<string, {
bech32Prefix?: string;
chainId: string;
connections?: Record<string, IBCConnectionInfo>;
icqEnabled: boolean;
pfmEnabled: boolean;
stakingTokens?: readonly {
denom: string;
}[];
}> Parameters
- chainInfo: Record<string, Readonly<{
bech32Prefix?: string;
chainId: string;
connections?: Record<string, IBCConnectionInfo>;
icqEnabled?: boolean;
pfmEnabled?: boolean;
stakingTokens?: readonly {
denom: string;
}[];
}>> Optional
opts: {
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;
}[];
}>