Confidential Transactions
One of the most powerful features of Elements is Confidential Transactions
Confidential Transactions keep the amount and type of assets transferred visible only to participants in the transaction (and those they choose to reveal the blinding key to), while still cryptographically guaranteeing that no more coins can be spent than are available.
This goes a step beyond the usual privacy offered by Bitcoin’s blockchain, which relies purely on pseudonymous (but public) identities. This matters, because insufficient financial privacy can have serious security and privacy implications for both commercial and personal transactions. Without adequate protection, thieves can focus their efforts on high-value targets, competitors can learn business details, and negotiating positions can be undermined.
Watch Gregory Maxwell explaining Confidential Transactions:
You can also read Gregory Maxwell’s initial investigation for an in-depth look at the mathmatics behind Confidentail Transactions.
Using Confidential Transactions in Elements
For a detailed look at using Confidential Transactions please refer to the Confidential Transactions section of the code tutorial.
At a high-level, the transaction flow is very similar to Bitcoin’s on the surface.
Similarities to Bitcoin’s transaction flow
A new address is created:
elements-cli getnewaddress
By default this returns a new Confidential Address. The prefix ‘CTE’ is used to denote the address is confidential[1]. An example address is shown below:
Assets can then be sent to the address using the sendtoaddress command:
elements-cli sendtoaddress CTEwQjyErENrxo8dSQ6pq5atss7Ym9S7P6GGK4PiGAgQRgoh1iPUkLQ168Kqptfnwmpxr2Bf7ipQsagi 0.005
Which returns a transaction id:
Differences to Bitcoin’s transaction flow
The key difference from Bitcoin is the addition of cryptographic privacy.
Confidential Transactions differ in that the the amounts and types of asset transferred are visible only to participants in the transaction, and those they choose to reveal the blinding key to.
The createrawtransaction
API in Elements works similar to Bitcoin’s raw
transactions with the following differences:
1. The intent to create a confidential output is indicated by using a confidential address for the destination.
2. The createrawtransaction
RPC has the additional key nValue
per input which must be set to the value of the input. The value can be determined with the listunspent
RPC for example.
3. After calling createrawtransaction
the user must call blindrawtransaction
on the transaction if a confidential input or output address is involved.
4. If at least one of the inputs is confidential, at least one of the outputs must also be confidential. Note that it is perfectly fine to create a 0-valued confidential output if otherwise there would be no confidential output.
5. If all inputs are unconfidential, the number of confidential outputs must be 0
or >= 2
. Again, it’s fine to create a 0-valued confidential output.
The following example spends a confidential and an unconfidential output and
creates a confidential and unconfidential output. Due to the size of the
transaction it is not displayed here, but will be saved in the TX
variable.
TX=elements-cli createrawtransaction '[{"txid": "421079661b117b659af3431096ce2118043396e3647e523e413cd626fa798df7", "vout": 0, "nValue": 0.001}, {"txid": "17aa26d29582a9a26f02033918aaf9823d33458239074a0d7ee638b247f1fa2c", "vout": 0, "nValue": 0.001}]' '{"XoRDiv9z12ECsYCNjtHjDvV1Nn4KSBa6xRfHT1c3nKY1CwDiz5rzSMZL7QCgvuF1T5Kq43o1fMqBxbWQ": 0.001, "QLsHc5DgnpMjPaDSuEF5gXt7ccgmLtgh2N": 0.0005}'
TX=elements-cli blindrawtransaction $TX
TX=elements-cli signrawtransaction $TX | jq -r '.hex'
elements-cli sendrawtransaction $TX
Limitations
The implementation of Confidential Transactions, as it appears in Elements, has some important limitations to be aware of.
The implementation only hides a certain number of the digits of the amount of each transaction output, dependent on the range proof’s “blinding coverage” at a desired precision level. The default blinding precision is currently 52 bits, which will cover any value up to 2^52 satoshi, which equates to a maximum amount of just over 45 million BTC equivalent units. As the maximum amount that can be transacted is inherited from Bitcoin, and set at 21 million BTC equivalent units, this currently provides cover for all asset transactions.
A transaction output larger than the maximum value set by the blinding precision will reveal the order of magnitude of the amount to observers, and will also reveal additional digits at the bottom of the amount, so care must be taken if you alter the default value.
For example, if a user chooses a lower blinding precision than the default in their own Elements implementation, or an increased maximum transaction amount, then all outputs under the limit will look the same, but an output over the amount will be visible as such to observers. Although the exact amount will not be revealed, the order or magnitue over the maximum will. Revealing the range in this way could be a very significant privacy leak; splitting such extremely large transactions to keep them under the maximum confidential amount is strongly recommended.
Find out more about Confidential Transactions
Gregory Maxwell’s original investigation into Confidential Transactions.
Try it yourself in the Elements Code Tutorial.
More details on Confidential Addresses.
[1] Elements now defaults to creating P2SH-P2WPKH addresses by default, which do not start with ‘CTE’. See the note here on how to create ‘legacy’ addresses starting with ‘CTE’.