Skip to content

Commit

Permalink
Merge pull request #14 from curvefi/fix/fxn-price
Browse files Browse the repository at this point in the history
Fix: fxn price
  • Loading branch information
Macket authored Apr 11, 2024
2 parents 16c8efa + 1d58538 commit c8c3b87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@curvefi/lending-api",
"version": "1.6.7",
"version": "1.6.8",
"description": "JavaScript library for Curve Lending",
"main": "lib/index.js",
"author": "Macket",
Expand Down
1 change: 1 addition & 0 deletions src/external-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export const _getAllPoolsFromApi = async (network: INetworkName): Promise<IExten
_getPoolsFromApi(network, "factory"),
_getPoolsFromApi(network, "factory-crvusd"),
_getPoolsFromApi(network, "factory-crypto"),
_getPoolsFromApi(network, "factory-twocrypto"),
_getPoolsFromApi(network, "factory-tricrypto"),
_getPoolsFromApi(network, "factory-stable-ng"),
]);
Expand Down
2 changes: 1 addition & 1 deletion src/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface IDict<T> {

export type INetworkName = "ethereum" | "bsc" | "optimism" | "xdai" | "polygon" | "fantom" | "zksync" | "moonbeam" | "kava" | "base" | "arbitrum" | "celo" | "avalanche" | "aurora";
export type IChainId = 1 | 10 | 56 | 100 | 137 | 250 | 324 | 1284 | 2222 | 8453 | 42161 | 42220 | 43114 | 1313161554;
export type IPoolFactory = "main" | "crypto" | "factory" | "factory-crvusd" | "factory-crypto" | "factory-tricrypto" | "factory-stable-ng";
export type IPoolFactory = "main" | "crypto" | "factory" | "factory-crvusd" | "factory-crypto" | "factory-twocrypto" | "factory-tricrypto" | "factory-stable-ng";
export interface ICurveContract {
contract: Contract,
multicallContract: MulticallContract,
Expand Down

0 comments on commit c8c3b87

Please sign in to comment.