mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-05-22 09:39:44 +00:00
34 lines
1.4 KiB
Markdown
34 lines
1.4 KiB
Markdown
|
|
# e2e_bench
|
||
|
|
|
||
|
|
End-to-end LEZ scenarios driven through the wallet against an in-process sequencer + indexer wired to an external Bedrock node. Times each step (submit, inclusion, wallet sync) and records borsh sizes for every block produced, split into per-tx-variant counts.
|
||
|
|
|
||
|
|
## Run
|
||
|
|
|
||
|
|
Required env vars (no defaults):
|
||
|
|
|
||
|
|
```sh
|
||
|
|
export LEZ_BEDROCK_BIN=/path/to/logos-blockchain/target/release/logos-blockchain-node
|
||
|
|
export LEZ_BEDROCK_CONFIG_DIR=/path/to/bedrock/configs
|
||
|
|
# optional: LEZ_BEDROCK_PORT (default 18080)
|
||
|
|
```
|
||
|
|
|
||
|
|
The config dir must contain `node-config.yaml` and a `deployment-settings.yaml` template with the literal string `PLACEHOLDER_CHAIN_START_TIME` (rewritten per launch).
|
||
|
|
|
||
|
|
```sh
|
||
|
|
# All scenarios, dev-mode proving (fast)
|
||
|
|
RISC0_DEV_MODE=1 cargo run --release -p e2e_bench -- --scenario all
|
||
|
|
|
||
|
|
# One scenario, real proving (slow)
|
||
|
|
cargo run --release -p e2e_bench -- --scenario amm
|
||
|
|
```
|
||
|
|
|
||
|
|
Scenarios: `token`, `amm`, `fanout`, `private`, `parallel`, `all`.
|
||
|
|
|
||
|
|
## What you'll see
|
||
|
|
|
||
|
|
Per scenario: a step table (`submit_ms`, `inclusion_ms`, `sync_ms`, `total_ms`) and a size summary covering every block captured during the scenario (block_bytes total/mean/min/max; per-tx-variant sizes for public, PPE, and program-deployment transactions).
|
||
|
|
|
||
|
|
The fanout, parallel, and private scenarios are the most representative for L1-payload-size measurements since they put multiple txs per block.
|
||
|
|
|
||
|
|
JSON output is written to `target/e2e_bench.json`.
|