See Also
ELI5: Blockchains explained in simple terms
A blockchain is a database formed by a sequence of entries called (you guessed it) blocks. Blockchains have a special characteristic by which any attempt to modify one of its entries would modify the entire chain. It is, therefore, an immutable data structure, which stores blocks in chronological order of insertion. This makes blockchain a […]
chainparams.cpp – Commented Bitcoin Source Code
In this article we’ll take a look at one of the better known Bitcoin Core source files. Why is chainparams.* known to so many crypto developers? Because since 2011 or so, basically every coin that appeared before Ethereum would edit this source file and its header to modify parameters and create a new cryptocurrency! After […]
Is Avalanche safe from SEC regulatory actions? How does it compare to Ripple?
Ava Labs is a US-based company, founded by cryptography experts from Cornell University in NY and funded by several investors in the US. Ripple is a US-based company, founded by economists and cryptography experts from Canada and Kansas and funded by investors in the US. Notice any parallels? If you do, then you’re not alone. […]
Bitcoin Blockchain to Database Sync Process (blocks_updater) [cypto.bi Toolbox]
After performing the initial database insert using toolbox/db/blocks_inserter, new blocks will be received from the network. To keep the database in sync after the initial bulk insertion, toolbox/db/blocks_updater should be kept running on its own terminal. Difference From blocks_inserter Although similar in structure, blocks_updater works differently from blocks_inserter (go here for details on blocks_inserter). For […]