8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { web3Factory } from '@0x/dev-utils';
|
|
import { Provider } from 'ethereum-types';
|
|
|
|
const providerConfigs = { shouldUseInProcessGanache: true };
|
|
const provider: Provider = web3Factory.getRpcProvider(providerConfigs);
|
|
|
|
export { provider };
|