Always Moving Forward with Rust/Parity

It been a while since my last post mainly cause ive been implementing alot of DApps and refining my skills on Solidity. But ethereum is not all about Solidity.

In my first first few posts, i mentioned the technologies i was using.
mainly Geth, for running ethereum nodes. However Geth is alot slower and much better implementations are now available that makes use of different languages.

This post is me moving forward to Parity.

Parity is an Ethereum client, written from the ground-up for correctness-verifiability, modularisation, low-footprint and high-performance. To this end it utilises the Rust language, a hybrid imperative/OO/functional language with an emphasis on efficiency.

So let the learning begin.

First Environment. Ive tried installing on Mac/Windows/Linux.
at some point i want to be adding or developing for Parity (apparently a good market for developers). Im going to Opt for an Ubuntu environment.

Rust programming language

Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safety.
So i want to build Parity from the source. in order to do that i first need to install Rust on ubuntu using Curl.
$ curl https://sh.rustup.rs -sSf | sh
On ubuntu after installing Rust i install Parity Next
bash <(curl https://get.parity.io -L) -r stable

after installation is complete i can now start parity
$ ./target/release/parity


Now we are all set. Before we start with any DApp or Parity component. we First need to learn a little Rust (Similar to C++)

Lets Begin and Move Forward





Comments

Popular posts from this blog

Solidity Hash of Structs (Testing hash uniqueness)

Is Making the Crypto Space Legally Compliant Paving the Road to Mass (Blockchain) Adoption?

Parity installation on Ubuntu Virtual Machine