Error Handling ​
The error
property in Wagmi Hooks is strongly typed with it's corresponding error type. This enables you to have granular precision with handling errors in your application.
You can discriminate the error type by using the name
property on the error object.
tsx
tsx
import {useBlockNumber } from 'wagmi'ÂfunctionApp () {const {data ,error } =useBlockNumber ()Âerror ?.name Âif (error ?.name === 'HttpRequestError') {const {status } =error return <div >A HTTP error occurred. Status: {status }</div >}if (error ?.name === 'LimitExceededRpcError') {const {code } =error return <div >Rate limit exceeded. Code: {code }</div >}// ...}
tsx
import {useBlockNumber } from 'wagmi'ÂfunctionApp () {const {data ,error } =useBlockNumber ()Âerror ?.name Âif (error ?.name === 'HttpRequestError') {const {status } =error return <div >A HTTP error occurred. Status: {status }</div >}if (error ?.name === 'LimitExceededRpcError') {const {code } =error return <div >Rate limit exceeded. Code: {code }</div >}// ...}
ts
import { http, createConfig } from 'wagmi'
import { mainnet, sepolia } from 'wagmi/chains'
export const config = createConfig({
chains: [mainnet, sepolia],
transports: {
[mainnet.id]: http(),
[sepolia.id]: http(),
},
})
import { http, createConfig } from 'wagmi'
import { mainnet, sepolia } from 'wagmi/chains'
export const config = createConfig({
chains: [mainnet, sepolia],
transports: {
[mainnet.id]: http(),
[sepolia.id]: http(),
},
})