Skip to content

Commit

Permalink
chore: refactor interface
Browse files Browse the repository at this point in the history
  • Loading branch information
wow-alpaca committed May 22, 2023
1 parent cdebd0f commit 864c10b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion deploy/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ interface UpgradableContract {
proxy: string;
}

interface AccountManager extends UpgradableContract {}

export interface Config {
moneyMarket: MoneyMarket;
miniFL: MiniFL;
Expand All @@ -28,7 +30,7 @@ export interface MoneyMarket {
viewFacet: string;
};
markets: Market[];
accountManager: UpgradableContract;
accountManager: AccountManager;
}

export interface MiniFL {
Expand Down

0 comments on commit 864c10b

Please sign in to comment.