Skip to content

Commit

Permalink
fix: fix dao config for lite
Browse files Browse the repository at this point in the history
  • Loading branch information
fedorovdg committed Jan 6, 2025
1 parent e39be2c commit 3c5f9ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/external-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
IPoolType,
IVolumeAndAPYs,
} from "./interfaces";
import curve from "./index";


export const _getPoolsFromApi = memoize(
Expand Down Expand Up @@ -279,7 +280,7 @@ export const _getLiteNetworksData = memoize(
deposit_and_stake: contracts.helpers.deposit_and_stake_zap.address.toLowerCase(),
stable_ng_meta_zap: contracts.helpers.stable_swap_meta_zap.address.toLowerCase(),

crv: config.dao.crv.toLowerCase(),
crv: config.dao.crv ? config.dao.crv.toLowerCase() : '0x0000000000000000000000000000000000000000',
},
NATIVE_COIN: {
symbol: native_currency_symbol,
Expand Down

0 comments on commit 3c5f9ca

Please sign in to comment.