Skip to content

Commit 82da569

Browse files
authored
Merge pull request #452 from curvefi/feat/enable-volume-and-apy-for-sonic
fix: fixed getVolume and getVolumeApiController for sonic
2 parents 9650fcc + 3f2ed53 commit 82da569

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@curvefi/api",
3-
"version": "2.66.10",
3+
"version": "2.66.11",
44
"description": "JavaScript library for curve.fi",
55
"main": "lib/index.js",
66
"author": "Macket",

src/utils.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ export const getTVL = async (chainId = curve.chainId): Promise<number> => {
667667
}
668668

669669
export const getVolumeApiController = async (network: INetworkName): Promise<IVolumeAndAPYs> => {
670-
if(curve.isLiteChain) {
670+
if(curve.isLiteChain && curve.chainId !== 146) {
671671
throw Error('This method is not supported for the lite version')
672672
}
673673

@@ -685,7 +685,7 @@ export const getVolumeApiController = async (network: INetworkName): Promise<IVo
685685
}
686686

687687
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) {
689689
throw Error('This method is not supported for the lite version')
690690
}
691691

0 commit comments

Comments
 (0)