From 85b670e4e8c5ec2ff5ba47f61472431097ecd47e Mon Sep 17 00:00:00 2001 From: defifofum Date: Thu, 3 Aug 2023 20:04:21 -0500 Subject: [PATCH] doc: Update Zap docs for types --- src/types/index.ts | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/types/index.ts b/src/types/index.ts index a72b68fd..9a062ef9 100644 --- a/src/types/index.ts +++ b/src/types/index.ts @@ -22,6 +22,11 @@ export enum LiquidityDex { ApeSwapV2 = 'ApeSwapV2', ApeSwapV3 = 'ApeSwapV3', PancakeSwapV2 = 'PancakeSwapV2', + /** + * Initially, LiquidityDex was for the price getter and that checks algebra pricing + * (gamma wraps over it so no pricing there). + * Now we use it for zapVersion as well where Gamma is better. + */ Algebra = 'Algebra', QuickswapV2 = 'QuickswapV2', UniswapV3 = 'UniswapV3', @@ -30,7 +35,8 @@ export enum LiquidityDex { export enum ZapVersion { External = 'External', //This will redirect users to Token.getLpUrl with get lp button on FE ZapV1 = 'ZapV1', //First original inhouse built non multicall zap - ZapV2 = 'ZapV2', //Second inhouse built dynamic multicall zap + // NOTE: ZapV2 is not yet operational + // ZapV2 = 'ZapV2', //Second inhouse built dynamic multicall zap Wido = 'Wido', //https://www.joinwido.com/ }