From ca36fa590b76b47429cb70d401f70da88bb341ca Mon Sep 17 00:00:00 2001 From: Yu Jiang Tham Date: Fri, 19 Jan 2024 19:55:18 -0500 Subject: [PATCH] Remove mock --- app/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.ts b/app/index.ts index 99aea1b..e3f1810 100644 --- a/app/index.ts +++ b/app/index.ts @@ -38,7 +38,7 @@ const axiomMain = async (input: UserInput) => { console.log("Sending Query to Axiom on-chain..."); const receipt = await axiom.sendQuery(args); console.log("Transaction receipt:", receipt); - console.log(`View your Query on Axiom Explorer: https://explorer.axiom.xyz/v2/sepolia/mock/query/${args.queryId}`); + console.log(`View your Query on Axiom Explorer: https://explorer.axiom.xyz/v2/sepolia/query/${args.queryId}`); }; axiomMain(inputs);