From 06b4a800549f5d32b7f263c8543db121ea76a239 Mon Sep 17 00:00:00 2001 From: ahbilalkhan-10p Date: Sat, 4 Dec 2021 20:31:35 +0500 Subject: [PATCH] upated main.ts console alerts --- src/client/main.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/client/main.ts b/src/client/main.ts index 621c533d..450a43e5 100644 --- a/src/client/main.ts +++ b/src/client/main.ts @@ -14,21 +14,26 @@ async function main() { console.log("Let's say hello to a Solana account..."); // Establish connection to the cluster + console.log("Establishing Connection..."); await establishConnection(); // Determine who pays for the fees + console.log("Establishing Payers Account..."); await establishPayer(); // Check if the program has been deployed + console.log("Checking Deployment Status..."); await checkProgram(); // Say hello to an account + console.log("Checking Account Status..."); await sayHello(); // Find out how many times that account has been greeted + console.log("Greeting to the New Account..."); await reportGreetings(); - console.log('Success'); + console.log('Success !'); } main().then(