-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
200 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
const AaveV3HydrationTestnet = { | ||
POOL_ADDRESSES_PROVIDER: "0x82db570265c37bE24caf5bc943428a6848c3e9a6", | ||
POOL: "0xf550bCd9B766843D72fC4C809a839633fD09b643", | ||
WETH_GATEWAY: "", | ||
FAUCET: "", | ||
WALLET_BALANCE_PROVIDER: "0x98C63E4299fF188572Fffdc471f23B39a30342b4", | ||
UI_POOL_DATA_PROVIDER: "0x5a21aFD0fF9E5D76F58BEd8aE34AABE0c41e65bc", | ||
UI_INCENTIVE_DATA_PROVIDER: "0xc7A1dB5Aa56a5F07E758D8d8804B17B4cA7c889B", | ||
GHO_TOKEN_ADDRESS: "", | ||
GHO_UI_DATA_PROVIDER: "", | ||
} | ||
|
||
const AaveV3HydrationMainnet = { | ||
POOL_ADDRESSES_PROVIDER: "", | ||
POOL: "", | ||
WETH_GATEWAY: "", | ||
FAUCET: "", | ||
WALLET_BALANCE_PROVIDER: "", | ||
UI_POOL_DATA_PROVIDER: "", | ||
UI_INCENTIVE_DATA_PROVIDER: "", | ||
GHO_TOKEN_ADDRESS: "", | ||
GHO_UI_DATA_PROVIDER: "", | ||
} | ||
|
||
export const AaveV3Hydration = | ||
import.meta.env.VITE_ENV === "production" | ||
? AaveV3HydrationMainnet | ||
: AaveV3HydrationTestnet |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/sections/lending/ui/money-market/MoneyMarketCountdown.styled.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import styled from "@emotion/styled" | ||
import { theme } from "theme" | ||
|
||
export const SContent = styled.div` | ||
--border-color: rgba(152, 176, 214, 0.27); | ||
position: relative; | ||
padding: 20px; | ||
color: white; | ||
background: ${theme.colors.darkBlue700}; | ||
border: 1px solid var(--border-color); | ||
border-radius: ${theme.borderRadius.medium}px; | ||
text-align: center; | ||
` |
Oops, something went wrong.