Recursive Length Prefix Encoding for Node.js.
npm install rlp
install with -g
if you want to use the cli.
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)
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.
rlp decode <hex string>
rlp encode <json String>
Test uses mocha. To run tests and linting: npm test
. To auto fix linting problems use: npm run test:fix
.
Install dev dependencies
npm install
Run
npm run coverage
The results are at
coverage/lcov-report/index.html
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.