From 8d81be3fb01793ba57270a716daded44749f90f0 Mon Sep 17 00:00:00 2001 From: leoslr <50319677+leoslr@users.noreply.github.com> Date: Fri, 4 Feb 2022 15:11:18 +0100 Subject: [PATCH] fix: conversion for arbitrum (#761) --- packages/currency/src/chainlink-path-aggregators.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/currency/src/chainlink-path-aggregators.ts b/packages/currency/src/chainlink-path-aggregators.ts index 53e35d8bde..38d093fbc5 100644 --- a/packages/currency/src/chainlink-path-aggregators.ts +++ b/packages/currency/src/chainlink-path-aggregators.ts @@ -17,6 +17,10 @@ export const chainlinkCurrencyPairs: Record = { mainnet: mainnetAggregator, matic: maticAggregator, fantom: fantomAggregator, + // FIX ME: This fix enables to get these networks registered in chainlinkSupportedNetworks. + // Could be improved by removing the supported network check from the protocol + 'arbitrum-rinkeby': {}, + 'arbitrum-one': {}, }; export const chainlinkSupportedNetworks = Object.keys(chainlinkCurrencyPairs);