2021-03-17 21:36:29 -04:00
|
|
|
use crate::bitcoin;
|
2021-03-16 04:11:14 -04:00
|
|
|
use crate::bitcoin::wallet::Watchable;
|
2021-02-15 00:09:42 -05:00
|
|
|
use crate::bitcoin::{
|
2021-02-14 20:19:43 -05:00
|
|
|
build_shared_output_descriptor, Address, Amount, BlockHeight, PublicKey, Transaction, TxLock,
|
2021-02-15 00:09:42 -05:00
|
|
|
};
|
2021-03-03 19:28:58 -05:00
|
|
|
use ::bitcoin::util::bip143::SigHashCache;
|
2021-03-17 21:36:29 -04:00
|
|
|
use ::bitcoin::{OutPoint, Script, SigHash, SigHashType, TxIn, TxOut, Txid};
|
2021-02-15 00:09:42 -05:00
|
|
|
use anyhow::Result;
|
|
|
|
use ecdsa_fun::Signature;
|
2021-02-17 21:33:50 -05:00
|
|
|
use miniscript::{Descriptor, DescriptorTrait};
|
2021-02-14 20:19:43 -05:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-03-11 02:16:00 -05:00
|
|
|
use std::cmp::Ordering;
|
2021-03-03 19:28:58 -05:00
|
|
|
use std::collections::HashMap;
|
|
|
|
use std::ops::Add;
|
2021-02-14 20:19:43 -05:00
|
|
|
|
|
|
|
/// Represent a timelock, expressed in relative block height as defined in
|
|
|
|
/// [BIP68](https://github.com/bitcoin/bips/blob/master/bip-0068.mediawiki).
|
|
|
|
/// E.g. The timelock expires 10 blocks after the reference transaction is
|
|
|
|
/// mined.
|
|
|
|
#[derive(Debug, Copy, Clone, Serialize, Deserialize, Eq, PartialEq)]
|
|
|
|
#[serde(transparent)]
|
|
|
|
pub struct CancelTimelock(u32);
|
|
|
|
|
|
|
|
impl CancelTimelock {
|
|
|
|
pub const fn new(number_of_blocks: u32) -> Self {
|
|
|
|
Self(number_of_blocks)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add<CancelTimelock> for BlockHeight {
|
|
|
|
type Output = BlockHeight;
|
|
|
|
|
|
|
|
fn add(self, rhs: CancelTimelock) -> Self::Output {
|
|
|
|
self + rhs.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-11 02:16:00 -05:00
|
|
|
impl PartialOrd<CancelTimelock> for u32 {
|
|
|
|
fn partial_cmp(&self, other: &CancelTimelock) -> Option<Ordering> {
|
|
|
|
self.partial_cmp(&other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq<CancelTimelock> for u32 {
|
|
|
|
fn eq(&self, other: &CancelTimelock) -> bool {
|
|
|
|
self.eq(&other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-14 20:19:43 -05:00
|
|
|
/// Represent a timelock, expressed in relative block height as defined in
|
|
|
|
/// [BIP68](https://github.com/bitcoin/bips/blob/master/bip-0068.mediawiki).
|
|
|
|
/// E.g. The timelock expires 10 blocks after the reference transaction is
|
|
|
|
/// mined.
|
|
|
|
#[derive(Debug, Copy, Clone, Serialize, Deserialize, Eq, PartialEq)]
|
|
|
|
#[serde(transparent)]
|
|
|
|
pub struct PunishTimelock(u32);
|
|
|
|
|
|
|
|
impl PunishTimelock {
|
|
|
|
pub const fn new(number_of_blocks: u32) -> Self {
|
|
|
|
Self(number_of_blocks)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Add<PunishTimelock> for BlockHeight {
|
|
|
|
type Output = BlockHeight;
|
|
|
|
|
|
|
|
fn add(self, rhs: PunishTimelock) -> Self::Output {
|
|
|
|
self + rhs.0
|
|
|
|
}
|
|
|
|
}
|
2021-02-15 00:09:42 -05:00
|
|
|
|
2021-03-11 02:16:00 -05:00
|
|
|
impl PartialOrd<PunishTimelock> for u32 {
|
|
|
|
fn partial_cmp(&self, other: &PunishTimelock) -> Option<Ordering> {
|
|
|
|
self.partial_cmp(&other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq<PunishTimelock> for u32 {
|
|
|
|
fn eq(&self, other: &PunishTimelock) -> bool {
|
|
|
|
self.eq(&other.0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-16 04:11:14 -04:00
|
|
|
#[derive(Debug)]
|
2021-02-15 00:09:42 -05:00
|
|
|
pub struct TxCancel {
|
|
|
|
inner: Transaction,
|
|
|
|
digest: SigHash,
|
|
|
|
pub(in crate::bitcoin) output_descriptor: Descriptor<::bitcoin::PublicKey>,
|
2021-02-24 21:52:05 -05:00
|
|
|
lock_output_descriptor: Descriptor<::bitcoin::PublicKey>,
|
2021-02-15 00:09:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl TxCancel {
|
|
|
|
pub fn new(
|
|
|
|
tx_lock: &TxLock,
|
|
|
|
cancel_timelock: CancelTimelock,
|
|
|
|
A: PublicKey,
|
|
|
|
B: PublicKey,
|
2021-04-28 20:59:40 -04:00
|
|
|
spending_fee: Amount,
|
2021-02-15 00:09:42 -05:00
|
|
|
) -> Self {
|
|
|
|
let cancel_output_descriptor = build_shared_output_descriptor(A.0, B.0);
|
|
|
|
|
|
|
|
let tx_in = TxIn {
|
|
|
|
previous_output: tx_lock.as_outpoint(),
|
|
|
|
script_sig: Default::default(),
|
2021-02-14 20:19:43 -05:00
|
|
|
sequence: cancel_timelock.0,
|
2021-02-15 00:09:42 -05:00
|
|
|
witness: Vec::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let tx_out = TxOut {
|
2021-04-28 20:59:40 -04:00
|
|
|
value: tx_lock.lock_amount().as_sat() - spending_fee.as_sat(),
|
2021-02-17 21:33:50 -05:00
|
|
|
script_pubkey: cancel_output_descriptor.script_pubkey(),
|
2021-02-15 00:09:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
let transaction = Transaction {
|
|
|
|
version: 2,
|
|
|
|
lock_time: 0,
|
|
|
|
input: vec![tx_in],
|
|
|
|
output: vec![tx_out],
|
|
|
|
};
|
|
|
|
|
|
|
|
let digest = SigHashCache::new(&transaction).signature_hash(
|
|
|
|
0, // Only one input: lock_input (lock transaction)
|
2021-02-17 21:33:50 -05:00
|
|
|
&tx_lock.output_descriptor.script_code(),
|
2021-02-15 00:09:42 -05:00
|
|
|
tx_lock.lock_amount().as_sat(),
|
|
|
|
SigHashType::All,
|
|
|
|
);
|
|
|
|
|
|
|
|
Self {
|
|
|
|
inner: transaction,
|
|
|
|
digest,
|
|
|
|
output_descriptor: cancel_output_descriptor,
|
2021-02-24 21:52:05 -05:00
|
|
|
lock_output_descriptor: tx_lock.output_descriptor.clone(),
|
2021-02-15 00:09:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn txid(&self) -> Txid {
|
|
|
|
self.inner.txid()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn digest(&self) -> SigHash {
|
|
|
|
self.digest
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn amount(&self) -> Amount {
|
|
|
|
Amount::from_sat(self.inner.output[0].value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn as_outpoint(&self) -> OutPoint {
|
|
|
|
OutPoint::new(self.inner.txid(), 0)
|
|
|
|
}
|
|
|
|
|
2021-03-17 21:36:29 -04:00
|
|
|
pub fn complete_as_alice(
|
|
|
|
self,
|
|
|
|
a: bitcoin::SecretKey,
|
|
|
|
B: bitcoin::PublicKey,
|
|
|
|
tx_cancel_sig_B: bitcoin::Signature,
|
|
|
|
) -> Result<Transaction> {
|
|
|
|
let sig_a = a.sign(self.digest());
|
|
|
|
let sig_b = tx_cancel_sig_B;
|
|
|
|
|
|
|
|
let tx_cancel = self
|
|
|
|
.add_signatures((a.public(), sig_a), (B, sig_b))
|
|
|
|
.expect("sig_{a,b} to be valid signatures for tx_cancel");
|
|
|
|
|
|
|
|
Ok(tx_cancel)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn complete_as_bob(
|
|
|
|
self,
|
|
|
|
A: bitcoin::PublicKey,
|
|
|
|
b: bitcoin::SecretKey,
|
|
|
|
tx_cancel_sig_A: bitcoin::Signature,
|
|
|
|
) -> Result<Transaction> {
|
|
|
|
let sig_a = tx_cancel_sig_A;
|
|
|
|
let sig_b = b.sign(self.digest());
|
|
|
|
|
|
|
|
let tx_cancel = self
|
|
|
|
.add_signatures((A, sig_a), (b.public(), sig_b))
|
|
|
|
.expect("sig_{a,b} to be valid signatures for tx_cancel");
|
|
|
|
|
|
|
|
Ok(tx_cancel)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn add_signatures(
|
2021-02-15 00:09:42 -05:00
|
|
|
self,
|
|
|
|
(A, sig_a): (PublicKey, Signature),
|
|
|
|
(B, sig_b): (PublicKey, Signature),
|
|
|
|
) -> Result<Transaction> {
|
|
|
|
let satisfier = {
|
|
|
|
let mut satisfier = HashMap::with_capacity(2);
|
|
|
|
|
|
|
|
let A = ::bitcoin::PublicKey {
|
|
|
|
compressed: true,
|
|
|
|
key: A.0.into(),
|
|
|
|
};
|
|
|
|
let B = ::bitcoin::PublicKey {
|
|
|
|
compressed: true,
|
|
|
|
key: B.0.into(),
|
|
|
|
};
|
|
|
|
|
|
|
|
// The order in which these are inserted doesn't matter
|
|
|
|
satisfier.insert(A, (sig_a.into(), ::bitcoin::SigHashType::All));
|
|
|
|
satisfier.insert(B, (sig_b.into(), ::bitcoin::SigHashType::All));
|
|
|
|
|
|
|
|
satisfier
|
|
|
|
};
|
|
|
|
|
|
|
|
let mut tx_cancel = self.inner;
|
2021-02-24 21:52:05 -05:00
|
|
|
self.lock_output_descriptor
|
2021-02-17 21:33:50 -05:00
|
|
|
.satisfy(&mut tx_cancel.input[0], satisfier)?;
|
2021-02-15 00:09:42 -05:00
|
|
|
|
|
|
|
Ok(tx_cancel)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn build_spend_transaction(
|
|
|
|
&self,
|
|
|
|
spend_address: &Address,
|
2021-02-14 20:19:43 -05:00
|
|
|
sequence: Option<PunishTimelock>,
|
2021-04-28 20:40:04 -04:00
|
|
|
spending_fee: Amount,
|
2021-02-15 00:09:42 -05:00
|
|
|
) -> Transaction {
|
|
|
|
let previous_output = self.as_outpoint();
|
|
|
|
|
|
|
|
let tx_in = TxIn {
|
|
|
|
previous_output,
|
|
|
|
script_sig: Default::default(),
|
2021-02-14 20:19:43 -05:00
|
|
|
sequence: sequence.map(|seq| seq.0).unwrap_or(0xFFFF_FFFF),
|
2021-02-15 00:09:42 -05:00
|
|
|
witness: Vec::new(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let tx_out = TxOut {
|
2021-04-28 20:40:04 -04:00
|
|
|
value: self.amount().as_sat() - spending_fee.as_sat(),
|
2021-02-15 00:09:42 -05:00
|
|
|
script_pubkey: spend_address.script_pubkey(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Transaction {
|
|
|
|
version: 2,
|
|
|
|
lock_time: 0,
|
|
|
|
input: vec![tx_in],
|
|
|
|
output: vec![tx_out],
|
|
|
|
}
|
|
|
|
}
|
2021-05-03 03:35:41 -04:00
|
|
|
|
|
|
|
pub fn weight() -> usize {
|
|
|
|
596
|
|
|
|
}
|
2021-02-15 00:09:42 -05:00
|
|
|
}
|
2021-03-16 04:11:14 -04:00
|
|
|
|
|
|
|
impl Watchable for TxCancel {
|
|
|
|
fn id(&self) -> Txid {
|
|
|
|
self.txid()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn script(&self) -> Script {
|
|
|
|
self.output_descriptor.script_pubkey()
|
|
|
|
}
|
|
|
|
}
|