Socket
Socket
Sign inDemoInstall

rlp

Package Overview
Dependencies
Maintainers
3
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rlp - npm Package Compare versions

Comparing version 2.2.3 to 2.2.4

11

CHANGELOG.md

@@ -9,2 +9,11 @@ # Changelog

## [v2.2.4] - 2019-11-02
- Removed unused `Dictionary` `Input` type for `RLP.encode()` and `RLP.decode()`,
PR [#74](https://github.com/ethereumjs/rlp/pull/74)
- Removed unused `safe-buffer` dependency,
PR [#80](https://github.com/ethereumjs/rlp/pull/80)
[v2.2.4]: https://github.com/ethereumjs/rlp/compare/2.2.3...v2.2.4
## [v2.2.3] - 2019-03-19

@@ -18,3 +27,3 @@

[v2.2.3]: https://github.com/ethereumjs/rlp/compare/2.2.1...v2.2.3
[v2.2.3]: https://github.com/ethereumjs/rlp/compare/2.2.2...v2.2.3

@@ -21,0 +30,0 @@ ## [v2.2.2] - 2019-01-15

4

dist/index.d.ts
/// <reference types="node" />
import { Decoded, Dictionary, Input, List } from './types';
export { Decoded, Dictionary, Input, List };
import { Decoded, Input, List } from './types';
export { Decoded, Input, List };
/**

@@ -5,0 +5,0 @@ * RLP Encoding based on: https://github.com/ethereum/wiki/wiki/%5BEnglish%5D-RLP

/// <reference types="node" />
import BN = require('bn.js');
export declare type Input = Buffer | string | number | Uint8Array | BN | Dictionary | List | null;
export declare type Input = Buffer | string | number | Uint8Array | BN | List | null;
export interface List extends Array<Input> {
}
export interface Dictionary {
[x: string]: Input;
}
export interface Decoded {

@@ -10,0 +7,0 @@ data: Buffer | Buffer[];

{
"name": "rlp",
"version": "2.2.3",
"version": "2.2.4",
"description": "Recursive Length Prefix Encoding Module",

@@ -28,2 +28,7 @@ "main": "./dist/index.js",

},
"husky": {
"hooks": {
"pre-push": "npm run lint"
}
},
"repository": {

@@ -50,3 +55,2 @@ "type": "git",

"dependencies": {
"safe-buffer": "^5.1.1",
"bn.js": "^4.11.1"

@@ -63,2 +67,3 @@ },

"coveralls": "^2.11.4",
"husky": "^2.1.0",
"mocha": "4.1.0",

@@ -65,0 +70,0 @@ "nyc": "^13.1.0",

@@ -53,1 +53,7 @@ # SYNOPSIS

`coverage/lcov-report/index.html`
# EthereumJS
See our organizational [documentation](https://ethereumjs.readthedocs.io) for an introduction to `EthereumJS` as well as information on current standards and best practices.
If you want to join for work or do improvements on the libraries have a look at our [contribution guidelines](https://ethereumjs.readthedocs.io/en/latest/contributing.html).
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