mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import AaveV2 from "./protocols/aave-v2";
|
|
import Compound from "./protocols/compound";
|
|
import Liquity from "./protocols/liquity";
|
|
|
|
export const protocolStrategies = {
|
|
aaveV2: AaveV2,
|
|
compound: Compound,
|
|
liquity: Liquity
|
|
};
|
|
|
|
export * from "./helpers";
|