Skip to content

Latest commit

 

History

History
136 lines (95 loc) · 4.93 KB

zip-0250.rst

File metadata and controls

136 lines (95 loc) · 4.93 KB
ZIP: 250
Title: Deployment of the Heartwood Network Upgrade
Owners: Daira Hopwood <daira@electriccoin.co>
Status: Final
Category: Consensus / Network
Created: 2020-02-28
License: MIT

Terminology

The key words "MUST", "MUST NOT", "SHOULD", and "MAY" in this document are to be interpreted as described in RFC 2119.1

The term "network upgrade" in this document is to be interpreted as described in ZIP 200.2

The terms below are to be interpreted as follows:

Heartwood

Code-name for the fourth Zcash network upgrade, also known as Network Upgrade 3.

Testnet

The Zcash test network, as defined in3.

Mainnet

The Zcash production network, as defined in4.

Abstract

This proposal defines the deployment of the Heartwood network upgrade.

Specification

Heartwood deployment

The primary sources of information about Heartwood consensus protocol changes are:

  • The Zcash Protocol Specification5
  • ZIP 200: Network Upgrade Mechanism6
  • ZIP 213: Shielded Coinbase7
  • ZIP 221: FlyClient - Consensus-Layer Changes8.

The network handshake and peer management mechanisms defined in ZIP 2019 also apply to this upgrade.

The following network upgrade constants10 are defined for the Heartwood upgrade:

CONSENSUS_BRANCH_ID

0xF5B9230B

ACTIVATION_HEIGHT (Heartwood)

Testnet: 903800

Mainnet: 903000

Nodes compatible with Heartwood activation on testnet MUST advertise protocol version 170010 or later. Nodes compatible with Heartwood activation on mainnet MUST advertise protocol version 170011 or later. The minimum peer protocol version that Heartwood-compatible nodes will connect to is 170002.

Pre-Heartwood testnet nodes are defined as nodes on testnet advertising a protocol version less than 170010. Pre-Heartwood mainnet nodes are defined as nodes on mainnet advertising a protocol version less than 170011.

For each network (testnet and mainnet), approximately 1.5 days (defined in terms of block height) before the corresponding Heartwood activation height, nodes compatible with Heartwood activation on that network will change the behaviour of their peer connection logic in order to prefer pre-Heartwood peers on that network for eviction from the set of peer connections:

/**
 * The period before a network upgrade activates, where connections to upgrading peers are preferred (in blocks).
 * This was three days for upgrades up to and including Blossom, and is 1.5 days from Heartwood onward.
 */
static const int NETWORK_UPGRADE_PEER_PREFERENCE_BLOCK_PERIOD = 1728;

The implementation is similar to that for Overwinter which was described in 11.

Once Heartwood activates on testnet or mainnet, Heartwood nodes SHOULD take steps to:

  • reject new connections from pre-Heartwood nodes on that network;
  • disconnect any existing connections to pre-Heartwood nodes on that network.

Backward compatibility

Prior to the network upgrade activating on each network, Heartwood and pre-Heartwood nodes are compatible and can connect to each other. However, Heartwood nodes will have a preference for connecting to other Heartwood nodes, so pre-Heartwood nodes will gradually be disconnected in the run up to activation.

Once the network upgrades, even though pre-Heartwood nodes can still accept the numerically larger protocol version used by Heartwood as being valid, Heartwood nodes will always disconnect peers using lower protocol versions.

Unlike Overwinter and Sapling, and like Blossom, Heartwood does not define a new transaction version. Heartwood transactions are therefore in the same v4 format as Sapling transactions, use the same version group ID, i.e. 0x892F2085 as defined in12 section 7.1, and the same transaction digest algorithm as defined in13. This does not imply that transactions are valid across the Heartwood activation, since signatures MUST use the appropriate consensus branch ID. 14

Support in zcashd

Support for Heartwood on testnet will be implemented in zcashd version 2.1.2, which will advertise protocol version 170010. Support for Heartwood on mainnet will be implemented in zcashd version 3.0.0, which will advertise protocol version 170011.

References


  1. RFC 2119: Key words for use in RFCs to Indicate Requirement Levels

  2. ZIP 200: Network Upgrade Mechanism

  3. Zcash Protocol Specification, Version 2020.1.15 or later

  4. Zcash Protocol Specification, Version 2020.1.15 or later

  5. Zcash Protocol Specification, Version 2020.1.15 or later

  6. ZIP 200: Network Upgrade Mechanism

  7. ZIP 213: Shielded Coinbase

  8. ZIP 221: FlyClient - Consensus-Layer Changes

  9. ZIP 201: Network Peer Management for Overwinter

  10. ZIP 200: Network Upgrade Mechanism

  11. ZIP 201: Network Peer Management for Overwinter

  12. Zcash Protocol Specification, Version 2020.1.15 or later

  13. ZIP 243: Transaction Signature Validation for Sapling

  14. ZIP 243: Transaction Signature Validation for Sapling