File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @curvefi/api" ,
3
- "version" : " 2.66.10 " ,
3
+ "version" : " 2.66.11 " ,
4
4
"description" : " JavaScript library for curve.fi" ,
5
5
"main" : " lib/index.js" ,
6
6
"author" : " Macket" ,
Original file line number Diff line number Diff line change @@ -667,7 +667,7 @@ export const getTVL = async (chainId = curve.chainId): Promise<number> => {
667
667
}
668
668
669
669
export const getVolumeApiController = async ( network : INetworkName ) : Promise < IVolumeAndAPYs > => {
670
- if ( curve . isLiteChain ) {
670
+ if ( curve . isLiteChain && curve . chainId !== 146 ) {
671
671
throw Error ( 'This method is not supported for the lite version' )
672
672
}
673
673
@@ -685,7 +685,7 @@ export const getVolumeApiController = async (network: INetworkName): Promise<IVo
685
685
}
686
686
687
687
export const getVolume = async ( chainId = curve . chainId ) : Promise < { totalVolume : number , cryptoVolume : number , cryptoShare : number } > => {
688
- if ( curve . isLiteChain ) {
688
+ if ( curve . isLiteChain && curve . chainId !== 146 ) {
689
689
throw Error ( 'This method is not supported for the lite version' )
690
690
}
691
691
You can’t perform that action at this time.
0 commit comments