Skip to content

CallError

CallError: BaseCallError | InvalidSaltError | InvalidDataError | InvalidDeployedBytecodeError

Error returned by call tevm procedure

Example

const {errors} = await tevm.call({address: '0x1234'})
if (errors?.length) {
console.log(errors[0].name) // InvalidDataError
}

Source

packages/errors/src/actions/CallError.ts:12