Struct lightning::ln::chan_utils::TxCreationKeys[][src]

pub struct TxCreationKeys {
    pub per_commitment_point: PublicKey,
    pub revocation_key: PublicKey,
    pub broadcaster_htlc_key: PublicKey,
    pub countersignatory_htlc_key: PublicKey,
    pub broadcaster_delayed_payment_key: PublicKey,
}

The set of public keys which are used in the creation of one commitment transaction. These are derived from the channel base keys and per-commitment data.

A broadcaster key is provided from potential broadcaster of the computed transaction. A countersignatory key is coming from a protocol participant unable to broadcast the transaction.

These keys are assumed to be good, either because the code derived them from channel basepoints via the new function, or they were obtained via CommitmentTransaction.trust().keys() because we trusted the source of the pre-calculated keys.

Fields

per_commitment_point: PublicKey

The broadcaster’s per-commitment public key which was used to derive the other keys.

revocation_key: PublicKey

The revocation key which is used to allow the broadcaster of the commitment transaction to provide their counterparty the ability to punish them if they broadcast an old state.

broadcaster_htlc_key: PublicKey

Broadcaster’s HTLC Key

countersignatory_htlc_key: PublicKey

Countersignatory’s HTLC Key

broadcaster_delayed_payment_key: PublicKey

Broadcaster’s Payment Key (which isn’t allowed to be spent from for some delay)

Implementations

impl TxCreationKeys[src]

pub fn derive_new<T: Signing + Verification>(
    secp_ctx: &Secp256k1<T>,
    per_commitment_point: &PublicKey,
    broadcaster_delayed_payment_base: &PublicKey,
    broadcaster_htlc_base: &PublicKey,
    countersignatory_revocation_base: &PublicKey,
    countersignatory_htlc_base: &PublicKey
) -> Result<TxCreationKeys, SecpError>
[src]

Create per-state keys from channel base points and the per-commitment point. Key set is asymmetric and can’t be used as part of counter-signatory set of transactions.

pub fn from_channel_static_keys<T: Signing + Verification>(
    per_commitment_point: &PublicKey,
    broadcaster_keys: &ChannelPublicKeys,
    countersignatory_keys: &ChannelPublicKeys,
    secp_ctx: &Secp256k1<T>
) -> Result<TxCreationKeys, SecpError>
[src]

Generate per-state keys from channel static keys. Key set is asymmetric and can’t be used as part of counter-signatory set of transactions.

Trait Implementations

impl Clone for TxCreationKeys[src]

impl PartialEq<TxCreationKeys> for TxCreationKeys[src]

impl Readable for TxCreationKeys[src]

impl StructuralPartialEq for TxCreationKeys[src]

impl Writeable for TxCreationKeys[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.