From adbf3adfe68cd3ba8f1fa33c5840b1ecd327ed19 Mon Sep 17 00:00:00 2001 From: benthecarman Date: Mon, 1 Jul 2024 14:57:29 -0500 Subject: [PATCH 1/2] Change LSP url to olympus --- .env.example | 2 +- .env.mainnet | 2 +- .env.signet | 2 +- .github/workflows/android-build.yml | 2 +- .github/workflows/android-prod.yml | 2 +- .github/workflows/android-staging.yml | 2 +- .github/workflows/ios-prod.yml | 2 +- .github/workflows/ios-staging.yml | 2 +- .github/workflows/playwright.yml | 2 +- Dockerfile | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.env.example b/.env.example index a569c76f4..8169b70ff 100644 --- a/.env.example +++ b/.env.example @@ -9,7 +9,7 @@ VITE_NETWORK="signet" VITE_PROXY="wss://p.mutinywallet.com" VITE_ESPLORA="https://mutinynet.com/api" -VITE_LSP="https://signet-lsp.mutinywallet.com" +VITE_LSP="https://mutinynet-flow.lnolymp.us" VITE_RGS="https://rgs.mutinynet.com/snapshot/" # VITE_SELFHOSTED="true" // Removes Mutiny+ VITE_AUTH="https://auth-staging.mutinywallet.com" diff --git a/.env.mainnet b/.env.mainnet index b07943e36..f05f147d7 100644 --- a/.env.mainnet +++ b/.env.mainnet @@ -3,7 +3,7 @@ VITE_NETWORK="bitcoin" VITE_PROXY="wss://p.mutinywallet.com" VITE_ESPLORA="https://mutiny.mempool.space/api" -VITE_LSP="https://lsp.voltageapi.com" +VITE_LSP="https://0conf.lnolymp.us" VITE_RGS="https://scorer.mutinywallet.com/v1/rgs/snapshot/" # VITE_SELFHOSTED="true" // Removes Mutiny+ VITE_AUTH="https://auth.mutinywallet.com" diff --git a/.env.signet b/.env.signet index 135963681..69d2d55f1 100644 --- a/.env.signet +++ b/.env.signet @@ -3,7 +3,7 @@ VITE_NETWORK="signet" VITE_PROXY="wss://p.mutinywallet.com" VITE_ESPLORA="https://mutinynet.com/api" -VITE_LSP="https://signet-lsp.mutinywallet.com" +VITE_LSP="https://mutinynet-flow.lnolymp.us" VITE_RGS="https://rgs.mutinynet.com/snapshot/" # VITE_SELFHOSTED="true" // Removes Mutiny+ VITE_AUTH="https://auth-staging.mutinywallet.com" diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 087e065a4..57900d6e1 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -64,7 +64,7 @@ jobs: VITE_NETWORK: signet VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutinynet.com/api - VITE_LSP: https://signet-lsp.mutinywallet.com + VITE_LSP: https://mutinynet-flow.lnolymp.us VITE_RGS: https://rgs.mutinynet.com/snapshot/ VITE_AUTH: https://auth-staging.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com diff --git a/.github/workflows/android-prod.yml b/.github/workflows/android-prod.yml index ca28aa177..0af16fee6 100644 --- a/.github/workflows/android-prod.yml +++ b/.github/workflows/android-prod.yml @@ -60,7 +60,7 @@ jobs: VITE_NETWORK: bitcoin VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutiny.mempool.space/api - VITE_LSP: https://lsp.voltageapi.com + VITE_LSP: https://0conf.lnolymp.us VITE_RGS: https://scorer.mutinywallet.com/v1/rgs/snapshot/ VITE_AUTH: https://auth.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions.mutinywallet.com diff --git a/.github/workflows/android-staging.yml b/.github/workflows/android-staging.yml index f426769e0..f2bc26d93 100644 --- a/.github/workflows/android-staging.yml +++ b/.github/workflows/android-staging.yml @@ -61,7 +61,7 @@ jobs: VITE_NETWORK: signet VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutinynet.com/api - VITE_LSP: https://signet-lsp.mutinywallet.com + VITE_LSP: https://mutinynet-flow.lnolymp.us VITE_RGS: https://rgs.mutinynet.com/snapshot/ VITE_AUTH: https://auth-staging.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com diff --git a/.github/workflows/ios-prod.yml b/.github/workflows/ios-prod.yml index 12be3b0ac..023f487cc 100644 --- a/.github/workflows/ios-prod.yml +++ b/.github/workflows/ios-prod.yml @@ -37,7 +37,7 @@ jobs: VITE_NETWORK: bitcoin VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutiny.mempool.space/api - VITE_LSP: https://lsp.voltageapi.com + VITE_LSP: https://0conf.lnolymp.us VITE_RGS: https://scorer.mutinywallet.com/v1/rgs/snapshot/ VITE_AUTH: https://auth.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions.mutinywallet.com diff --git a/.github/workflows/ios-staging.yml b/.github/workflows/ios-staging.yml index d63cfb999..bb455e784 100644 --- a/.github/workflows/ios-staging.yml +++ b/.github/workflows/ios-staging.yml @@ -37,7 +37,7 @@ jobs: VITE_NETWORK: signet VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutinynet.com/api - VITE_LSP: https://signet-lsp.mutinywallet.com + VITE_LSP: https://mutinynet-flow.lnolymp.us VITE_RGS: https://rgs.mutinynet.com/snapshot/ VITE_AUTH: https://auth-staging.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index f3d5fc187..a5a84927e 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -56,7 +56,7 @@ jobs: VITE_NETWORK: signet VITE_PROXY: wss://p.mutinywallet.com VITE_ESPLORA: https://mutinynet.com/api - VITE_LSP: https://signet-lsp.mutinywallet.com + VITE_LSP: https://mutinynet-flow.lnolymp.us VITE_RGS: https://rgs.mutinynet.com/snapshot/ VITE_AUTH: https://auth-staging.mutinywallet.com VITE_SUBSCRIPTIONS: https://subscriptions-staging.mutinywallet.com diff --git a/Dockerfile b/Dockerfile index 246afd9c9..768f71e9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ARG VITE_PROXY="/_services/proxy" ARG VITE_PRIMAL="https://primal-cache.mutinywallet.com/api" ARG VITE_ESPLORA ARG VITE_SCORER="https://scorer.mutinywallet.com" -ARG VITE_LSP="https://lsp.voltageapi.com" +ARG VITE_LSP="https://0conf.lnolymp.us" ARG VITE_RGS ARG VITE_AUTH ARG VITE_STORAGE="/_services/vss/v2" From 4bb62761256f88bfde16b488a8a7558a1b7bc10f Mon Sep 17 00:00:00 2001 From: benthecarman Date: Mon, 1 Jul 2024 15:25:24 -0500 Subject: [PATCH 2/2] Better timeouts in playwright test --- e2e/roundtrip.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/e2e/roundtrip.spec.ts b/e2e/roundtrip.spec.ts index 32aecb318..85aa699a3 100644 --- a/e2e/roundtrip.spec.ts +++ b/e2e/roundtrip.spec.ts @@ -7,6 +7,8 @@ test.beforeEach(async ({ page }) => { }); test("rountrip receive and send", async ({ page }) => { + test.slow(); // tell playwright that this test is slow + await loadHome(page); await page.locator("#fab").click(); @@ -133,6 +135,9 @@ test("rountrip receive and send", async ({ page }) => { await page.click("text=Confirm"); + // wait for the channel to close + await page.waitForTimeout(5000); + await page .getByText( "It looks like you don't have any channels yet. To get started, receive some sats over lightning, or swap some on-chain funds into a channel. Get your hands dirty!"