From ac85f07464dae79f4d9a09c99fca40bbe4ed981d Mon Sep 17 00:00:00 2001 From: jmd3v Date: Tue, 5 Nov 2024 10:16:42 -0300 Subject: [PATCH] feat: add optional spender property --- package.json | 2 +- src/squid/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 6021a1a..be601c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xsquid/squid-types", - "version": "0.1.114", + "version": "0.1.115", "description": "JS and TS types relating to 0xsquid related projects.", "main": "dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/squid/index.ts b/src/squid/index.ts index c1ac2e9..2474dfa 100644 --- a/src/squid/index.ts +++ b/src/squid/index.ts @@ -15,6 +15,7 @@ export enum SquidRouteType { export interface SquidData { routeType: SquidRouteType; target: string; + spender?: string; data: string; value: string; gasLimit?: string;