deth
Version:
Ethereum node focused on Developer Experience
13 lines (12 loc) • 454 B
TypeScript
import { Hardfork } from './model';
import { utils } from 'ethers';
import { TestChainOptions } from './TestChainOptions';
export interface TestProviderOptions {
hardfork?: Hardfork;
privateKeys?: string[];
initialBalance?: utils.BigNumber;
blockGasLimit?: utils.BigNumber;
defaultGasPrice?: utils.BigNumber;
coinbaseAddress?: string;
}
export declare function toTestChainOptions(options?: TestProviderOptions): TestChainOptions;