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

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

export { provider };