From 86f1c8aea398b5e76a8e61ff31faed9ac08fc719 Mon Sep 17 00:00:00 2001 From: "Pasquale.Silv" <55320885+Pasquale-Silv@users.noreply.github.com> Date: Mon, 1 Apr 2024 12:55:40 +0200 Subject: [PATCH] Solved: Algorand Challenge 3 --- challenge/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenge/index.ts b/challenge/index.ts index c9649b1..b7014f2 100644 --- a/challenge/index.ts +++ b/challenge/index.ts @@ -19,14 +19,14 @@ const appClient = new HelloWorldClient( resolveBy: 'creatorAndName', findExistingUsing: indexer, sender: deployer, - creatorAddress: deployer, + creatorAddress: deployer.addr, }, - indexer, + algod, ) await appClient.create.createApplication({}); // TODO: change YOUR_NAME to your name or nickname -const result = await appClient.helloWorld({name: "YOUR_NAME"}, {sendParams: {suppressLog: true}}) +const result = await appClient.helloWorld({name: "Pasquale-Silv"}, {sendParams: {suppressLog: true}}) console.log(result.return) \ No newline at end of file