From ba68697cacb1ce470cc0df366d26b34a82dbb190 Mon Sep 17 00:00:00 2001 From: J Date: Thu, 3 Oct 2024 11:58:02 -0300 Subject: [PATCH] feat: add immutable types (#116) * feat: add immutable types * increase version * bump version --- package.json | 2 +- src/bridges/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ca1c0a4..1f8feb2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xsquid/squid-types", - "version": "0.1.110", + "version": "0.1.111", "description": "JS and TS types relating to 0xsquid related projects.", "main": "dist/index.js", "types": "./dist/index.d.ts", diff --git a/src/bridges/index.ts b/src/bridges/index.ts index 94c5f17..b2d3cd8 100644 --- a/src/bridges/index.ts +++ b/src/bridges/index.ts @@ -6,6 +6,7 @@ export enum BridgeType { IBC = "ibc", CHAINFLIP = "chainflip", RFQ = "rfq", + ITB = "immutable-token-bridge", } export enum BridgeProvider { @@ -16,6 +17,7 @@ export enum BridgeProvider { PFM = "IBC Packet forward middleware", CHAINFLIP = "Chainflip", RFQ = "RFQ", + IMMUTABLE = "Immutable", } export type BridgeConfig = Record;