mirror of
https://github.com/Instadapp/assembly.git
synced 2024-07-29 22:37:06 +00:00
11 lines
261 B
TypeScript
11 lines
261 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" |