From c72197af691e504b18e63513db95215aef1a9453 Mon Sep 17 00:00:00 2001 From: doyledyp Date: Mon, 28 Sep 2020 15:08:27 +0100 Subject: [PATCH] Stake Workout --- src/state/stake/hooks.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/state/stake/hooks.ts b/src/state/stake/hooks.ts index ce7cd0c..186f7f3 100644 --- a/src/state/stake/hooks.ts +++ b/src/state/stake/hooks.ts @@ -1,6 +1,6 @@ import { ChainId, CurrencyAmount, JSBI, Token, TokenAmount, WETH, Pair } from '@uniswap/sdk' import { useMemo } from 'react' -import { UNI, USDC, USDT, WBTC, DYP } from '../../constants' +import { DAI, UNI, USDC, USDT, WBTC, DYP } from '../../constants' // import { DAI, UNI, USDC, USDT, WBTC, DYP } from '../../constants' import { STAKING_REWARDS_INTERFACE } from '../../constants/abis/staking-rewards' import { useActiveWeb3React } from '../../hooks' @@ -19,11 +19,6 @@ export const STAKING_REWARDS_INFO: { }[] } = { [ChainId.MAINNET]: [ - // { - // // stakingRewardAddress: address of liq pool - // tokens: [WETH[ChainId.MAINNET], DAI], - // stakingRewardAddress: '0xa1484C3aa22a66C62b77E0AE78E15258bd0cB711' - // }, { // stakingRewardAddress: address of liq pool tokens: [DYP, WETH[ChainId.MAINNET]], @@ -40,6 +35,11 @@ export const STAKING_REWARDS_INFO: { { tokens: [DYP, WBTC], stakingRewardAddress: '0xCA35e32e7926b96A9988f61d510E038108d8068e' + }, + { + // stakingRewardAddress: address of liq pool + tokens: [WETH[ChainId.MAINNET], DAI], + stakingRewardAddress: '0xa1484C3aa22a66C62b77E0AE78E15258bd0cB711' } ] }