π¦ Block
The basic piece of a Blockchain
block = {
prevHash: "Previous block's hash",
height: "Previous block's height",
version: "2", // block version, currently 2
data: "Block content",
timestamp: "Block time",
scope: "Scope for the block",
by: "User or entity that created the block",
};Last updated