UNPKG

deth

Version:

Ethereum node focused on Developer Experience

12 lines (11 loc) 379 B
import { DEFAULT_NODE_CONFIG } from './config/config'; import { merge } from 'lodash'; export function getTestChainOptionsFromConfig(config) { return { ...config.blockchain, accounts: config.accounts, }; } export function getTestChainOptionsWithDefaults(options = {}) { return merge({}, getTestChainOptionsFromConfig(DEFAULT_NODE_CONFIG), options); }