Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated merge/hybrid mining percentages to reflect 50/50 split #153

Merged
merged 4 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/RFC-0001_overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ invented to allow the DAN to be built on top of Tari, but have found some great

#### Proof of Work

Tari is mined using a hybrid approach. On average, 60% of block rewards come from [Monero merge-mining],
while 40% come from the [Sha3x][RFC-131] algorithm. Blocks are produced every 2 minutes, on average.
Tari is mined using a hybrid approach. On average, 50% of block rewards come from [Monero merge-mining],
while 50% come from the [Sha3x][RFC-131] algorithm. Blocks are produced every 2 minutes, on average.

### The role of the base layer

Expand Down Expand Up @@ -209,4 +209,4 @@ strength.
| 22 Jun 2021 | Remove payment channel layer proposal | SimianZa |
| 14 Jan 2022 | Update image. Expound on Base layer responsibilities | CjS77 |
| 10 Nov 2022 | Update overview for Cerberus | CjS77 |

| 09 Dec 2024 | Update percentage split for merge mining | Solivagant |
8 changes: 3 additions & 5 deletions src/RFC-0131_Mining.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,13 @@ good chance of being "commoditized" when ASICs are eventually manufactured. This

### The block distribution

A 50/50 split in hash rate among algorithms minimises the chance of hash rate attacks. However,
sufficient buy-in is required, especially with regard to merge mining RandomX with Monero. To make it worthwhile for a
Monero pool operator to merge mine Tari, but still guard against hash rate attacks and to be inclusive of independent
Tari supporters and enthusiasts, a 60/40 split is employed in favour of merge mining RandomX with Monero.
A 50/50 split in hash rate among algorithms minimises the chance of hash rate attacks. In Tari, a 50/50 split is employed in favour of merge mining RandomX with Monero and Tari with Sha-3x respectively.
SolfataraEmit marked this conversation as resolved.
Show resolved Hide resolved

### The difficulty adjustment strategy

The choice of difficulty adjustment algorithm is important. In typical hybrid mining strategies, each algorithm operates
completely independently with a scaled target block time.
Tari testnet has been running very successfully using the Linear Weighted Moving Average (LWMA) from Bitcoin & Zcash
Tari testnet has been running very successfully using the Linear Weighted Moving Average (LWMA) from Bitcoin & Zcash
Clones [version 2018-11-27](https://github.com/zawy12/difficulty-algorithms/issues/3#issuecomment-442129791). This LWMA
difficulty adjustment algorithm has also been
[tested in simulations](https://github.com/tari-labs/modelling/tree/master/scenarios/multi_pow_01),
Expand Down Expand Up @@ -202,3 +199,4 @@ This RFC is stable as of PR#4862
| 2022-11-25 | Update mining hash decsription | CjS77 |
| 2022-10-26 | Finalise SHA-3 algorithm | CjS77 |
| 2022-10-11 | First outline | SWvHeerden |
| 2024-12-09 | Corrected percentages for merged and hybrid mining | Solivagant |