@@ -46,19 +74,7 @@ export function ConnectWallet({ showAddChain = true }: { showAddChain?: boolean
diff --git a/src/pages/quickstart/connection-details.mdx b/src/pages/quickstart/connection-details.mdx
index 5d77c319..405f1039 100644
--- a/src/pages/quickstart/connection-details.mdx
+++ b/src/pages/quickstart/connection-details.mdx
@@ -15,7 +15,7 @@ You can connect with Tempo like you would with any other EVM chain.
Click on your browser wallet below to automatically connect it to the Tempo network.
-
+
:::warning
Note that on some wallets, you might see an unusually high "balance". This is because, historically, blockchain wallets have always assumed that a blockchain has a "native gas token". On Tempo, there is no native gas token, and so the value shown is a placeholder. See [EVM Differences](/quickstart/evm-compatibility#handling-eth-balance-checks) for more information on this quirk.
diff --git a/src/wagmi.config.ts b/src/wagmi.config.ts
index 06cd35c8..db3f9e7b 100644
--- a/src/wagmi.config.ts
+++ b/src/wagmi.config.ts
@@ -2,7 +2,7 @@ import { QueryClient } from '@tanstack/react-query'
import { Expiry } from 'accounts'
import * as React from 'react'
import { parseUnits } from 'viem'
-import { tempoDevnet, tempoLocalnet, tempoModerato } from 'viem/chains'
+import { tempo, tempoDevnet, tempoLocalnet, tempoModerato } from 'viem/chains'
import { withRelay } from 'viem/tempo'
import {
type CreateConfigParameters,
@@ -48,7 +48,7 @@ export function getConfig(options: getConfig.Options = {}) {
batch: {
multicall: false,
},
- chains: [chain],
+ chains: [chain, tempo],
connectors: [
...(import.meta.env.VITE_E2E === 'true'
? [webAuthn()]
@@ -97,6 +97,7 @@ export function getConfig(options: getConfig.Options = {}) {
http('https://sponsor.devnet.tempo.xyz'),
{ policy: 'sign-only' },
),
+ [tempo.id]: http(tempo.rpcUrls.default.http[0]),
[tempoLocalnet.id]: http(undefined, { batch: true }),
},
})