pub struct TxCreationKeys {
pub per_commitment_point: PublicKey,
pub revocation_key: RevocationKey,
pub broadcaster_htlc_key: HtlcKey,
pub countersignatory_htlc_key: HtlcKey,
pub broadcaster_delayed_payment_key: DelayedPaymentKey,
}Expand description
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: PublicKeyThe broadcaster’s per-commitment public key which was used to derive the other keys.
revocation_key: RevocationKeyThe 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: HtlcKeyBroadcaster’s HTLC Key
countersignatory_htlc_key: HtlcKeyCountersignatory’s HTLC Key
broadcaster_delayed_payment_key: DelayedPaymentKeyBroadcaster’s Payment Key (which isn’t allowed to be spent from for some delay)
Implementations§
Source§impl TxCreationKeys
impl TxCreationKeys
Sourcepub fn derive_new<T: Signing + Verification>(
secp_ctx: &Secp256k1<T>,
per_commitment_point: &PublicKey,
broadcaster_delayed_payment_base: &DelayedPaymentBasepoint,
broadcaster_htlc_base: &HtlcBasepoint,
countersignatory_revocation_base: &RevocationBasepoint,
countersignatory_htlc_base: &HtlcBasepoint,
) -> TxCreationKeys
pub fn derive_new<T: Signing + Verification>( secp_ctx: &Secp256k1<T>, per_commitment_point: &PublicKey, broadcaster_delayed_payment_base: &DelayedPaymentBasepoint, broadcaster_htlc_base: &HtlcBasepoint, countersignatory_revocation_base: &RevocationBasepoint, countersignatory_htlc_base: &HtlcBasepoint, ) -> TxCreationKeys
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.
Sourcepub fn from_channel_static_keys<T: Signing + Verification>(
per_commitment_point: &PublicKey,
broadcaster_keys: &ChannelPublicKeys,
countersignatory_keys: &ChannelPublicKeys,
secp_ctx: &Secp256k1<T>,
) -> TxCreationKeys
pub fn from_channel_static_keys<T: Signing + Verification>( per_commitment_point: &PublicKey, broadcaster_keys: &ChannelPublicKeys, countersignatory_keys: &ChannelPublicKeys, secp_ctx: &Secp256k1<T>, ) -> TxCreationKeys
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§
Source§impl Clone for TxCreationKeys
impl Clone for TxCreationKeys
Source§fn clone(&self) -> TxCreationKeys
fn clone(&self) -> TxCreationKeys
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more