#blockchain
Read more stories on Hashnode
Articles with this tag
Ethereum Staking · One of the key components of a blockchain is the ability to carry out a trustless consensus mechanism to verify transactions, the...
Solidity is a statically typed language, which means that the type of each variable (state and local) needs to be specified. There are 3 types of...
Here we introduce you to some primitive data types available in Solidity. boolean The possible values are constants true and false uintint / uint:...
A constructor is an optional function that is executed upon contract creation. Here are examples of how to pass arguments to constructors. //...
Starting Solidity · With the advent of web3 and blockchain technology, much interest has been put into programming and building applications on web3....
Introduction to Web3 Development · We'll be looking at a quick guide to writing and deploying a smart contract to the blockchain network. Let's begin by...