# [**@ocap/statedb-memory**](https://github.com/arcblock/blockchain)

[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)

> OCAP Adapter that stores data to the disk through [nedb](https://npmjs.org/package/nedb)

## Install

```sh
npm install @ocap/statedb-memory
// or
pnpm install @ocap/statedb-memory
```

## Usage

```js
const MemoryStateDB = require('@ocap/statedb-memory');

const statedb = new MemoryStateDB();
```
