Smart Contract in Solidity (Blockchain)
When we talk about Blockchain how can we forgot smart contract. Let’s start with the smart contracts creation by using solidity.
For the smart contract we gonna use solidity and Remix IDE. Visit the following link to start.
// SPDX-License-Identifier: MITpragma solidity 0.8.8;contract SimpleStorage{//boolen,uint, int, address, bytesuint256 public favouriteNumber;