⛔️ DEPRECATED: This module is no longer maintained. It can be used with [multiformats](https://github.com/multiformats/js-multiformats) by wrapping it with [ipld-format-to-blockcodec](https://github.com/ipld/js-ipld-format-to-blockcodec) <!-- omit in toc -->

# IPLD for Zcash

[![](https://img.shields.io/badge/made%20by-Protocol%20Labs-blue.svg?style=flat-square)](http://ipn.io)
[![](https://img.shields.io/badge/project-IPLD-blue.svg?style=flat-square)](http://github.com/ipld/ipld)
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs)
[![Travis CI](https://flat.badgen.net/travis/ipld/js-ipld-zcash)](https://travis-ci.com/ipld/js-ipld-zcash)
[![Coverage](https://coveralls.io/repos/github/ipld/js-ipld-zcash/badge.svg?branch=master)](https://coveralls.io/github/ipld/js-ipld-zcash?branch=master)
[![](https://img.shields.io/badge/standard--readme-OK-green.svg?style=flat-square)](https://github.com/RichardLitt/standard-readme)
[![](https://david-dm.org/ipld/js-ipld-zcash.svg?style=flat-square)](https://david-dm.org/ipld/js-ipld-zcash)
[![](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/feross/standard) [![Greenkeeper badge](https://badges.greenkeeper.io/ipld/js-ipld-zcash.svg)](https://greenkeeper.io/)
![](https://img.shields.io/badge/npm-%3E%3D3.0.0-orange.svg?style=flat-square)
![](https://img.shields.io/badge/Node.js-%3E%3D6.0.0-orange.svg?style=flat-square)

> JavaScript implementation of the [IPLD format spec](https://github.com/ipld/interface-ipld-format) for Zcash blocks.

## Lead Maintainer

[Volker Mische](https://github.com/vmx)

## Table of Contents

- [IPLD for Zcash](#ipld-for-zcash)
  - [Lead Maintainer](#lead-maintainer)
  - [Table of Contents](#table-of-contents)
  - [Install](#install)
    - [npm](#npm)
    - [Use in Node.js](#use-in-nodejs)
    - [Use in a browser with browserify, webpack or any other bundler](#use-in-a-browser-with-browserify-webpack-or-any-other-bundler)
    - [Use in a browser Using a script tag](#use-in-a-browser-using-a-script-tag)
  - [Usage](#usage)
  - [Contribute](#contribute)
  - [License](#license)

## Install

### npm

```sh
> npm install ipld-zcash
```

### Use in Node.js

```JavaScript
const IpldZcash = require('ipld-zcash')
```

### Use in a browser with browserify, webpack or any other bundler

The code published to npm that gets loaded on require is in fact a ES5 transpiled version with the right shims added. This means that you can require it and use with your favourite bundler without having to adjust asset management process.

```JavaScript
var IpldZcash = require('ipld-zcash')
```

### Use in a browser Using a script tag

Loading this module through a script tag will make the `IpldZcash` obj available in the global namespace.

```html
<script src="https://unpkg.com/ipld-zcash/dist/index.min.js"></script>
<!-- OR -->
<script src="https://unpkg.com/ipld-zcash/dist/index.js"></script>
```

## Usage

As this is is an implementation of the [IPLD format spec](https://github.com/ipld/interface-ipld-format), it should be used through the [IPLD resolver](https://github.com/ipld/js-ipld-resolver). See the IPLD format spec for details about the API.

Though it can also be used as a standalone module:

```JavaScript
const IpldZcash = require('ipld-zcash')

// `zcashBlock` is some binary Zcash block
const dagNode = IpldZcash.util.deserialize(zcashBlock)
console.log(dagNode)
```

## Contribute

Feel free to join in. All welcome. Open an [issue](https://github.com/ipld/js-ipld-zcash/issues)!

Check out our [contributing document](https://github.com/ipld/ipld/blob/master/contributing.md) for more information on how we work, and about contributing in general. Please be aware that all interactions related to IPLD are subject to the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md).

Small note: If editing the README, please conform to the [standard-readme](https://github.com/RichardLitt/standard-readme) specification.

## License

[MIT](LICENSE) © 2018 IPFS
