enhance privacy of my lightning address
- Enabling this setting hides details (ie node pubkey) of your attached wallets when anyone pays your SN lightning address or lnurl-pay
- The lightning invoice will appear to have SN's node as the destination to preserve your wallet's privacy
- This will incur in a 10% fee
- Disable this setting to receive payments directly to your attached wallets (which will reveal their details to the payer)
- Note: this privacy behavior is standard for internal zaps/payments on SN, and this setting only applies to external payments
}
name='proxyReceive'
groupClassName='mb-0'
/>
>
)
}
function AutowithdrawSettings () {
const [{ value: threshold }] = useField('autoWithdrawThreshold')
const sendThreshold = Math.max(Math.floor(threshold / 10), 1)
return (
<>
autowithdrawal
sats}
required
type='number'
min={0}
/>
>
)
}
function LightningNetworkFeesSettings () {
return (
<>
lightning network fees
we'll use whichever setting is higher during{' '}
pathfinding
%}
required
type='number'
min={0}
/>
sats}
required
type='number'
min={0}
/>
>
)
}
function Separator ({ children, className }) {
return (
{children}
)
}