From 55097aca3dd7404477914b43e283192c0a749a0f Mon Sep 17 00:00:00 2001 From: Ramin Date: Tue, 10 Sep 2024 00:36:43 +0330 Subject: [PATCH] change to mainnet --- src/routes/replyAttestation.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/replyAttestation.ts b/src/routes/replyAttestation.ts index 403a4fe..6db736e 100644 --- a/src/routes/replyAttestation.ts +++ b/src/routes/replyAttestation.ts @@ -3,7 +3,7 @@ import {getProvider} from "../helpers/ethers.js"; import {NETWORK_IDS} from "../helpers/constants.js"; import {JsonRpcProvider} from "ethers"; -const baseAttestationScan = 'https://base-sepolia.easscan.org/attestation/view/'; +const baseAttestationScan = 'https://base.easscan.org/attestation/view/'; const wait = async (ms: number) => new Promise(resolve => setTimeout(resolve, ms));