Skip to content

LoadStateResult

LoadStateResult<ErrorType>: object

Result of the tevmLoadState method.

This type represents the result returned by the tevmLoadState method. It includes any errors that might have occurred during the state loading process.

Example

import { createClient } from 'tevm'
import { loadStateHandler } from 'tevm/actions'
import fs from 'fs'
const client = createClient()
const loadState = loadStateHandler(client)
const state = JSON.parse(fs.readFileSync('state.json'))
const result = await loadState({ state })
if (result.errors) {
console.error('Failed to load state:', result.errors)
}

See

TevmLoadStateError

Type Parameters

ErrorType = TevmLoadStateError

Type declaration

errors?

optional errors: ErrorType[]

Description of the exception, if any occurred.

Defined in

packages/actions/src/LoadState/LoadStateResult.ts:26