From c549d97f14c5601da5dc24011afdbb04c1c1efe2 Mon Sep 17 00:00:00 2001 From: Oleh Bairak Date: Thu, 15 Feb 2024 16:46:38 +0100 Subject: [PATCH] fix: new one --- packages/integration-tests/tests/api/contracts.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/integration-tests/tests/api/contracts.test.ts b/packages/integration-tests/tests/api/contracts.test.ts index a2582566fc..0a37553711 100644 --- a/packages/integration-tests/tests/api/contracts.test.ts +++ b/packages/integration-tests/tests/api/contracts.test.ts @@ -40,7 +40,7 @@ describe("API module: Contract", () => { //id1695 it("Verify /api?module=contract&action=getabi response", async () => { await helper.retryTestAction(async () => { - const greeterContract = "0xB0927430b017860BB0Af99f192Aa4a79D74f75bB"; + const greeterContract = "0x180faDac8ce638C67640a6C29BdfB5CB60eCDB76"; apiRoute = `/api?module=contract&action=getabi&address=${greeterContract}`; response = await helper.performGETrequest(apiRoute, "sepolia"); @@ -54,7 +54,7 @@ describe("API module: Contract", () => { //id1802 it("Verify /api?module=contract&action=getsourcecode response", async () => { await helper.retryTestAction(async () => { - const greeterContract = "0xB0927430b017860BB0Af99f192Aa4a79D74f75bB"; + const greeterContract = "0x180faDac8ce638C67640a6C29BdfB5CB60eCDB76"; apiRoute = `/api?module=contract&action=getsourcecode&address=${greeterContract}`; response = await helper.performGETrequest(apiRoute, "sepolia");