Skip to content

Commit

Permalink
naming
Browse files Browse the repository at this point in the history
  • Loading branch information
steezeburger committed Dec 12, 2024
1 parent 7b06aef commit 43dbfdd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/config/chainConfigs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export interface CosmosChainInfo {
* This indicates which coin or token can be used for fee to send transaction.
* You can get actual currency information from Currencies.
*/
readonly feeCurrencies: FeeCurrency[];
readonly feeCurrencies: CosmosFeeCurrency[];

// The icon to use for this chain in the ui
readonly iconClass?: string;
Expand Down Expand Up @@ -131,7 +131,7 @@ export interface CosmosCurrency {
}

// Represents information about a currency used for fees.
export type FeeCurrency = WithGasPriceStep<CosmosCurrency>;
export type CosmosFeeCurrency = WithGasPriceStep<CosmosCurrency>;

/**
* Represents information about a currency that uses IBC.
Expand All @@ -146,7 +146,7 @@ export interface IbcCurrency extends CosmosCurrency {
}

/**
* Converts a map of IBC chains to an array of AssetList objects for use with CosmosKit.
* Converts a map of cosmos chains to an array of AssetList objects for use with CosmosKit.
*/
export function cosmosChainInfosToCosmosKitAssetLists(
cosmosChains: CosmosChains,
Expand Down

0 comments on commit 43dbfdd

Please sign in to comment.