Skip to content

Commit

Permalink
updated id for pool w/ pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
bifot committed Feb 20, 2023
1 parent 898db5a commit 1b7c219
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/adaptors/rehold/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ async function apy() {

const pools = [];

Object.entries(pairs).forEach(([symbol, apr], i) => {
Object.entries(pairs).forEach(([symbol, apr]) => {
const [baseToken, quoteToken] = symbol.split('-');

pools.push({
pool: `${i}-${CHAIN}`, // we don't have a specific contract address for each pool
pool: `${VAULT}-${CHAIN}`, // we don't have a specific contract address for each pool
chain: utils.formatChain(CHAIN),
project: SLUG,
symbol,
Expand Down

0 comments on commit 1b7c219

Please sign in to comment.