diff --git a/src/mappings/pool/index.ts b/src/mappings/pool/index.ts index 60a48760..d3ce4824 100644 --- a/src/mappings/pool/index.ts +++ b/src/mappings/pool/index.ts @@ -1,8 +1,6 @@ -import { handleBurn as handleBurnHelper } from './burn' -import { handleInitialize as handleInitializeHelper } from './initialize' -import { handleMint as handleMintHelper } from './mint' -import { handleSwap as handleSwapHelper } from './swap' -export const handleInitialize = handleInitializeHelper -export const handleMint = handleMintHelper -export const handleBurn = handleBurnHelper -export const handleSwap = handleSwapHelper +import { handleBurn } from './burn' +import { handleInitialize } from './initialize' +import { handleMint } from './mint' +import { handleSwap } from './swap' + +export { handleInitialize, handleMint, handleBurn, handleSwap }