TevmCallError
TevmCallError:
ValidateCallParamsError
|CallHandlerOptsError
|InternalError
|ExecutionError
|RevertError
|ExecuteCallError
|ExecuteCallError
All errors that can occur during a TEVM call.
This type is strongly typed if using throwOnFail: false
.
Examples
import { TevmCallError } from 'tevm/errors'import { createMemoryClient, tevmCall } from 'tevm'
const client = createMemoryClient()
const result = await tevmCall(client, { throwOnFail: false, to: '0x...', data: '0x...',})
const errors = result.errors satisfies Array<TevmCallError> | undefinedif (errors) { errors.forEach((error) => console.error(error))}
If throwOnFail: true
is used (the default), the errors are thrown directly. This type can then be used to catch the errors.
import { TevmCallError } from 'tevm/errors'import { createMemoryClient, tevmCall } from 'tevm'
const client = createMemoryClient()
try { await tevmCall(client, { to: '0x...', data: '0x...', })} catch (error) { const typedError = error as TevmCallError switch (typedError.name) { case 'ValidateCallParamsError': case 'CallHandlerOptsError': case 'InternalError': case 'ExecutionError': case 'RevertError': case 'HandleRunTxError': case 'ExecuteCallError': handleIt(typedError) break default: throw error }}