From 07cb6c2c26c4772316a5aac13ee88d2322176a86 Mon Sep 17 00:00:00 2001 From: Lloyd Saulpaugh Date: Mon, 8 Apr 2024 22:16:00 -0400 Subject: [PATCH] challenge 3 solution --- challenge/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenge/index.ts b/challenge/index.ts index c9649b1..bc1efeb 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: "LSAUL"}, {sendParams: {suppressLog: true}}) console.log(result.return) \ No newline at end of file