Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ipld-ethereum

Package Overview
Dependencies
Maintainers
3
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipld-ethereum - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

11

CHANGELOG.md

@@ -0,1 +1,12 @@

<a name="2.0.2"></a>
## [2.0.2](https://github.com/ipld/js-ipld-ethereum/compare/v2.0.1...v2.0.2) (2018-11-07)
### Bug Fixes
* sorting function needs to return an integer ([662d8ec](https://github.com/ipld/js-ipld-ethereum/commit/662d8ec))
* **package:** update ipfs-block to version 0.8.0 ([7013beb](https://github.com/ipld/js-ipld-ethereum/commit/7013beb))
<a name="2.0.1"></a>

@@ -2,0 +13,0 @@ ## [2.0.1](https://github.com/ipld/js-ipld-ethereum/compare/v2.0.0...v2.0.1) (2018-07-13)

16

package.json
{
"name": "ipld-ethereum",
"version": "2.0.1",
"version": "2.0.2",
"description": "JavaScript Implementation of All Ethereum IPLD formats",
"leadMaintainer": "kumavis <aaron@kumavis.me>",
"leadMaintainer": "Volker Mische <volker.mische@gmail.com>",
"main": "src/index.js",

@@ -16,4 +16,3 @@ "scripts": {

"build": "aegir build",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage --provider coveralls"
"coverage": "aegir coverage"
},

@@ -29,12 +28,12 @@ "pre-push": [

"ethereumjs-account": "^2.0.4",
"ethereumjs-block": "^1.7.1",
"ethereumjs-block": "^2.0.0",
"ethereumjs-tx": "^1.3.3",
"ipfs-block": "~0.6.1",
"ipfs-block": "~0.8.0",
"merkle-patricia-tree": "^2.2.0",
"multihashes": "~0.4.12",
"multihashing-async": "~0.4.7",
"multihashing-async": "~0.5.1",
"rlp": "^2.0.0"
},
"devDependencies": {
"aegir": "^12.4.0",
"aegir": "^17.0.1",
"chai": "^4.1.2",

@@ -48,2 +47,3 @@ "dirty-chai": "^2.0.1"

"Volker Mische <volker.mische@gmail.com>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"harrshasri <35241544+harrshasri@users.noreply.github.com>",

@@ -50,0 +50,0 @@ "kumavis <aaron@kumavis.me>"

@@ -5,3 +5,3 @@ # js-ipld-ethereum

[![](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)
[![](https://img.shields.io/badge/freenode-%23ipfs-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23ipfs) [![Greenkeeper badge](https://badges.greenkeeper.io/ipld/js-ipld-ethereum.svg)](https://greenkeeper.io/)

@@ -12,3 +12,3 @@ > JavaScript Implementation of the IPLD format - Ethereum Block

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

@@ -15,0 +15,0 @@ ## Install

@@ -84,3 +84,3 @@ 'use strict'

// take longest match
const sortedMatches = matches.sort((a, b) => a.path.length < b.path.length)
const sortedMatches = matches.sort((a, b) => b.path.length - a.path.length)
const treeResult = sortedMatches[0]

@@ -87,0 +87,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc