UNPKG

ganache-core

Version:

[![npm Version](https://img.shields.io/npm/v/ganache-core.svg)](https://www.npmjs.com/package/ganache-core) [![npm Downloads](https://img.shields.io/npm/dm/ganache-core.svg)](https://www.npmjs.com/package/ganache-core) [![Build Status](https://travis-ci.o

17 lines (14 loc) 395 B
// make sourcemaps work! require("source-map-support/register"); const Provider = require("./lib/provider"); const Server = require("./lib/server"); // This interface exists so as not to cause breaking changes. module.exports = { server: function(options) { return Server.create(options); }, provider: function(options) { return new Provider(options); }, _webpacked: true };