Skip to content

Commit

Permalink
feat(dapp): replace dsr base strat with sky farm
Browse files Browse the repository at this point in the history
  • Loading branch information
pocin committed Dec 3, 2024
1 parent 590e361 commit 9ac8121
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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',
}
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp/src/constants/env/local.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ const env: Environment = {
templeDaiBalancerPool: '',
balancerHelpers: '',
strategies: {
dsrBaseStrategy: '',
ramosStrategy: '',
templeStrategy: '',
tlcStrategy: '',
temploMayorGnosisStrategy: '',
fohmoGnosisStrategy: '',
daiSkyFarmBaseStrategy: '0x5d8e464fca8d327fad016ea8cf3424cb113c07a8',
},
daiCircuitBreaker: '',
templeCircuitBreaker: '',
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp/src/constants/env/preview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp/src/constants/env/production.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion apps/dapp/src/constants/env/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9ac8121

Please sign in to comment.