Function withChainCapabilities
- withChainCapabilities<T>(chainInfo, opts?): {
[K in string | number | symbol]: T[K] & {
cctpDestinationDomain?: number;
icaEnabled: boolean;
icqEnabled: boolean;
pfmEnabled: boolean;
}
} Parameters
- chainInfo: T
Optional
opts: {
IcaEnabled?: Record<string, boolean>;
IcqEnabled?: Record<string, boolean>;
PfmEnabled?: Record<string, boolean>;
} = {}Optional
IcaEnabled?: Record<string, boolean>
Optional
IcqEnabled?: Record<string, boolean>
Optional
PfmEnabled?: Record<string, boolean>
Returns {
[K in string | number | symbol]: T[K] & {
cctpDestinationDomain?: number;
icaEnabled: boolean;
icqEnabled: boolean;
pfmEnabled: boolean;
}
}
Adds chain capabilities to cosmos chains that are not currently indexed in
@cosmos/chain-registry
but are necessary for@agoric/orchestration
.