Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 618 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 618 Bytes

Blockchain rust

Simple blockchain implementation in Rust

Prerequisites

Be sure to have installed Rust

Installation

  1. Clone the repo
  git clone https://github.com/marija-mijailovic/blockchain-rust.git
  1. Build the project
  cargo install --path . 
  1. Run the project
  • Create account
      blockchain_rust create-account <account> 
    
  • Create transfer
      blockchain_rust create-transaction <from> <to> <amount> 
    
  • Check account balance
      blockchain_rust check-balance <account>