@algorandfoundation/algokit-utils 7.0.0-beta.15 → 7.0.0-beta.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -477,7 +477,9 @@ class AppClient {
477
477
  }
478
478
  }
479
479
  }
480
- throw new Error(`No value provided for required argument ${arg.name ?? `arg${i + 1}`} in call to method ${m.name}`);
480
+ if (!algosdk.abiTypeIsTransaction(arg.type)) {
481
+ throw new Error(`No value provided for required argument ${arg.name ?? `arg${i + 1}`} in call to method ${m.name}`);
482
+ }
481
483
  }) ?? []);
482
484
  }
483
485
  getBareParamsMethods() {