Error Handling
Every module in viem exports an accompanying error type which you can use to strongly type your catch
statements.
These types come in the form of <Module>ErrorType
. For example, the getBlockNumber
action exports a GetBlockNumberErrorType
type.
Unfortunately, TypeScript doesn't have an abstraction for typed exceptions, so the most pragmatic & vanilla approach would be to explicitly cast error types in the catch
statement.
import { type type GetBlockNumberErrorType = RequestErrorTypeGetBlockNumberErrorType } from 'viem'
import { const client: {
account: undefined;
batch?: {
multicall?: boolean | {
batchSize?: number | undefined;
wait?: number | undefined;
} | undefined;
} | undefined;
cacheTime: number;
chain: {
blockExplorers: {
...;
};
... 9 more ...;
fees?: ChainFees<...> | undefined;
};
... 53 more ...;
extend: <const client extends {
...;
} & Partial<...>>(fn: (client: Client<...>) => client) => Client<...>;
}client } from './client'
try {
const const blockNumber: bigintblockNumber = await const client: {
account: undefined;
batch?: {
multicall?: boolean | {
batchSize?: number | undefined;
wait?: number | undefined;
} | undefined;
} | undefined;
cacheTime: number;
chain: {
blockExplorers: {
...;
};
... 9 more ...;
fees?: ChainFees<...> | undefined;
};
... 53 more ...;
extend: <const client extends {
...;
} & Partial<...>>(fn: (client: Client<...>) => client) => Client<...>;
}client.getBlockNumber: (args?: GetBlockNumberParameters | undefined) => Promise<bigint>Returns the number of the most recent block seen.
Docs: https://viem.sh/docs/actions/public/getBlockNumber
Examples: https://stackblitz.com/github/wevm/viem/tree/main/examples/blocks/fetching-blocks
JSON-RPC Methods: eth_blockNumber
getBlockNumber()
} catch (var e: unknowne) {
const const error: GetBlockNumberErrorTypeerror = var e: unknowne as type GetBlockNumberErrorType = RequestErrorTypeGetBlockNumberErrorType
const error: GetBlockNumberErrorTypeerror.name: "Error" | "ChainDisconnectedError" | "HttpRequestError" | "InternalRpcError" | "InvalidInputRpcError" | "InvalidParamsRpcError" | "InvalidRequestRpcError" | "JsonRpcVersionUnsupportedError" | ... 16 more ... | "WebSocketRequestError"name
if (const error: GetBlockNumberErrorTypeerror.name: "Error" | "ChainDisconnectedError" | "HttpRequestError" | "InternalRpcError" | "InvalidInputRpcError" | "InvalidParamsRpcError" | "InvalidRequestRpcError" | "JsonRpcVersionUnsupportedError" | ... 16 more ... | "WebSocketRequestError"name === 'InternalRpcError')
const error: InternalRpcErrorTypeerror.code: -32603code
if (const error: GetBlockNumberErrorTypeerror.name: "Error" | "ChainDisconnectedError" | "HttpRequestError" | "InternalRpcError" | "InvalidInputRpcError" | "InvalidParamsRpcError" | "InvalidRequestRpcError" | "JsonRpcVersionUnsupportedError" | ... 16 more ... | "WebSocketRequestError"name === 'HttpRequestError') {
const error: HttpRequestErrorTypeerror.HttpRequestError.headers?: Headers | undefinedheaders
const error: HttpRequestErrorTypeerror.HttpRequestError.status?: number | undefinedstatus
}
}