You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockvote/node_modules/rlp
STRIV1 f8251e172e
1
1 year ago
..
bin 1 1 year ago
dist 1 1 year ago
dist.browser 1 1 year ago
node_modules/bn.js 1 1 year ago
src 1 1 year ago
LICENSE 1 1 year ago
README.md 1 1 year ago
package.json 1 1 year ago

README.md

SYNOPSIS

NPM Package Actions Status Coverage Status Discord

Recursive Length Prefix Encoding for Node.js.

INSTALL

npm install rlp

install with -g if you want to use the cli.

USAGE

import * as assert from 'assert'
import * as rlp from 'rlp'

const nestedList = [[], [[]], [[], [[]]]]
const encoded = rlp.encode(nestedList)
const decoded = rlp.decode(encoded)
assert.deepEqual(nestedList, decoded)

API

rlp.encode(plain) - RLP encodes an Array, Buffer or String and returns a Buffer.

rlp.decode(encoded, [skipRemainderCheck=false]) - Decodes an RLP encoded Buffer, Array or String and returns a Buffer or an Array of Buffers. If skipRemainderCheck is enabled, rlp will just decode the first rlp sequence in the buffer. By default, it would throw an error if there are more bytes in Buffer than used by rlp sequence.

CLI

rlp decode <hex string>
rlp encode <json String>

TESTS

Tests use mocha.

To run tests and linting: npm test

To auto fix linting problems use: npm run lint:fix

CODE COVERAGE

Install dev dependencies npm install

Run npm run coverage

The results are at coverage/lcov-report/index.html

EthereumJS

See our organizational documentation 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.