From 2e665be84ab8469713cd2fb5c1e6c426db2a3604 Mon Sep 17 00:00:00 2001 From: Dion Date: Fri, 5 Apr 2024 22:44:47 +0200 Subject: [PATCH] Fixed parameters --- challenge/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/challenge/index.ts b/challenge/index.ts index c9649b1..4af76de 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: "Pyla"}, {sendParams: {suppressLog: true}}) console.log(result.return) \ No newline at end of file