diff --git a/src/0xsquid/v1/chains.ts b/src/0xsquid/v1/chains.ts index b9152d3..c78c805 100644 --- a/src/0xsquid/v1/chains.ts +++ b/src/0xsquid/v1/chains.ts @@ -98,7 +98,8 @@ export const parseCosmosChain = (data: any): CosmosChain => { coinType, features, gasPriceStep, - chainToAxelarChannelId + chainToAxelarChannelId, + rpcList } = data; return removeEmpty({ @@ -115,7 +116,8 @@ export const parseCosmosChain = (data: any): CosmosChain => { coinType, features, gasPriceStep, - chainToAxelarChannelId + chainToAxelarChannelId, + rpcList }) as CosmosChain; }; diff --git a/src/types/index.ts b/src/types/index.ts index 3cc1e84..788a1e2 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -130,6 +130,7 @@ export type CosmosChain = BaseChain & { features?: string[]; gasPriceStep?: CosmosGasType; chainToAxelarChannelId: string; + rpcList: string[]; }; export type ChainData = EvmChain | CosmosChain;