diff --git a/src/apps/liquity/index.ts b/src/apps/liquity/index.ts new file mode 100644 index 000000000..484e65a34 --- /dev/null +++ b/src/apps/liquity/index.ts @@ -0,0 +1,7 @@ +export { LIQUITY_DEFINITION, LiquityAppDefinition } from './liquity.definition'; +export { LiquityAppModule } from './liquity.module'; +export { LiquityContractFactory } from './contracts'; + +export type { LiquityStaking } from './contracts'; +export type { StabilityPool } from './contracts'; +export type { TroveManager } from './contracts'; diff --git a/src/apps/teddy-cash/index.ts b/src/apps/teddy-cash/index.ts new file mode 100644 index 000000000..aa11372a9 --- /dev/null +++ b/src/apps/teddy-cash/index.ts @@ -0,0 +1,2 @@ +export { TEDDY_CASH_DEFINITION, TeddyCashAppDefinition } from './teddy-cash.definition'; +export { TeddyCashAppModule } from './teddy-cash.module'; diff --git a/src/apps/tokemak/index.ts b/src/apps/tokemak/index.ts new file mode 100644 index 000000000..f14255e0f --- /dev/null +++ b/src/apps/tokemak/index.ts @@ -0,0 +1,7 @@ +export { TOKEMAK_DEFINITION, TokemakAppDefinition } from './tokemak.definition'; +export { TokemakAppModule } from './tokemak.module'; +export { TokemakContractFactory } from './contracts'; + +export type { TokemakReactor } from './contracts'; +export type { TokemakRewards } from './contracts'; +export type { TokemakTokeStaking } from './contracts';