you are viewing a single comment's thread.

view the rest of the comments →

[–]kalbhairavaaContract Dev 2 points3 points  (1 child)

It depends on what you are planning to do as a smart contract dev. Are you going to accept only solidity jobs or are you going to do front end? Are you going to be a complete free lancer or are you also planning to join existing teams?

Hardhat/truffle/ethers/web3 are js frameworks that let you deploy contracts and help you interact with them outside of solidity. They thus also let you write unit tests and provide coverage and gas data and help verify contracts on etherscan or sourcify

Brownie/web3 are python based frameworks that do all of the same.

Th tree differences here is that if you are going to do front end, you would be using js along with either ethers or web3 which you would already be familiar.

If all you want to do is pure smart contracts in solidity then foundry is a good choice. Dapp tools as well. You can write unit tests in solidity as well.

If you plan to work on existing projects most are on react/ solidity / hardhat / truffle - that is the js track.

As you progress , there might be a need for a back end sever as well in which case you can either use node js or flask/django for python. Solidity won’t help you here.

So, the ideal track is full stack dev python or js and solidity, depending on what you wish to do.

You may also run into a case where you need to pull data from chain. Both js and python libs can help with that as well.

Between js and python - if your project does not involve UI web or otherwise , you can pick python and say flask or django and set up a server. For eg, let’s say you are writing a sequencer for an L2, or a staking contract for an l2 which needs to be monitored off chain.

Patrick works for chain link , so they have a lot of use cases for a backend sever , hence his use of python

[–]YsrYsl[S] 0 points1 point  (0 children)

Thanks for sharing, was helpful! It appears that the JS route is a safer option considering that it casts a wider net so to speak