Try Catch in Solidity: Handling the revert Exception
When a revert happens in solidity, all the state changes done in that transaction are rolled back. All the changes…
When a revert happens in solidity, all the state changes done in that transaction are rolled back. All the changes…
Solidity is a special language with many little quirks. A lot of things behave differently in Solidity than most other…
The latest version of Solidity kickstarted a season of upgrades in the BUIDL space. The latest version of solidity essentially meant that…
Solidity 0.5.X is here with a lot of features and breaking changes. Making all the changes to your solidity code…
The Truffle Suite is the most widely used development framework for Solidity development but it is not perfect. We at Polymath, deal with…
Smart contracts have evolved into being more than just basic contracts. Now we have whole ecosystems powered by Smart Contracts!…
Debugging solidity smart contracts is a pain and takes a lot of time. I made a small user script which…
Coding in solidity is a little different than other languages as every action you do cost real gas. Here are…