From 2438a562b411af084941e228c27195c53d6afa9e Mon Sep 17 00:00:00 2001 From: Danish Arora Date: Thu, 6 Mar 2025 16:26:45 +0530 Subject: [PATCH] chore: update contract address and chain ID to Linea Sepolia --- packages/rln/src/contract/constants.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/rln/src/contract/constants.ts b/packages/rln/src/contract/constants.ts index 3d26b99639..21dd7391b3 100644 --- a/packages/rln/src/contract/constants.ts +++ b/packages/rln/src/contract/constants.ts @@ -1,8 +1,9 @@ import { RLN_ABI } from "./abi.js"; export const SEPOLIA_CONTRACT = { - chainId: 11155111, - address: "0xCB33Aa5B38d79E3D9Fa8B10afF38AA201399a7e3", + chainId: 59141, + // Implementation contract: 0xde2260ca49300357d5af4153cda0d18f7b3ea9b3 + address: "0xb9cd878c90e49f797b4431fbf4fb333108cb90e6", abi: RLN_ABI };