See Also
Will Bitcoin lose its #1 market cap crown? [Jun 2018 Opinion]
Ethereum has just overtaken Bitcoin! But, wait! We’re not talking about market cap… As you’ve probably seen reported elsewhere, ETH now (Jun/2018) has more unique active addresses than Bitcoin. Is this a sign of something different looming in the horizon? Will Bitcoin end its 9 year reign as king of cryptocurrencies? Are there other cryptocurrencies […]
Bitcoin: The mother of all cryptocurrencies
On January 12 2009, an individual, or group, using the pseudonym Satoshi Nakamoto, announced that the first Bitcoin transaction had taken place. Ten Bitcoins had been magically transferred between Satoshi and cryptography legend Hal Finney. It was the beginning of a revolution which, to this day, promises to change how humankind deals with money, finance […]
rpc/server.cpp – Commented Bitcoin Source Code
We now dive into one of the most exciting components of the Bitcoin Core source code. The RPC subsystem interconnects the connection manager, wallets, the storage subsystem and, most importantly, the front-end with which users interact. It’s basically the Bitcoin command interpreter embedded in the system and, from a developer’s perspective, the application programming interface. […]
qt/bitcoin.cpp – Commented Bitcoin source code
qt/bitcoin.cpp is where Bitcoin Core initialization leads us next. main.cpp, the Bitcoin Qt application entry point, is basically just a stub that calls GuiMain() at qt/bitcoin.cpp So, by sticking to our strategy, I’ll step into the call stack which now has GuiMain() at the top. GuiMain GuiMain gets the GUI set up, connects Qt signals/slots, […]