From 72525ff7be09004eb99236cb323d1b08f2d11f62 Mon Sep 17 00:00:00 2001 From: corysquid <146833132+corysquid@users.noreply.github.com> Date: Tue, 11 Jun 2024 17:56:44 -0700 Subject: [PATCH 1/3] chore: add Immutable types - ChainName and NetworkIdentifier --- src/chains/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/chains/index.ts b/src/chains/index.ts index 9b8fb7a..6fcbee4 100644 --- a/src/chains/index.ts +++ b/src/chains/index.ts @@ -115,6 +115,7 @@ export enum ChainName { FANTOM = "Fantom", FILECOIN = "filecoin", FILECOIN2 = "filecoin-2", //testnet + IMMUTABLE_ZKEVM = "immutable", KAVA = "kava", MANTLE = "mantle", MOONBEAM = "Moonbeam", @@ -167,6 +168,7 @@ export enum NetworkIdentifier { CELO = "celo", FANTOM = "fantom", FILECOIN = "filecoin", + IMMUTABLE = "immutable", KAVA = "kava", MANTLE = "mantle", MOONBEAM = "moonbeam", From 58790a71f35782e619e50c3ab59ab59ed17b292f Mon Sep 17 00:00:00 2001 From: corysquid <146833132+corysquid@users.noreply.github.com> Date: Wed, 12 Jun 2024 17:44:57 -0700 Subject: [PATCH 2/3] chore: use IMMUTABLE_ZKEVM type --- src/chains/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chains/index.ts b/src/chains/index.ts index 6fcbee4..db2d8f8 100644 --- a/src/chains/index.ts +++ b/src/chains/index.ts @@ -168,7 +168,7 @@ export enum NetworkIdentifier { CELO = "celo", FANTOM = "fantom", FILECOIN = "filecoin", - IMMUTABLE = "immutable", + IMMUTABLE_ZKEVM = "immutable", KAVA = "kava", MANTLE = "mantle", MOONBEAM = "moonbeam", From 091122b0aa9f44e0aba32a06499c4dfbf4ccc5ed Mon Sep 17 00:00:00 2001 From: corysquid <146833132+corysquid@users.noreply.github.com> Date: Wed, 12 Jun 2024 18:04:50 -0700 Subject: [PATCH 3/3] chore: increase package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b799569..5a196c6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@0xsquid/squid-types", - "version": "0.1.78", + "version": "0.1.79", "description": "JS and TS types relating to 0xsquid related projects.", "main": "dist/index.js", "types": "./dist/index.d.ts",