From ddce68aeadc906d975349ad52a420b3303db186e Mon Sep 17 00:00:00 2001 From: nnoln <48334589+nnoln@users.noreply.github.com> Date: Tue, 18 Jun 2024 13:35:19 -0300 Subject: [PATCH] add estimated duration for action type (#75) --- package.json | 2 +- src/routes/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 78bbdaa..80f672b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xsquid/squid-types", - "version": "0.1.80", + "version": "0.1.81", "description": "JS and TS types relating to 0xsquid related projects.", "main": "dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/routes/index.ts b/src/routes/index.ts index 282db48..d659882 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -88,6 +88,7 @@ export interface RouteAction extends QuoteAction { provider?: string; description?: string; logoURI?: string; + estimatedDuration?: number; data: SwapDetails | WrapDetails | BridgeDetails | CustomCallDetails; }