diff --git a/README.md b/README.md index 502a0af..e1d18eb 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,14 @@ Frontend interface for the lending protocol built for DeFiGeek Community (DFGC). ## Setup 1. Clone the repository: + ```bash git clone https://github.com/DeFiGeek-Community/comet-interface cd comet-interface ``` 2. Install dependencies: + ```bash npm install # or @@ -37,7 +39,7 @@ yarn install ``` 3. Configure environment variables: -Copy `.env.example` to `.env` and set up the following environment variables: + Copy `.env.example` to `.env` and set up the following environment variables: ```bash # Alchemy Project Key @@ -51,11 +53,13 @@ NEXT_PUBLIC_INFURA_ID=your_infura_id ``` You can obtain the API keys from: + - Alchemy: https://www.alchemy.com/ - WalletConnect: https://cloud.walletconnect.com/ - Infura: https://www.infura.io/ 4. Start the development server: + ```bash npm run dev # or diff --git a/constants/pools.ts b/constants/pools.ts index 5bdb775..c311d1e 100644 --- a/constants/pools.ts +++ b/constants/pools.ts @@ -190,6 +190,21 @@ export const POOL_CONFIG_MAP: PoolConfigMap = { LiquidationPenalty: 1.5, supplyCap: 50000000, }, + { + name: "Yamawake DAO Token", + symbol: "YMWK", + address: "0x15Dac05C93e1c5F31a29547340997BA9f6ec4F87", + decimals: 18, + color: "#627EEA", + logoURL: "/tokens/YMWK.png", + priceFeed: "0x3c9FA87022De40bBCc1B3320D2996f7Df2d4fE34", + priceFeedDecimals: 8, + borrowCollateralFactor: 60, + liquidateCollateralFactor: 70, + liquidationFactor: 80, + LiquidationPenalty: 20, + supplyCap: 250000000, + }, ], }, [SupportedPoolName[SupportedChainId.MAINNET].USDC]: { diff --git a/public/tokens/YMWK.png b/public/tokens/YMWK.png new file mode 100644 index 0000000..b7ef622 Binary files /dev/null and b/public/tokens/YMWK.png differ