-
Notifications
You must be signed in to change notification settings - Fork 9
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
Write an RFC about Stratum V2 proxy to allow clients to do merged mining without depending on the pool #23
Comments
The basic explanation on Stratum v2's website is pretty simple to understand, so I'll focus here on the parts that we would use. [Please read Protocol Overview on the website before continuing] At the center of it there's the Job Negotiation protocol. The idea is having this Job Negotiator (JN) role performed by a third-party node, not a miner directly. The JN communicates with the pool to negotiate a block template to be mined. This block template contains the transaction set included in the block and can also include some coinbase outputs (proposed_coinbase_outputs). For Hathor, that would be the place to add the merged mining info. It's important to notice that the pool will always add its own coinbase outputs, making final_coinbase_outputs = proposed_coinbase_outputs + pool_outputs. The mining rewards, therefore, go to the pool. When JN and pool agree on a block template, the pool provides a In Hathor's case, there's the need for an additional proxy between miners and pool, for 3 reasons:
|
Unfortunately, v2 is still not completely developed, even though Slush pool already has a There's no page from Slush pool with more information about development or ETA. I sent a message on a Braiins (the company behind Slush pool and stratum v2) Telegram group and got a response from its CEO that only standard channel has been implemented, so no support for extended channels yet. There's also no ETA for completion. |
Good description. It is a shame that extended channels are not available yet. |
There's nothing we can do right now. We should monitor v2 development and possibly implement this later. Will move this to our backlog. |
Relevant links:
The text was updated successfully, but these errors were encountered: