Skip to content

Commit

Permalink
reverse the order
Browse files Browse the repository at this point in the history
  • Loading branch information
technophile-04 committed Dec 26, 2024
1 parent 68de399 commit c2ab49c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/nextjs/services/web3/baseWagmiConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const enabledChains = targetNetworks.find((network: Chain) => network.id

export const createWagmiClient = ({ chain }: { chain: Chain }) => {
const alchemyHttpUrl = getAlchemyHttpUrl(chain.id);
const rpcFallbacks = alchemyHttpUrl ? [http(), http(alchemyHttpUrl)] : [http()];
const rpcFallbacks = alchemyHttpUrl ? [http(alchemyHttpUrl), http()] : [http()];

return createClient({
chain: {
Expand Down

0 comments on commit c2ab49c

Please sign in to comment.