Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Add new collaterals to constants #306

Merged
merged 2 commits into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dai-plugin-liquidations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test": "yarn testchain --ci jest --runInBand"
},
"peerDependencies": {
"@makerdao/dai": "^0.41.0-alpha.2"
"@makerdao/dai": "^0.41.0"
},
"dependencies": {
"@makerdao/currency": "0.9.9",
Expand Down
6 changes: 5 additions & 1 deletion packages/dai-plugin-liquidations/src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ export const MCD_CLIP_TUSD_A = 'MCD_CLIP_TUSD_A';
export const MCD_CLIP_PAXUSD_A = 'MCD_CLIP_PAXUSD_A';
export const MCD_CLIP_GUSD_A = 'MCD_CLIP_GUSD_A';
export const MCD_CLIP_USDT_A = 'MCD_CLIP_USDT_A';
export const MCD_CLIP_MATIC_A = 'MCD_CLIP_MATIC_A';
export const MCD_CLIP_WSTETH_A = 'MCD_CLIP_WSTETH_A';

export const ALL_CLIPS = [
MCD_CLIP_AAVE_A,
Expand Down Expand Up @@ -64,5 +66,7 @@ export const ALL_CLIPS = [
MCD_CLIP_TUSD_A,
MCD_CLIP_PAXUSD_A,
MCD_CLIP_GUSD_A,
MCD_CLIP_USDT_A
MCD_CLIP_USDT_A,
MCD_CLIP_MATIC_A,
MCD_CLIP_WSTETH_A
];