Struct TxCreationKeys
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§
§impl TxCreationKeys
impl TxCreationKeys
pub fn derive_new<T>(
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,
) -> TxCreationKeyswhere
T: Signing + Verification,
pub fn derive_new<T>(
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,
) -> TxCreationKeyswhere
T: Signing + Verification,
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>(
per_commitment_point: &PublicKey,
broadcaster_keys: &ChannelPublicKeys,
countersignatory_keys: &ChannelPublicKeys,
secp_ctx: &Secp256k1<T>,
) -> TxCreationKeyswhere
T: Signing + Verification,
pub fn from_channel_static_keys<T>(
per_commitment_point: &PublicKey,
broadcaster_keys: &ChannelPublicKeys,
countersignatory_keys: &ChannelPublicKeys,
secp_ctx: &Secp256k1<T>,
) -> TxCreationKeyswhere
T: Signing + Verification,
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
impl Clone for TxCreationKeys
§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§impl Debug for TxCreationKeys
impl Debug for TxCreationKeys
§impl PartialEq for TxCreationKeys
impl PartialEq for TxCreationKeys
§impl Readable for TxCreationKeys
impl Readable for TxCreationKeys
§fn read<R>(reader: &mut R) -> Result<TxCreationKeys, DecodeError>where
R: Read,
fn read<R>(reader: &mut R) -> Result<TxCreationKeys, DecodeError>where
R: Read,
Self in from the given Read.§impl Writeable for TxCreationKeys
impl Writeable for TxCreationKeys
impl Eq for TxCreationKeys
impl StructuralPartialEq for TxCreationKeys
Auto Trait Implementations§
impl Freeze for TxCreationKeys
impl RefUnwindSafe for TxCreationKeys
impl Send for TxCreationKeys
impl Sync for TxCreationKeys
impl Unpin for TxCreationKeys
impl UnwindSafe for TxCreationKeys
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
§impl<T> AnySync for T
impl<T> AnySync for T
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request