diff --git a/package.json b/package.json index c8ab0b01..6dbf030b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@curvefi/api", - "version": "2.65.10", + "version": "2.65.11", "description": "JavaScript library for curve.fi", "main": "lib/index.js", "author": "Macket", diff --git a/src/utils.ts b/src/utils.ts index 4a19b2a4..074a0435 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -624,10 +624,6 @@ const _getNetworkName = (network: INetworkName | IChainId = curve.chainId): INet } export const getTVL = async (network: INetworkName | IChainId = curve.chainId): Promise => { - if(curve.isLiteChain) { - throw Error('This method is not supported for the lite version') - } - network = _getNetworkName(network); const allTypesExtendedPoolData = await _getAllPoolsFromApi(network);