# Benchmark record

This is a checked-in record of a local run on the repository revision used for the hackathon handoff. It is intentionally a reproducibility record, not a claim of production throughput.

## Environment

- MoonBit: `moon 0.1.20260807 (4da23f8, 2026-08-07)`
- Host: Windows local development environment
- Fixture: 14 functional tests plus 18 profile-boundary tests; profile tests exercise 1,800 public monitoring profiles against one matching transaction each.

## Commands and observed results

```text
moon check --deny-warn
Finished. moon: ran 1 task, now up to date

moon test --deny-warn
Total tests: 32, passed: 32, failed: 0.
elapsed_ms=1059.6

moon coverage report -f summary
Total: 4103/5887
```

The elapsed value is wall-clock time measured with PowerShell `Measure-Command` and includes the test command only. It is machine-dependent. Coverage is line coverage reported by MoonBit's coverage tool; the profile matrix intentionally exercises the matching branch, while the core boundary suite exercises both positive and negative paths.

Reproduce the run with:

```powershell
moon fmt --check
moon check --deny-warn
$t = Measure-Command { moon test --deny-warn }
moon test --deny-warn --enable-coverage
moon coverage report -f summary
```
