Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

fix: Create index files for Uniswap V2 and Olympus modules #255

Merged
merged 1 commit into from
Apr 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/apps/olympus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ export { OLYMPUS_DEFINITION, OlympusAppDefinition } from './olympus.definition';
export { OlympusAppModule } from './olympus.module';
export { OlympusContractFactory } from './contracts';

export { OlympusBondV1ContractPositionBalanceHelper } from './helpers/olympus.bond-v1.contract-position-balance-helper';
export { OlympusBondV2ContractPositionBalanceHelper } from './helpers/olympus.bond-v2.contract-position-balance-helper';
export { OlympusBondContractPositionHelper } from './helpers/olympus.bond.contract-position-helper';
export { OlympusBridgeTokenHelper } from './helpers/olympus.bridge-token-helper';

export type { OlympusV2BondDepository } from './contracts';
export type { OlympusGOhmToken } from './contracts';
export type { OlympusSOhmToken } from './contracts';
Expand Down
1 change: 1 addition & 0 deletions src/apps/synthetix/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export { SYNTHETIX_DEFINITION, SynthetixAppDefinition } from './synthetix.definition';
export { SynthetixAppModule } from './synthetix.module';
export { SynthetixContractFactory } from './contracts';

export { SynthetixSingleStakingFarmContractPositionBalanceHelper } from './helpers/synthetix.single-staking-farm-contract-position-balance-helper';
export { SynthetixSingleStakingFarmContractPositionHelper } from './helpers/synthetix.single-staking-farm-contract-position-helper';
export { SynthetixSingleStakingIsActiveStrategy } from './helpers/synthetix.single-staking.is-active-strategy';
Expand Down
16 changes: 16 additions & 0 deletions src/apps/uniswap-v2/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export { UNISWAP_V2_DEFINITION, UniswapV2AppDefinition } from './uniswap-v2.definition';
export { UniswapV2AppModule } from './uniswap-v2.module';
export { UniswapV2ContractFactory } from './contracts';

export { UniswapV2OnChainPoolTokenAddressStrategy } from './helpers/uniswap-v2.on-chain.pool-token-address-strategy';
export { UniswapV2PoolTokenHelper } from './helpers/uniswap-v2.pool.token-helper';
export { UniswapV2TheGraphPoolTokenAddressStrategy } from './helpers/uniswap-v2.the-graph.pool-token-address-strategy';
export { UniswapV2TheGraphPoolTokenBalanceHelper } from './helpers/uniswap-v2.the-graph.pool-token-balance-helper';
export { UniswapV2TheGraphPoolVolumeStrategy } from './helpers/uniswap-v2.the-graph.pool-volume-strategy';

export type { UniswapFactory } from './contracts';
export type { UniswapPair } from './contracts';
export type {
UniswapV2PoolTokenDataProps,
UniswapV2PoolTokenHelperParams,
} from './helpers/uniswap-v2.pool.token-helper';