Basic Syntax of RustIntroduction A warm welcome into the new year and as a developer who is always curious to learn new things and share knowledge no matter how little the knowledge can be, it's still learning In this series guide, we're going through the basic syntax o...Jan 5, 2023·6 min read·52
Documenting Solidity JourneyIn this series of articles that will be coming up very frequently from me, I personally have this intriguing curiosity for the blockchain space and as a developer, I would like to understand the building blocks of how it works. I write in Javascript ...Sep 21, 2022·1 min read·31
Solidity Compiler on VscodeBlockchain development in vscode has been simplified to create extensions that can be installed to have a better workspace when building blockchain applications. The solidity extension on vscode created by Juan Blanco makes your build easier and for ...Jul 18, 2022·1 min read·38
Understanding the Ethereum Virtual MachineEthereum Virtual Machine EVM is a distributed state machine which means that the state can be changed by transactions. Why is the EVM a distributed state machine Ethereum is a set of nodes that runs on the blockchain and each of these sets of nodes h...Jul 7, 2022·2 min read·40
Truffle on vscode for blockchain developmentTable of content Introduction Setting up a solidity extension environment Install and connect ganache to vscode Create and deploy the contract to testnet or mainnet Blockchain is growing fast and needs brighter minds to get to the field to pull...Jul 2, 2022·7 min read·252
Erc20 Openzeppelin Implementation TokenThe emergence of the blockchain paves the way for new business models, doing away with the intermediaries, who add no value to the transaction. From banking to royalty payments, blockchain will disrupt the incumbents in multiple industries while crea...Jun 24, 2022·4 min read·40
Differences between VAR, LET AND CONST KEYWORDvar let and const This are Javascript reserved keywords The keyword var has been in Javascript from the very beginning it was introduced to the world while let and const was introduced the moment ECMASCRIPT became a thing in Javascript which came ...Jan 29, 2022·2 min read·26