From ae79e323e0c368d1eb570adffce3e6401aa61aaa Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:41:34 +0100 Subject: [PATCH 1/2] Update README.md --- sdk/zksync.js/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/zksync.js/README.md b/sdk/zksync.js/README.md index 0371cf58f7..19405c59af 100644 --- a/sdk/zksync.js/README.md +++ b/sdk/zksync.js/README.md @@ -11,5 +11,5 @@ Full reference on how to use the library can be found [here](https://zksync.io/a ## Changelog -The changelog of the zksync.js is avaliable +The changelog of the zksync.js is available [here](https://github.com/matter-labs/zksync/blob/master/changelog/js-sdk.md). From efe11b65697d8598936d397c210d0d59fa75615a Mon Sep 17 00:00:00 2001 From: Danil <37103154+Danyylka@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:41:35 +0100 Subject: [PATCH 2/2] Update README.md --- core/tests/loadnext/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/tests/loadnext/README.md b/core/tests/loadnext/README.md index 44a73b9526..dbf33459b4 100644 --- a/core/tests/loadnext/README.md +++ b/core/tests/loadnext/README.md @@ -1,13 +1,13 @@ # Loadnext: the next generation loadtest for zkSync -Loadnext is an utility for random stress-testing the zkSync server. It is capable of simulating the behavior of many +Loadnext is a utility for random stress-testing the zkSync server. It is capable of simulating the behavior of many independent users of zkSync network, who are sending quasi-random requests to the server. It: - doesn't care whether the server is alive or not. At worst, it will just consider the test failed. No panics, no mindless unwraps, yay. -- does a unique set of operations for each participating account. +- performs a unique set of operations for each participating account. - sends transactions, batches, and priority operations. - sends incorrect transactions as well as correct ones and compares the outcome to the expected one. - has an easy-to-extend command system that allows adding new types of actions to the flow. @@ -40,7 +40,7 @@ Without any configuration supplied, the test will fallback to the dev defaults: **Note:** when running the loadtest in the localhost scenario, you **must** adjust the supported block chunks sizes. Edit the `etc/env/dev/chain.toml` and set `block_chunk_sizes` to `[10,32,72,156,322,654]` and `aggregated_proof_sizes` -to `[1,4,8,18]`. Do not forget to re-compile configs after that. +to `[1,4,8,18]`. Do not forget to recompile the configs after that. This is required because the loadtest relies on batches, which will not fit into smaller block sizes.