fedimint_ln_common/
config.rspub use bitcoin::Network;
use fedimint_core::core::ModuleKind;
use fedimint_core::encoding::btc::NetworkLegacyEncodingWrapper;
use fedimint_core::encoding::{Decodable, Encodable};
use fedimint_core::envs::BitcoinRpcConfig;
use fedimint_core::{msats, plugin_types_trait_impl_config, Amount};
use lightning_invoice::RoutingFees;
use serde::{Deserialize, Serialize};
use threshold_crypto::serde_impl::SerdeSecret;
use crate::LightningCommonInit;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LightningGenParams {
pub local: LightningGenParamsLocal,
pub consensus: LightningGenParamsConsensus,
}
impl LightningGenParams {
pub fn regtest(bitcoin_rpc: BitcoinRpcConfig) -> Self {
Self {
local: LightningGenParamsLocal { bitcoin_rpc },
consensus: LightningGenParamsConsensus {
network: Network::Regtest,
},
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LightningGenParamsConsensus {
pub network: Network,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LightningGenParamsLocal {
pub bitcoin_rpc: BitcoinRpcConfig,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LightningConfig {
pub local: LightningConfigLocal,
pub private: LightningConfigPrivate,
pub consensus: LightningConfigConsensus,
}
#[derive(Clone, Debug, Serialize, Deserialize, Decodable, Encodable)]
pub struct LightningConfigLocal {
pub bitcoin_rpc: BitcoinRpcConfig,
}
#[derive(Debug, Clone, Serialize, Deserialize, Encodable, Decodable)]
pub struct LightningConfigConsensus {
pub threshold_pub_keys: threshold_crypto::PublicKeySet,
pub fee_consensus: FeeConsensus,
pub network: NetworkLegacyEncodingWrapper,
}
impl LightningConfigConsensus {
pub fn threshold(&self) -> usize {
self.threshold_pub_keys.threshold() + 1
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct LightningConfigPrivate {
pub threshold_sec_key: SerdeSecret<threshold_crypto::SecretKeyShare>,
}
#[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize, Encodable, Decodable)]
pub struct LightningClientConfig {
pub threshold_pub_key: threshold_crypto::PublicKey,
pub fee_consensus: FeeConsensus,
pub network: NetworkLegacyEncodingWrapper,
}
impl std::fmt::Display for LightningClientConfig {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"LightningClientConfig {}",
serde_json::to_string(self).map_err(|_e| std::fmt::Error)?
)
}
}
plugin_types_trait_impl_config!(
LightningCommonInit,
LightningGenParams,
LightningGenParamsLocal,
LightningGenParamsConsensus,
LightningConfig,
LightningConfigLocal,
LightningConfigPrivate,
LightningConfigConsensus,
LightningClientConfig
);
#[derive(Debug, Clone, Eq, PartialEq, Hash, Serialize, Deserialize, Encodable, Decodable)]
pub struct FeeConsensus {
pub contract_input: fedimint_core::Amount,
pub contract_output: fedimint_core::Amount,
}
impl Default for FeeConsensus {
fn default() -> Self {
Self {
contract_input: fedimint_core::Amount::ZERO,
contract_output: fedimint_core::Amount::ZERO,
}
}
}
pub trait FeeToAmount {
fn to_amount(&self, payment: &Amount) -> Amount;
}
impl FeeToAmount for RoutingFees {
fn to_amount(&self, payment: &Amount) -> Amount {
let base_fee = u64::from(self.base_msat);
let margin_fee: u64 = if self.proportional_millionths > 0 {
let fee_percent = 1_000_000 / u64::from(self.proportional_millionths);
payment.msats / fee_percent
} else {
0
};
msats(base_fee + margin_fee)
}
}