Skip to content

Commit

Permalink
:hotfix change secure site origin domain to .org (#2603)
Browse files Browse the repository at this point in the history
  • Loading branch information
svenvoskamp authored Jul 29, 2024
1 parent 5a1b7ad commit f3b124f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ui_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion apps/laboratory/tests/shared/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
2 changes: 1 addition & 1 deletion packages/core/src/utils/ConstantsUtil.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const SECURE_SITE = 'https://secure.walletconnect.com'
const SECURE_SITE = 'https://secure.walletconnect.org'

export const ONRAMP_PROVIDERS = [
{
Expand Down
2 changes: 1 addition & 1 deletion packages/scaffold-ui/src/utils/ConstantsUtil.ts
Original file line number Diff line number Diff line change
@@ -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'
}

0 comments on commit f3b124f

Please sign in to comment.