Skip to content

Commit

Permalink
Merge pull request #438 from curvefi/fix/fix-lite-dao
Browse files Browse the repository at this point in the history
fix: fix dao config for lite
  • Loading branch information
fedorovdg authored Jan 6, 2025
2 parents e39be2c + c562ee2 commit f950f8c
Show file tree
Hide file tree
Showing 2 changed files with 2 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/api",
"version": "2.65.25",
"version": "2.65.26",
"description": "JavaScript library for curve.fi",
"main": "lib/index.js",
"author": "Macket",
Expand Down
2 changes: 1 addition & 1 deletion src/external-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,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 f950f8c

Please sign in to comment.