Skip to content

Commit

Permalink
doc: Update Zap docs for types
Browse files Browse the repository at this point in the history
  • Loading branch information
DeFiFoFum committed Aug 4, 2023
1 parent bc63944 commit 85b670e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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/
}

Expand Down

0 comments on commit 85b670e

Please sign in to comment.