Bitcoin Forum
May 03, 2024, 07:19:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bi-directional micropayment channels with CHECKLOCKTIMEVERIFY  (Read 2069 times)
topynate (OP)
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
January 08, 2015, 02:46:57 PM
 #1

Background: micropayment channels, OP_CHECKLOCKTIMEVERIFY

A micropayment channel lets you set up a channel over which you can send small payments to a second party, without putting all those payments on the blockchain. The simplest version of the idea uses an initial deposit transaction to a 2-of-2 multisig address, and nLockTime to create a refund of that deposit that can only be spent in the future. Then you can directly send the payment receiver transactions with an earlier nLockTime and that refund you slightly less. Only the payment receiver can add their own signature to the last transaction and claim the total amount you sent them.

One problem here is that transaction mutability may let the payment receiver alter the deposit transaction in such a way that the refund transaction is invalid, which means you must trust the receiver in the setup phase. CHECKLOCKTIMEVERIFY (listed as BIP 65) would solve this this by adding a locktime check to Bitcoin Script itself, allowing you to make a deposit transaction to a P2SH address that inherently permits you to sign your own refund transaction at some future time, in addition to a 2-of-2 multisig lock that requires both you and the payment receiver to add one signature.

A limitation of this sort of channel is that payments flow only in one direction. This is because the payment receiver can sign any transaction you send them, not just the most recent one, and so it's possible to just sign the transaction transferring the largest amount into their control. This is easily remedied by opening a second payment channel in the opposite direction, but now both parties have to deposit funds over the lifetime of the two channels. If one party doesn't know ahead of time whether or not the other party will go into credit, having only one channel may save the use of a deposit.

I propose a way of using CHECKLOCKTIMEVERIFY to allow a reversible payment channel, introducing at most one additional broadcast transaction, with a waiting period before the payment receiver can access deposited funds. The extra transaction and waiting period apply only when the depositor doesn't co-operate with the receiver.

In this protocol, the setup is identical, with a deposit made to a P2SH address matching a script allowing either single-party+CHECKLOCKTIME or 2-of-2. In this case, however, all payments made by the depositor occur in the form of unbroadcast transactions to special holding addresses.

These holding addresses are themselves P2SH addresses, with scripts known to both parties. Each script may be redeemed in one of two ways:
  • by the payment receiver, using a CHECKLOCKTIME restriction that expires some period of time after the restriction on the depositor's refund transaction, or
  • by the depositor, using their own signature, together with a hashlock.

In the second case, we actually use a double hashlock, i.e. the depositor must provide a value which when SHA256-hashed twice produces the value in the script.

The receiver generates these values according to the following algorithm: Beginning with a secret S0, they double hash S0 to make the hashlock value for the first payment, D0 =H(H(S0)). Then to make Si+1 given Si, they create a public nonce, Ni, and let Si+1 = H(Ni | H(Si)), where a|b denotes the string a followed by the string b. The hashlock values Di are not secret, and can be disclosed in advance or as part of the process of receiving the associated payment.

When the receiver wants to refund some amount to the depositor, the receiver finds the last payment which left the depositor with a balance greater than the desired balance, and negotiates a rewind of the payment sequence to that point, with an additional payment of the remainder by the depositor. Suppose the last payment that will remain valid was the i-th payment, counting from zero. The receiver creates a new nonce, N'i, creates the associated new secret value S'i+1 by S'i+1 = H(N'i | H(Si)), and sends D'i+1 to the depositor with a request for payment of the right amount. This amount will be greater than that associated to Di, but less than that associated to Di+1, so the depositor does not need to trust the receiver in order to honour the request. The payment chain is now forked at Di, with a branch Di+1, Di+2... and a branch that only has D'i+1. The receiver now unwinds the old branch, back to Di, by revealing Si+1 to the depositor. The depositor can now generate - and check - the secrets Si+1, Si+2..., and so knows that if the receiver attempts to sign and broadcast a transaction to an address using one of those secrets, the depositor can take back all their funds before the receiver is able to put their own (CHECKLOCKTIME restricted) transaction from that address on the blockchain. Now the best usable payment to the receiver is the one associated to D'i+'.

When the two parties want to close the payment channel, one party signs a transaction from the deposit address to whatever addresses are desired, and sends the transaction to the other party to add their own signature and publish. This avoids either party having to wait for CHECKLOCKTIME restrictions to expire. If either party abandons the protocol at this point, the other can use the CHECKLOCKTIME restrictions to ensure they get at least as much as they would if both cooperated. Note that the holding addresses are only used on the blockchain when the protocol is abandoned.

This protocol does not deal with the case of malicious attacks on a party's network connection, which could keep them offline until CHECKLOCKTIME has expired. This is something that each party should consider when choosing how long the restrictions should be in place for. The protocol improves on blueadept's use of a new nLockTime for each reverse payment, by keeping the wait time independent of the number of payments, and not requiring either party to predict ahead of time how many payments will occur.
1714763951
Hero Member
*
Offline Offline

Posts: 1714763951

View Profile Personal Message (Offline)

Ignore
1714763951
Reply with quote  #2

1714763951
Report to moderator
1714763951
Hero Member
*
Offline Offline

Posts: 1714763951

View Profile Personal Message (Offline)

Ignore
1714763951
Reply with quote  #2

1714763951
Report to moderator
According to NIST and ECRYPT II, the cryptographic algorithms used in Bitcoin are expected to be strong until at least 2030. (After that, it will not be too difficult to transition to different algorithms.)
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714763951
Hero Member
*
Offline Offline

Posts: 1714763951

View Profile Personal Message (Offline)

Ignore
1714763951
Reply with quote  #2

1714763951
Report to moderator
1714763951
Hero Member
*
Offline Offline

Posts: 1714763951

View Profile Personal Message (Offline)

Ignore
1714763951
Reply with quote  #2

1714763951
Report to moderator
1714763951
Hero Member
*
Offline Offline

Posts: 1714763951

View Profile Personal Message (Offline)

Ignore
1714763951
Reply with quote  #2

1714763951
Report to moderator
Peter Todd
Legendary
*
expert
Offline Offline

Activity: 1120
Merit: 1150


View Profile
January 09, 2015, 06:32:54 AM
 #2

FWIW I'd recommend reposting this to the bitcoin-development mailing list - it'll get more review there. (I personally would prefer to reply there myself)

topynate (OP)
Newbie
*
Offline Offline

Activity: 17
Merit: 0


View Profile
January 09, 2015, 11:45:48 AM
 #3

FWIW I'd recommend reposting this to the bitcoin-development mailing list - it'll get more review there. (I personally would prefer to reply there myself)

Thanks – just posted there.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!