From 9b58d33bb4d1e51a4fecc6b5c3cb1af049e3344a Mon Sep 17 00:00:00 2001 From: bitbeckers Date: Fri, 18 Oct 2024 20:18:48 +0700 Subject: [PATCH] fix: support chainId --- contracts/package.json | 2 +- contracts/src/index.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/contracts/package.json b/contracts/package.json index 38d03878..15b605f5 100644 --- a/contracts/package.json +++ b/contracts/package.json @@ -1,7 +1,7 @@ { "name": "@hypercerts-org/contracts", "description": "EVM compatible protocol for managing impact claims", - "version": "2.0.0-alpha.9", + "version": "2.0.0-alpha.10", "author": { "name": "Hypercerts Foundation", "url": "https://github.com/hypercerts-org/hypercerts" diff --git a/contracts/src/index.ts b/contracts/src/index.ts index 30e00b8b..de9615f9 100644 --- a/contracts/src/index.ts +++ b/contracts/src/index.ts @@ -85,6 +85,9 @@ const deployments = { ...DEPLOYMENTS.protocol["421614"], ...DEPLOYMENTS.marketplace["421614"], }, + 314159: { + ...DEPLOYMENTS.protocol["314159"], + }, } as Record; const asDeployedChain = (chainId: string | number) => {