# web3-core

This is a sub module of [web3.js][repo]

The ```web3-core``` contains the AbstractWeb3Module. 
This should be used if someone wants to implement a new web3 module. 

## Installation

```bash
npm install web3-core
```

## Usage

```js
import {AbstractWeb3Module} from 'web3-core';

new AbstractWeb3Module(...);
```

## Types 

All the typescript typings are placed in the types folder. 

[docs]: http://web3js.readthedocs.io/en/1.0/
[repo]: https://github.com/ethereum/web3.js
