import { Dialog } from "@kobalte/core"; import { ParentComponent, createSignal } from "solid-js"; import { DIALOG_CONTENT, DIALOG_POSITIONER, OVERLAY } from "./DetailsModal"; import { ModalCloseButton, SmallHeader } from "./layout"; import { ExternalLink } from "./layout/ExternalLink"; export function FeesModal() { return (

Mutiny is a self-custodial wallet. To initiate a lightning payment we must open a lightning channel, which requires a minimum amount and a setup fee.

Future payments, both send and recieve, will only incur normal network fees and a nominal service fee unless your channel runs out of inbound capacity.

Learn more about liquidity

); } export const MoreInfoModal: ParentComponent<{ linkText: string; title: string; }> = (props) => { const [open, setOpen] = createSignal(false); return (
{props.title}
{props.children}
); };