Posts

Showing posts from 2022

Blockchain Job Sites

 https://www.crypto-careers.com/ https://web3.career/

Polkadot programming - development using node template

  Polkadot - Substrate development Step by Step Following commands will work on macOS... Good luck This steps are for starting single node at backend and starting front end to explore ( e.g. transfer fund from one account to another) ----start---- Install Homebrew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" Install opensssl brew update && brew install openssl Install Rust and RustToolchain curl https://sh.rustup.rs -sSf | sh source ~/.cargo/env rustup default stable rustup update rustup update nightly rustup target add wasm32-unknown-unknown --toolchain nightly verify installation by  rustc --version rustup show Prepare a Substrate node using the node template Setup node template. Its a  provides a working development environment so that you can start building on Substrate right away. git clone https://github.com/substrate-developer-hub/substrate-node-template cd substrate-node-template # We want to use th