Skip to content
This repository has been archived by the owner on Jan 7, 2025. It is now read-only.

upated main.ts console alerts #372

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/client/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down