From e31f8e9c699a1467bb3ff7a72314925388f76464 Mon Sep 17 00:00:00 2001 From: Scroogey-SN Date: Tue, 18 Mar 2025 20:39:53 +0000 Subject: [PATCH] Support .onion for phoenixd (#1975) * fix #1964 support .onion urls like lnbits does * fix lint: const hostname --------- Co-authored-by: Keyan <34140557+huumn@users.noreply.github.com> --- wallets/phoenixd/server.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/wallets/phoenixd/server.js b/wallets/phoenixd/server.js index aceefd07..e81163b6 100644 --- a/wallets/phoenixd/server.js +++ b/wallets/phoenixd/server.js @@ -1,5 +1,6 @@ import { fetchWithTimeout } from '@/lib/fetch' import { msatsToSats } from '@/lib/format' +import { getAgent } from '@/lib/proxy' import { assertContentTypeJson, assertResponseOk } from '@/lib/url' export * from '@/wallets/phoenixd' @@ -27,9 +28,13 @@ export async function createInvoice ( body.append('description', description) body.append('amountSat', msatsToSats(msats)) - const res = await fetchWithTimeout(url + path, { + const hostname = url.replace(/^https?:\/\//, '').replace(/\/+$/, '') + const agent = getAgent({ hostname }) + + const res = await fetchWithTimeout(`${agent.protocol}//${hostname}${path}`, { method: 'POST', headers, + agent, body, signal })