Skip to content

Commit

Permalink
Fix callQuickstart.ts explorer tx url
Browse files Browse the repository at this point in the history
  • Loading branch information
kristjanpeterson1 committed Apr 9, 2024
1 parent 02b562b commit 2affc32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/scripts/callQuickstart.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 2affc32

Please sign in to comment.