From 2affc3228a7b152b38a130717465daa240e3788f Mon Sep 17 00:00:00 2001 From: kristjanpeterson Date: Tue, 9 Apr 2024 12:08:21 +0300 Subject: [PATCH] Fix callQuickstart.ts explorer tx url --- contracts/scripts/callQuickstart.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/scripts/callQuickstart.ts b/contracts/scripts/callQuickstart.ts index 394a090..93f4ae1 100644 --- a/contracts/scripts/callQuickstart.ts +++ b/contracts/scripts/callQuickstart.ts @@ -25,7 +25,7 @@ async function main() { // Call the startChat function const transactionResponse = await contract.initializeDalleCall(message); const receipt = await transactionResponse.wait(); - console.log(`Transaction sent, hash: ${receipt.hash}.\nExplorer: https://explorer.galadriel.com/transaction/${receipt.hash}`) + console.log(`Transaction sent, hash: ${receipt.hash}.\nExplorer: https://explorer.galadriel.com/tx/${receipt.hash}`) console.log(`Image generation started with message: "${message}"`); // loop and sleep by 1000ms, and keep printing `lastResponse` in the contract.