diff --git a/examples/aave/src/config.ts b/examples/aave/src/config.ts index 7dfb2b7be..ddbf81506 100644 --- a/examples/aave/src/config.ts +++ b/examples/aave/src/config.ts @@ -21,7 +21,7 @@ export const config = createConfig({ indexerUrl: 'https://dev-indexer.sequence.app', builderUrl: 'https://dev-api.sequence.build' }, - walletUrl: 'https://v3.sequence-dev.app', + walletUrl: 'https://wallet.polygon.technology', // walletUrl: 'http://localhost:5173', dappOrigin: window.location.origin, appName: 'Sequence Web SDK Demo', diff --git a/examples/next/src/config.ts b/examples/next/src/config.ts index 986f313e4..2e28c23c2 100644 --- a/examples/next/src/config.ts +++ b/examples/next/src/config.ts @@ -21,7 +21,7 @@ export const sponsoredContractAddresses: Record = { export const connectConfig: ConnectConfig = { projectAccessKey, - walletUrl: 'https://v3.sequence-dev.app', + walletUrl: 'https://wallet.polygon.technology', defaultTheme: 'dark', signIn: { projectName: 'Sequence Web SDK Demo', @@ -74,7 +74,7 @@ export const connectConfig: ConnectConfig = { export const config = createConfig({ ...connectConfig, - walletUrl: 'https://v3.sequence-dev.app', + walletUrl: 'https://wallet.polygon.technology', dappOrigin: defaultOrigin, appName: 'Sequence Web SDK Demo', chainIds: [ChainId.ARBITRUM_SEPOLIA, ChainId.OPTIMISM], diff --git a/examples/react/src/components/Homepage.tsx b/examples/react/src/components/Homepage.tsx index 6172d0910..552d79899 100644 --- a/examples/react/src/components/Homepage.tsx +++ b/examples/react/src/components/Homepage.tsx @@ -82,7 +82,7 @@ export const Homepage = ({ walletUrl, onWalletUrlChange }: HomepageProps) => { name="wallet-url" value={walletUrlInput} onChange={e => setWalletUrlInput(e.target.value)} - placeholder="https://v3.sequence-dev.app" + placeholder="https://wallet.polygon.technology" />
diff --git a/examples/react/src/config.ts b/examples/react/src/config.ts index d703ce8e4..bbf30b586 100644 --- a/examples/react/src/config.ts +++ b/examples/react/src/config.ts @@ -13,7 +13,7 @@ const isDev = false const projectAccessKey = isDev ? 'AQAAAAAAAAVBcvNU0sTXiBQmgnL-uVm929Y' : 'AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI' const walletConnectProjectId = 'c65a6cb1aa83c4e24500130f23a437d8' export const WALLET_URL_STORAGE_KEY = 'sequence-react-example.walletUrl' -export const DEFAULT_WALLET_URL = 'https://v3.sequence-dev.app' +export const DEFAULT_WALLET_URL = 'https://wallet.polygon.technology' export const sanitizeWalletUrl = (walletUrl: string): string => { const trimmed = walletUrl.trim()