UNPKG

@tevm/test-matchers

Version:

Vite test matchers for Tevm or EVM-related testing in TypeScript.

12 lines (8 loc) 288 B
import type { GetAccountResult } from '@tevm/actions' import type { Hex } from 'viem' export type ExpectedState = Partial<Omit<GetAccountResult, 'address' | 'errors'>> export interface StorageEntry { slot: Hex value: Hex } export type ExpectedStorage = StorageEntry | StorageEntry[]