Select Page
Assert vs. require in Solidity

Assert vs. require in Solidity

In Solidity, assert and require are two functions that are used to enforce conditions or constraints within a contract. Both functions are used to check if a given condition is true, and will cause the contract to terminate if the condition is not met. In this post we...
5 Best Web3 Providers In 2023

5 Best Web3 Providers In 2023

Choosing a Web3 provider is one of the most important steps when building a blockchain project. In this post, we break down the best Web3 providers of 2023 and which one you should use. List Of Web3 Providers Infura Infura is a service that provides access to Ethereum...
Solidity: Uint vs Uint256 Explained

Solidity: Uint vs Uint256 Explained

In Solidity, the uint and uint256 types are both used to represent unsigned integers (numbers that are greater than or equal to zero). There is no difference between uint vs uint256. Put simply… uint: The uint type represents an unsigned integer with a size of...
Using `console.log` In Solidity

Using `console.log` In Solidity

If you’re a developer, you’re very used to printing out values to the console. Fortunately, there is a way to use console.log in Solidity. “console.log” is a commonly used debugging tool in programming languages such as JavaScript, and it can...