Skip to content

Commit

Permalink
fix(app): change provider order
Browse files Browse the repository at this point in the history
  • Loading branch information
superical committed Dec 19, 2023
1 parent 3fe83de commit a5173ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/utils/wagmi-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const defaultChains = {
const { chains, provider, webSocketProvider } = configureChains(
getDefaultChains(defaultChains),
[
infuraProvider({ apiKey: process.env.NEXT_PUBLIC_INFURA_API_KEY!, priority: 0 }),
alchemyProvider({ apiKey: process.env.NEXT_PUBLIC_ALCHEMY_API_KEY!, priority: 1 }),
infuraProvider({ apiKey: process.env.NEXT_PUBLIC_INFURA_API_KEY!, priority: 0 }),
publicProvider({ priority: 2 }),
],
{ stallTimeout: 1000 }
Expand Down

0 comments on commit a5173ef

Please sign in to comment.