Table of Contents
This is a simple command line application that recursively decodes a given RLP encoded string. Learn more about RLP Encoding/Decoding.
Download and install Golang 1.19 (or higher).
- Navigate to
rlp-decoder/
:cd /path/to/folder/rlp-decoder/
- Get dependencies:
go mod tidy
- Run the app:
go run main.go # use "--verbose" flag to get additional logs go run main.go --verbose
- CD into
rlp/
to run tests:cd rlp/ go test
Thank you!