Project

rlp

0.04
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A Ruby implementation of Ethereum's Recursive Length Prefix encoding (RLP).
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

= 5.8.3
~> 10.5
= 0.8.7.6
 Project Readme

ruby-rlp

MIT License travis build status Yard Docs

A Ruby implementation of Ethereum's Recursive Length Prefix encoding (RLP). You can find the specification of the standard in the Ethereum wiki.

Installation

Put it in your Gemfile:

gem 'rlp'

or

gem i rlp

Usage

Check tests for examples.

Benchmark

ruby-rlp $ ruby -v -Ilib test/speed.rb
ruby 2.2.2p95 (2015-04-13 revision 50295) [x86_64-linux]
Block serializations / sec: 2318.21
Block deserializations / sec: 1704.61
TX serializations / sec: 30461.76
TX deserializations / sec: 21378.70

pyrlp $ python -V
Python 2.7.11

pyrlp $ PYTHONPATH=. python tests/speed.py
Block serializations / sec: 1225.00
Block deserializations / sec: 1162.01
TX serializations / sec: 16468.41
TX deserializations / sec: 14517.31