From 3852b7e356b1834b80178ce82035a7be1bbb6a37 Mon Sep 17 00:00:00 2001 From: Ronaldo Rigoni Date: Mon, 13 May 2024 15:52:25 -0300 Subject: [PATCH] Feat/450 pool wrapper addr (#46) * v0.1.61-dev4 * Feat/add blast chain (#42) * chore: add new blast chain * chore: increment package version for release * add types for aero/velodrome slipstream (#44) * Added address for pool action --------- Co-authored-by: rajat43 <89901304+rajat43@users.noreply.github.com> Co-authored-by: jmd3v Co-authored-by: Cory <146833132+corysquid@users.noreply.github.com> --- package.json | 2 +- src/dexes/index.ts | 3 +++ src/routes/index.ts | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6bd9635..84055e3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xsquid/squid-types", - "version": "0.1.63", + "version": "0.1.64", "description": "JS and TS types relating to 0xsquid related projects.", "main": "dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/dexes/index.ts b/src/dexes/index.ts index 5619bef..8044d4b 100644 --- a/src/dexes/index.ts +++ b/src/dexes/index.ts @@ -9,6 +9,7 @@ export interface Dex { export enum DexName { AGNI_V3 = "Agni-v3", AERODROME = "Aerodrome", + AERODROME_V3 = "Aerodrome-v3", APESWAP = "Apeswap", APESWAP_V3 = "Apeswap-v3", BALANCER_V2 = "Balancer-v2", @@ -62,6 +63,7 @@ export enum DexName { WOMBAT = "Wombat", VELODROME = "Velodrome", VELODROME_V2 = "Velodrome-v2", + VELODROME_V3 = "Velodrome-v3", VELOCIMETER = "Velocimeter", ZYBERSWAP = "Zyberswap", ZYBERSWAP_V3 = "Zyberswap-v3", @@ -78,6 +80,7 @@ export enum DexType { PLATYPUS = "platypus", PANCAKESWAP_STABLE = "pancakeswap-stable", SADDLE = "saddle", + SLIPSTREAM = "slipstream", SOLIDLY = "solidly", TRIDENT = "trident", WOMBAT = "wombat", diff --git a/src/routes/index.ts b/src/routes/index.ts index 4949e8a..fd73191 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -136,6 +136,7 @@ export interface SwapDetails { isStable?: boolean; exchangeId?: string; exchangeProvider?: string; + address?: string; custom?: Record; }