assembly/core/strategies/index.ts

7 lines
127 B
TypeScript
Raw Normal View History

2021-08-22 11:27:02 +00:00
import AaveV2 from "./protocols/aave-v2"
2021-08-22 12:54:23 +00:00
export const protocolStrategies = {
2021-08-22 11:27:02 +00:00
aaveV2 : AaveV2,
2021-08-22 13:49:31 +00:00
}
2021-08-22 17:35:46 +00:00
export * from "./helpers"