Difference between revisions of "MinerID"

Line 3: Line 3:
 
==Description==
 
==Description==
  
Currently, Bitcoin miners can embed identity data in the blockchain by using space in the malleable input fields of the [[Coinbase|coinbase]] transaction in the blocks that they mine. However, this data is not always accurate and can be  
+
Currently, Bitcoin miners can embed identity data on the Bitcoin ledger by using space in the malleable input fields of the [[Coinbase|coinbase]] transaction in blocks that they mine. However, this data is not always accurate and can be trivially forged/spoofed.
trivially forged/spoofed.
 
  
 
The MinerId protocol provides a way of ''cryptographically'' associating a block a specific miner's pseudo identity. A minerId is simply a public key from an ECDSA keypair. These keys are used to sign minerID metadata contained in the [[OP RETURN|OP_RETURN]] output of the coinbase transaction in a block.
 
The MinerId protocol provides a way of ''cryptographically'' associating a block a specific miner's pseudo identity. A minerId is simply a public key from an ECDSA keypair. These keys are used to sign minerID metadata contained in the [[OP RETURN|OP_RETURN]] output of the coinbase transaction in a block.
Line 10: Line 9:
 
Use of ECDSA cryptography to sign minerId metadata (as opposed to generating unsigned arbitrary data) provides data non-repudiation, linking miner identity to mined blocks in a reliable way.  
 
Use of ECDSA cryptography to sign minerId metadata (as opposed to generating unsigned arbitrary data) provides data non-repudiation, linking miner identity to mined blocks in a reliable way.  
  
Whilst the minerId protocol is a useful infrastructure tool for the Bitcoin SV network, '''it is not mandatory'''. It is a voluntary protocol providing a public key infrastructure for Bitcoin SV that miners can use to secure additional blockchain-based services.
+
Whilst the minerId protocol is a useful infrastructure tool for the Bitcoin SV network, '''it is not mandatory'''. It is a voluntary protocol providing a public key infrastructure for Bitcoin SV that miners can use to secure additional services around the ledger.
  
 
===Definitions===
 
===Definitions===

Revision as of 01:06, 1 July 2020

MinerId is a protocol that allows a miner to embed information inside the coinbase transaction of each block won by a particular node to allow all blocks it wins to be associated with an pseudonymous identity which the miner can optionally associate with a real world identity.

Description

Currently, Bitcoin miners can embed identity data on the Bitcoin ledger by using space in the malleable input fields of the coinbase transaction in blocks that they mine. However, this data is not always accurate and can be trivially forged/spoofed.

The MinerId protocol provides a way of cryptographically associating a block a specific miner's pseudo identity. A minerId is simply a public key from an ECDSA keypair. These keys are used to sign minerID metadata contained in the OP_RETURN output of the coinbase transaction in a block.

Use of ECDSA cryptography to sign minerId metadata (as opposed to generating unsigned arbitrary data) provides data non-repudiation, linking miner identity to mined blocks in a reliable way.

Whilst the minerId protocol is a useful infrastructure tool for the Bitcoin SV network, it is not mandatory. It is a voluntary protocol providing a public key infrastructure for Bitcoin SV that miners can use to secure additional services around the ledger.

Definitions

  • MinerId - An ECDSA public key (based on secp256k1 parameters) used by the miner to identify themselves.
  • VcTx - (Validity check transaction) A transaction that determines the validity of the minerId based on whether it is unspent (valid) or spent (invalid/revoked). The VcTx is a feature that allows a miner to instantly revoke their minerId (if the private key is compromised for example). Naively, the miner could add a field in the coinbase document specifying if the minerId is still valid or not. However, by doing that, the miner would have to wait until they mine a block to revoke their minerId key. Using the VcTx, the miner can at any time revoke the validity of their minerId key without needing to generate proof of work.
  • Coinbase document - A formatted data packet in the OP_RETURN (provably unspendable) output in the miner’s coinbase transaction. All miner identity information is stored in this document.

Security

Ideally, the minerId (by extension the coinbase transaction) should be specific to the block it is in. However, if this were enforced it would create a causality dilemma (chicken/egg scenario) since the header cannot be finalised and signed by the minerId key without the hash of the coinbase transaction which, in turn, cannot be created until the minerId key is finalised.

By making the minerId specific to the block it’s mined in, we effectively bind the signature to the block it’s contained in. Without this binding, a malicious miner could take the entire coinbase document and replay it in another block, potentially in a block that damages reputation e.g. an empty block that reduces network throughput. Because the block height is included in the coinbase document, the cost of replaying coinbase document data becomes as difficult as successfully forking the network (see Re-org), which is very expensive. This cost should be enough to drastically reduce the likelihood of this attack.

Examples

The minerId protocol has been supported by TAAL mining ltd. since 20th December 2019.

See Also