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; }