deth
Version:
Ethereum node focused on Developer Experience
6 lines (5 loc) • 308 B
TypeScript
import Block from 'ethereumjs-block';
import VM from 'ethereumts-vm';
import { Transaction } from 'ethereumjs-tx';
import { TestChainOptions } from '../TestChainOptions';
export declare function getNextBlock(vm: VM, transactions: Transaction[], options: TestChainOptions, clockSkew: number): Promise<Block>;