diff --git a/src/features.md b/src/features.md index 89a5885..bdd7cda 100644 --- a/src/features.md +++ b/src/features.md @@ -4,7 +4,7 @@ pageHeading: SV2 in Detail # Features -StratumV2 offers superior security, flexibility, and performance. This section details the motivations and technical descriptions behind V2's protocol design decisions. +Stratum v2 offers superior security, flexibility, and performance. This section details the motivations and technical descriptions behind V2's protocol design decisions. ## Bandwidth Consumption @@ -98,11 +98,11 @@ Miners can choose their own work and mine their chosen transaction set in Sv2, f Job Selection by end-miners is an optional component of Stratum V2, separate from the main mining protocol. In fact, this is actually done by three sub-protocols: -1. Job Negotiation Protocol +1. Job Declaration Protocol 2. Job Distribution Protocol 3. Template Distribution Protocol. -Job selection is a negotiation process between miner and pool. The miner proposes a block template; the pool accepts or rejects it. Once a negotiated template is accepted, the template can be multicast to other mining devices and farms. Implementing Job Selection Protocols separately allows pools to terminate connections on seperate infrastructure from the main mining protocol, preventing impact on the efficiency of share submissions. +Job selection is a declaration process between miner and pool. The miner proposes a block template; the pool accepts or rejects it. Once a declared template is accepted, the template can be multicast to other mining devices and farms. Implementing Job Selection Protocols separately allows pools to terminate connections on seperate infrastructure from the main mining protocol, preventing impact on the efficiency of share submissions. #### Motivation & Impact diff --git a/src/getting-started.md b/src/getting-started.md index d33cb6a..36b7e9f 100644 --- a/src/getting-started.md +++ b/src/getting-started.md @@ -259,10 +259,10 @@ Eventually, the Translation Proxy log output will show sucessful share, which me ``` -## Config D: SV1 firmware > Translation Proxy JN (Job Negotiator) > SV2 Pool +## Config D: SV1 firmware > Translation Proxy JD (Job Declarator) > SV2 Pool -This configuration allows mining devices running SV1 firmware to connect to an SV2 Pool through a Translation Proxy (tProxy). In this case the tProxy is designed also to implement the **Job Negotiator (JN)** sub-protocol: allowing miners to select transactions locally and send them to the **Pool-side JN**. -In the following guide a Template Provider is installed locally on the same machine, to provide block templates to the JN. +This configuration allows mining devices running SV1 firmware to connect to an SV2 Pool through a Translation Proxy (tProxy). In this case the tProxy is designed also to implement the **Job Declarator (JD)** sub-protocol: allowing miners to select transactions locally and send them to the **Pool-side JDS (Job Declarator Server)**. +In the following guide a Template Provider is installed locally on the same machine, to provide block templates to the JD. ![Config2](/assets/config-d.svg) @@ -389,10 +389,10 @@ If the pool properly starts you should see the following log lines: > cargo run -p pool_sv2 -- -c [your-custom-config.toml] > ``` -### 3. Start **Translator (tProxy) JN** +### 3. Start **Translator (tProxy) JD** Once the SV2 pool is running, let's run the tProxy that will facilitate communication between the pool and a SV1 miner. -Differently from the Config C, in this case the **tProxy** will be acting as a **Job Negotiator (JN)**, so it will select transactions locally and send them to the **Pool-side JN** +Differently from the Config C, in this case the **tProxy** will be acting as a **Job Declarator (JD)**, so it will select transactions locally and send them to the **Pool-side JDS** ``` cd stratum/roles/translator/ ``` diff --git a/src/index.md b/src/index.md index e718bb7..94f009d 100644 --- a/src/index.md +++ b/src/index.md @@ -49,8 +49,8 @@ roadmapTagline: This is where the Stratum V2 protocol’s progress currently sta roadmapSteps: - __MVP1__ will allow users to run SV2 where a miner runs existing SV1 firmware with a proxy that translates messages into SV2. In this configuration, the pool selects transactions. - A pull request that implements a **block template provider** will be submitted to the Bitcoin Core repository for review which will make MVP1 complete. - - Implement the **job negotiator**, which a miner or miners can use to declare a block template to a pool. - - Once a translator, template provider, and job negotiator are running, we will launch an MVP2. In this configuration, a miner handles mempool transaction selection, and the pool accepts it. + - Implement the **job declarator**, which a miner or miners can use to declare a block template to a pool. + - Once a translator, template provider, and job declarator are running, we will launch an MVP2. In this configuration, a miner handles mempool transaction selection, and the pool accepts it. - Apply early adopter feedback and tailor configurations that will move MVP1 and MVP2 from beta to production-ready. # Specification authors section specificationAuthorsTitle: Stratum V2 specification authors