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

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

export { provider };