diff --git a/docs/docs/migration_notes.md b/docs/docs/migration_notes.md index 8bd3ac077e69..c1f9a7c00e8a 100644 --- a/docs/docs/migration_notes.md +++ b/docs/docs/migration_notes.md @@ -117,10 +117,15 @@ const witness = await wallet.createAuthWit({ caller, action }); ++await wallet.lookupValidity(wallet.getAddress(), { caller, action }, witness); ``` +## 0.80.0 + ### [PXE] Concurrent contract function simulation disabled PXE is no longer be able to execute contract functions concurrently (e.g. by collecting calls to `simulateTx` and then using `await Promise.all`). They will instead be put in a job queue and executed sequentially in order of arrival. + +## 0.79.0 + ### [aztec.js] Changes to `BatchCall` and `BaseContractInteraction` The constructor arguments of `BatchCall` have been updated to improve usability. Previously, it accepted an array of `FunctionCall`, requiring users to manually set additional data such as `authwit` and `capsules`. Now, `BatchCall` takes an array of `BaseContractInteraction`, which encapsulates all necessary information.