Skip to content

Latest commit

 

History

History
50 lines (39 loc) · 1.22 KB

README.md

File metadata and controls

50 lines (39 loc) · 1.22 KB

RLP Decoder

Command Line Tool To Decode RLP Encoded String

Table of Contents

About The Project

This is a simple command line application that recursively decodes a given RLP encoded string. Learn more about RLP Encoding/Decoding.

Tech Stack

Prerequisites

Download and install Golang 1.19 (or higher).

How To Use?

  1. Navigate to rlp-decoder/:
    cd /path/to/folder/rlp-decoder/
    
  2. Get dependencies:
    go mod tidy
    
  3. Run the app:
    go run main.go 
    # use "--verbose" flag to get additional logs
    go run main.go --verbose 
    
  4. CD into rlp/ to run tests:
    cd rlp/
    go test
    

Thank you!