Skip to content

Commit

Permalink
change to mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Sep 9, 2024
1 parent bfb8723 commit 860969f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ if (typeof Bun !== 'undefined') {
return new Response('Not Found', { status: 404 });
}
} catch (e: any) {
console.log("Bun fetch error! Date " + new Date() + " error: " + e);
return new Response(e.message, { status: 500 });
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/routes/replyAttestation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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_SEPOLIA);
const provider = getProvider(NETWORK_IDS.BASE_MAINNET);
let attestationHash;
let loopCount = 0;
while (!attestationHash || loopCount < 10) {
Expand Down

0 comments on commit 860969f

Please sign in to comment.