From f3b124ffabe01e5725ef27cf00322efd53551e7b Mon Sep 17 00:00:00 2001 From: Sven <38101365+svenvoskamp@users.noreply.github.com> Date: Mon, 29 Jul 2024 09:54:16 +0200 Subject: [PATCH] :hotfix change secure site origin domain to .org (#2603) --- .github/workflows/ui_tests.yml | 2 +- apps/laboratory/tests/shared/constants/index.ts | 2 +- packages/core/src/utils/ConstantsUtil.ts | 2 +- packages/scaffold-ui/src/utils/ConstantsUtil.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index f9730a3c1d..00712e1b01 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -30,7 +30,7 @@ on: type: boolean secure-site-url: description: 'Secure site SDK url' - default: 'https://secure.walletconnect.com/sdk' + default: 'https://secure.walletconnect.org/sdk' required: false type: string secrets: diff --git a/apps/laboratory/tests/shared/constants/index.ts b/apps/laboratory/tests/shared/constants/index.ts index e42c4994b3..070fa819de 100644 --- a/apps/laboratory/tests/shared/constants/index.ts +++ b/apps/laboratory/tests/shared/constants/index.ts @@ -8,5 +8,5 @@ export const DEFAULT_SESSION_PARAMS: SessionParams = { optAccounts: ['1', '2'], accept: true } -export const SECURE_WEBSITE_URL = 'https://secure.walletconnect.com' +export const SECURE_WEBSITE_URL = 'https://secure.walletconnect.org' export const DEFAULT_CHAIN_NAME = process.env['DEFAULT_CHAIN_NAME'] || 'Ethereum' diff --git a/packages/core/src/utils/ConstantsUtil.ts b/packages/core/src/utils/ConstantsUtil.ts index c31b0226f7..5c38d9971e 100644 --- a/packages/core/src/utils/ConstantsUtil.ts +++ b/packages/core/src/utils/ConstantsUtil.ts @@ -1,4 +1,4 @@ -const SECURE_SITE = 'https://secure.walletconnect.com' +const SECURE_SITE = 'https://secure.walletconnect.org' export const ONRAMP_PROVIDERS = [ { diff --git a/packages/scaffold-ui/src/utils/ConstantsUtil.ts b/packages/scaffold-ui/src/utils/ConstantsUtil.ts index 88c7eaee31..be015325c5 100644 --- a/packages/scaffold-ui/src/utils/ConstantsUtil.ts +++ b/packages/scaffold-ui/src/utils/ConstantsUtil.ts @@ -1,5 +1,5 @@ export const ConstantsUtil = { ACCOUNT_TABS: [{ label: 'Tokens' }, { label: 'NFTs' }, { label: 'Activity' }], SECURE_SITE_ORIGIN: - process.env['NEXT_PUBLIC_SECURE_SITE_ORIGIN'] || 'https://secure.walletconnect.com' + process.env['NEXT_PUBLIC_SECURE_SITE_ORIGIN'] || 'https://secure.walletconnect.org' }