Skip to content

Commit

Permalink
change to BASE_SEPOLIA
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Sep 2, 2024
1 parent c70862c commit c69415d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/replyAttestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.easscan.org/attestation/view/';
const baseAttestationScan = 'https://base-sepolia.easscan.org/attestation/view/';

const wait = async (ms: number) => new Promise(resolve => setTimeout(resolve, ms));

Expand All @@ -26,7 +26,7 @@ const replyAttestation = async (req: Request) => {
console.log('txHash', txHash);
console.log('praiseHash', praiseHash);
console.log('-----------------');
const provider = getProvider(NETWORK_IDS.BASE_MAINNET);
const provider = getProvider(NETWORK_IDS.BASE_SEPOLIA);
let attestationHash;
let loopCount = 0;
while (!attestationHash || loopCount < 10) {
Expand Down

0 comments on commit c69415d

Please sign in to comment.