31
loading...
This website collects cookies to deliver better user experience
In this tutorial, I'll show you how to build a rudimentary blockchain with some relatively simple Javascript.
let a = new Block({from: "Joe", to: "Jane"}, precedingHash = "0")
let b = new Block({from: "Jane", to: "Joe"}, precedingHash = a.hash)