In this video I will show you some advanced features of the Remix Debugger like: stepping over functions breakpoints These…
Read Storyhe Remix debugger is a powerful that allows you to debug your Solidity code. Usually, if you are stuck and…
Read StoryDo you like often use console.log() statement to debug your Javascript code? Convenient, uh? How about Solidity smart contracts, can…
Read StoryIn Solidity, require and revert statements are used to check some pre-conditions before executing the main part of a function.…
Read StoryIn Solidity, you can return some values from functions, like in other programming languages. Its also possible to use these…
Read StoryWhen I started learning Solidity, there was nothing more frustrating than running accross "VM Exception: invalid opcode" or "VM Exception:…
Read Story"Out of gas".. what a lovely Solidity error! This really use to make me mad when I started with Solidity…
Read Story"out of gas", "revert", "invalid opcode", what are all these weird error names in Solidity? In this video I will…
Read StoryTo debug syntax errors, you can rely on Solidity syntax highlighting. Fortunately for us, Remix has syntax highlighting activated by…
Read StoryA lot of people are confused about debugging in general and don't know the difference between a syntax error and…
Read Story