From c4f5b57aad716c1abdccd0379f28e19238ff5ae1 Mon Sep 17 00:00:00 2001 From: Marcin Ciarka Date: Wed, 25 Oct 2023 14:29:42 +0200 Subject: [PATCH] Added configurable flashLoanTokens --- configs/oasis-borrow/getParameters.ts | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/configs/oasis-borrow/getParameters.ts b/configs/oasis-borrow/getParameters.ts index 4eb2bf4..ab6aa7a 100644 --- a/configs/oasis-borrow/getParameters.ts +++ b/configs/oasis-borrow/getParameters.ts @@ -1,5 +1,5 @@ import { ConfigHelperType } from "⌨️"; -import {TokenSymbol} from "🤝"; +import { TokenSymbol } from "🤝"; export const getParameters = ({ notProduction, @@ -13,12 +13,13 @@ export const getParameters = ({ }, locationBanner: { GB: { - enabled: true, - closeable: false, - name: "uk_disclaimer", - url: "https://docs.summer.fi/legal/uk-disclaimer", - message: "UK disclaimer: This web application is provided as a tool for users to interact with third party DeFi protocols on their own initiative, with no endorsement or recommendation of ... Read more", - } + enabled: true, + closeable: false, + name: "uk_disclaimer", + url: "https://docs.summer.fi/legal/uk-disclaimer", + message: + "UK disclaimer: This web application is provided as a tool for users to interact with third party DeFi protocols on their own initiative, with no endorsement or recommendation of ... Read more", + }, }, aaveLike: { orderInformation: { @@ -32,5 +33,9 @@ export const getParameters = ({ collateral: [], strategyTypes: [], }, + flashLoanTokens: { + OPTIMISMMAINNET: "WETH", + BASEMAINNET: "USDBC", + }, }, });