Skip to content

Commit

Permalink
Fix/fusd v2 (#35)
Browse files Browse the repository at this point in the history
* fix fusdv2 logo

* add new version
  • Loading branch information
mul53 authored Dec 2, 2022
1 parent 616612f commit 07eeb07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fuseio/earn-sdk",
"version": "1.0.3",
"version": "1.0.4",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions src/rewards/ChefRewardProgram.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default class ChefRewardProgram extends RewardProgram {

pairPrice = await fetchVoltageTokenPrice(VOLT, networkId)
} else if (pairAddress.toLowerCase() === FUSD.toLowerCase()) {
const token0 = await fetchTokenInfo(VOLT, this.web3)
tokens = [{ id: VOLT, ...token0 }, null]
const token0 = await fetchTokenInfo(FUSD, this.web3)
tokens = [{ id: FUSD, ...token0 }, null]

reserves = [globalTotalStake, null]

Expand Down

0 comments on commit 07eeb07

Please sign in to comment.