Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/aave/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions examples/next/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const sponsoredContractAddresses: Record<number, `0x${string}`> = {

export const connectConfig: ConnectConfig = {
projectAccessKey,
walletUrl: 'https://v3.sequence-dev.app',
walletUrl: 'https://wallet.polygon.technology',
defaultTheme: 'dark',
signIn: {
projectName: 'Sequence Web SDK Demo',
Expand Down Expand Up @@ -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],
Expand Down
2 changes: 1 addition & 1 deletion examples/react/src/components/Homepage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
/>
<div className="flex flex-col gap-2">
<Text variant="small" color="muted">
Expand Down
2 changes: 1 addition & 1 deletion examples/react/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading