diff --git a/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/DashboardConfig.tsx b/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/DashboardConfig.tsx index c3134bc0d..92c7df482 100644 --- a/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/DashboardConfig.tsx +++ b/apps/dapp/src/components/Pages/Core/DappPages/Dashboard/DashboardConfig.tsx @@ -8,7 +8,7 @@ export enum StrategyKey { RAMOS = 'RamosStrategy', TLC = 'TlcStrategy', TEMPLEBASE = 'TempleBaseStrategy', - DSRBASE = 'DsrBaseStrategy', + SKY_FARM_BASE = 'DaiSkyFarmBaseStrategy', TEMPLO_MAYOR_GNOSIS = 'TemploMayorStrategy', FOHMO_GNOSIS = 'FohmoStrategy', } @@ -69,13 +69,13 @@ export const Dashboards: DashboardData[] = [ contractLink: `${env.etherscan}/address/${env.contracts.strategies.templeStrategy}`, }, { - key: StrategyKey.DSRBASE, - name: 'DSR Base', - title: 'DSR BASE', - path: 'dsrbase', + key: StrategyKey.SKY_FARM_BASE, + name: 'Sky Farm Base', + title: 'SKY FARM BASE', + path: 'skyfarmbase', description: - 'Idle reserve capital in the TRV that is not currently borrowed by a Strategy Borrower will be automatically directed to a Base Strategy to earn yield. The TRV Base Strategy is currently set to the Dai Savings Rate (DSR) or sDAI. The current rate of return for the Base Strategy also serves as the performance benchmark or "risk-free" interest rate for Treasury Strategies.', - contractLink: `${env.etherscan}/address/${env.contracts.strategies.dsrBaseStrategy}`, + 'Idle reserve capital in the TRV that is not currently borrowed by a Strategy Borrower will be automatically directed to a Base Strategy to earn yield. The TRV Base Strategy is currently set to the Sky Farm Base Strategy. The current rate of return for the Base Strategy also serves as the performance benchmark or "risk-free" interest rate for Treasury Strategies.', + contractLink: `${env.etherscan}/address/${env.contracts.strategies.daiSkyFarmBaseStrategy}`, }, { key: StrategyKey.TEMPLO_MAYOR_GNOSIS, diff --git a/apps/dapp/src/constants/env/local.tsx b/apps/dapp/src/constants/env/local.tsx index a27828d45..e22434698 100644 --- a/apps/dapp/src/constants/env/local.tsx +++ b/apps/dapp/src/constants/env/local.tsx @@ -44,12 +44,12 @@ const env: Environment = { templeDaiBalancerPool: '', balancerHelpers: '', strategies: { - dsrBaseStrategy: '', ramosStrategy: '', templeStrategy: '', tlcStrategy: '', temploMayorGnosisStrategy: '', fohmoGnosisStrategy: '', + daiSkyFarmBaseStrategy: '0x5d8e464fca8d327fad016ea8cf3424cb113c07a8', }, daiCircuitBreaker: '', templeCircuitBreaker: '', diff --git a/apps/dapp/src/constants/env/preview.tsx b/apps/dapp/src/constants/env/preview.tsx index fdfa72922..879be32de 100644 --- a/apps/dapp/src/constants/env/preview.tsx +++ b/apps/dapp/src/constants/env/preview.tsx @@ -44,12 +44,12 @@ const env: Environment = { templeDaiBalancerPool: '', balancerHelpers: '0xdAE7e32ADc5d490a43cCba1f0c736033F2b4eFca', strategies: { - dsrBaseStrategy: '0x472C7cDb6E730ff499E118dE6260c6b44c61d7bf', ramosStrategy: '0xB9507b59f91FF320631d30f774142631b30C537A', templeStrategy: '0xECe4ff1bd589b488350557A5C36D823C7B47E82F', tlcStrategy: '0x415A9B41700AC645d9C22F2499a6E853b625F792', temploMayorGnosisStrategy: '', fohmoGnosisStrategy: '', + daiSkyFarmBaseStrategy: '0x5d8e464fca8d327fad016ea8cf3424cb113c07a8', }, daiCircuitBreaker: '0x30AC664062f58b6E4DF187713a2352385633B739', templeCircuitBreaker: '0x8f783c4A3d90712A794d5660b632AC67611852aF', diff --git a/apps/dapp/src/constants/env/production.tsx b/apps/dapp/src/constants/env/production.tsx index d961619fa..07f03df44 100644 --- a/apps/dapp/src/constants/env/production.tsx +++ b/apps/dapp/src/constants/env/production.tsx @@ -188,12 +188,12 @@ const env: Environment = { '0x8bd4a1e74a27182d23b98c10fd21d4fbb0ed4ba00002000000000000000004ed', balancerHelpers: '0x5aDDCCa35b7A0D07C74063c48700C8590E87864E', strategies: { - dsrBaseStrategy: '0x8b9e20D9970Af54fbaFe64049174e24d6DE0C412', ramosStrategy: '0xDA5CeF575eaEF14032C5006eb5cbEbE7eE0E347b', templeStrategy: '0xB8d09B0436adF927004Cea0B096E8c05f6dFdc3b', tlcStrategy: '0xcABDE42dd767361739bD7c09C6E574057080ef01', temploMayorGnosisStrategy: '0xb28FEC0EE90680EE25d42e8101159a72E359be7c', fohmoGnosisStrategy: '0xF179C63735690d2C08cfb231d15c0c7ac3A2Bc67', + daiSkyFarmBaseStrategy: '0x5d8e464fca8d327fad016ea8cf3424cb113c07a8', }, daiCircuitBreaker: '0x02607d6bc3146bb3d3022e991ef54f545988fb7b', templeCircuitBreaker: '0x0745D453A19DfEAd0e5fd350a231D878F5c71b8D', diff --git a/apps/dapp/src/constants/env/types.ts b/apps/dapp/src/constants/env/types.ts index ea8dc6eab..7eb31c111 100644 --- a/apps/dapp/src/constants/env/types.ts +++ b/apps/dapp/src/constants/env/types.ts @@ -46,12 +46,12 @@ interface Contracts { vaultEarlyExit: string; ramos: string; strategies: { - dsrBaseStrategy: string; ramosStrategy: string; templeStrategy: string; tlcStrategy: string; temploMayorGnosisStrategy: string; fohmoGnosisStrategy: string; + daiSkyFarmBaseStrategy: string; }; ramosPoolHelper: string; templeDaiBalancerPool: string;