Skip to content

Commit

Permalink
feat: CosmosChainInfo includes pfmEnabled?: boolean
Browse files Browse the repository at this point in the history
- in order to determine whether its possible to route a transfer through a particular ibc chain, we must know if they have the PFM module installed
  • Loading branch information
0xpatrickdev committed Nov 26, 2024
1 parent 1dd4589 commit e1c35da
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/orchestration/src/cosmos-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ export type CosmosChainInfo = Readonly<{
connections?: Record<string, IBCConnectionInfo>; // chainId or wellKnownName
// UNTIL https://github.com/Agoric/agoric-sdk/issues/9326
icqEnabled?: boolean;

/**
* Note: developers must provide this value themselves for `.transfer` to work
* as expected. Please see examples for details.
*/
pfmEnabled?: boolean;
/**
* cf https://github.com/cosmos/chain-registry/blob/master/chain.schema.json#L117
*/
Expand Down

0 comments on commit e1c35da

Please sign in to comment.