Is there a way to compile, run and debug a solidity class on my developpment computer.
I do not want to connect to an ethereum network.
I just want to debug my class
Thanks
Is there a way to compile, run and debug a solidity class on my developpment computer.
You can use Brownie and compile, run, debug and test smart contracts locally.
You can use remix for development and testing without installing a node or connecting to a remote node (docs here). It's a development tool that you can use straight from the browser.
Hardhat is another great option if you are familiar with javascript.
You can use hardhat framework to compile your contract, run blockchain network locally, write tests against your contract, etc.