You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Logbook.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,27 @@
1
1
# Leios logbook
2
2
3
+
## 2025-02-18
4
+
5
+
### CPS-0018
6
+
7
+
[CIPS-0018 "Greater Transaction Throughput"](https://github.com/cardano-foundation/CIPs/blob/master/CPS-0018/README.md) has been officially approved and merged into the Cardano Foundation's CIP/CPS repository. This Cardano Problem Statement motivates the need for higher transaction throughput on Cardano and provides evidence for its urgency. It also defines goals for initiatives like Leios, summarizes use cases, and identifies open questions.
8
+
9
+
### Docker Support for Simulations
10
+
11
+
Added Docker support for both the Rust and Haskell simulations, making it easier to run and generate simulation traces without setting up the development environment. The Docker images are built using a multi-stage Dockerfile that creates optimized images for both simulations.
12
+
13
+
Basic usage examples:
14
+
15
+
```bash
16
+
# Run Rust simulation with default settings
17
+
docker run -v $(pwd)/output:/output ouroboros-leios/sim-rs:latest
18
+
19
+
# Run Haskell simulation for 120 seconds
20
+
docker run -v $(pwd)/output:/output ouroboros-leios/sim-hs:latest --output-seconds 120
21
+
```
22
+
23
+
See the [Docker Simulation section in README.md](README.md#docker-simulation) for detailed usage instructions, including how to use custom topology files and configuration options.
0 commit comments