aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-compiler/test/util/provider.ts
blob: 4561a16990fca2e0b18b639efd6d2cf15264234e (plain) (blame)
1
2
3
4
5
6
7
import { web3Factory } from '@0x/dev-utils';
import { Provider } from 'ethereum-types';

const providerConfigs = { shouldUseInProcessGanache: true };
const provider: Provider = web3Factory.getRpcProvider(providerConfigs);

export { provider };