Using WebSocket to build a Real-time Cryptocurrency Tracker
A Practical guide on Building Applications with the WebSocket API

Search for a command to run...
Articles tagged with #web-development
A Practical guide on Building Applications with the WebSocket API

Deploying an NFT Smart Contract on Ethereum

Creating and Deploying an ERC20 Token

2023! it's a new year that promises to be a really great one. There are technologies to master, products to build, etc. I believe there is also a growing demand for not just software developers but sound software developers that can build systems and...

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 variables in Solidity local declared inside a function not stored on the blockchain state declare...

Here we introduce you to some primitive data types available in Solidity. boolean The possible values are constants true and false uintint / uint: Signed and unsigned integers of various sizes. Keywords uint8 to uint256 in steps of 8 (unsigned of 8...