Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dapplion/beacon_ww3_eject_simulator
https://github.com/dapplion/beacon_ww3_eject_simulator
Last synced: about 20 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/dapplion/beacon_ww3_eject_simulator
- Owner: dapplion
- Created: 2024-03-07T15:11:39.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-22T08:17:25.000Z (10 months ago)
- Last Synced: 2024-12-28T06:48:14.818Z (10 days ago)
- Language: Rust
- Size: 10.7 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beacon_ww3_eject_simulator
This repo simulates the effects of the inactivity leak on big networks. Initially I attempted to run this on a jupyter notebook, but for 1M indices each simulation took 1 hour 🫠. Rust is a bit faster to do math, taking ~45 seconds per simulation. Plotting sucks, but it's okay.
### `EJECTION_BALANCE = 16`
| inactive % | inactivity_leak_stop_days | % total_balance_burned |
| - | - | - |
| 35 | 7.0 | 3.3 |
| 40 | 13.8 | 12.7 |
| 50 | 21.4 | 30.1 |
| 60 | 26.6 | 45.2 |
| 70 | 31.4 | 59.6 |
| 80 | 36.5 | 73.3 |
| 90 | 43.12 | 86.2 |### `EJECTION_BALANCE = 31.99` (immediate)
| inactive % | inactivity_leak_stop_days | % total_balance_burned |
| - | - | - |
| 35 | 4.7 | 1.5 |
| 40 | 11.3 | 8.4 |
| 50 | 19.2 | 23.9 |
| 60 | 25.1 | 39.1 |
| 70 | 30.3 | 53.7 |
| 80 | 35.7 | 67.5 |
| 90 | 42.4 | 80.5 |### `EJECTION_BALANCE = 0` (no ejection)
| inactive % | inactivity_leak_stop_days | % total_balance_burned |
| - | - | - |
| 35 | 7.0 | 3.3 |
| 40 | 13.8 | 12.7 |
| 50 | 21.4 | 30.2 |
| 60 | 27.0 | 46.1 |
| 70 | 32.0 | 61.0 |
| 80 | 37.1 | 75.0 |
| 90 | 43.8 | 88.1 |