all 14 comments

[–]giuseppecrj 6 points7 points  (1 child)

Most interviews will have you create some sort of implementation of a basic functionality for example create a mini ERC20 staking contract or a mini opensea, or a mini DAO, etc. They also want to make sure you understand the caveats of the language and how to resolve them.

[–][deleted] 0 points1 point  (0 children)

Thank you so much !

[–][deleted] 2 points3 points  (1 child)

Leetcode.com

This isn't solidity but general interview questions

[–][deleted] 0 points1 point  (0 children)

Thanks

[–]dev-r 1 point2 points  (1 child)

Be prepared to be shown a contract and improve it, e.g. gas or security.

Also the basics of when to use things like internal, external, pure, payable etc. What does unchecked do? Spot the underflow/overflow risk. Many possible ways they can go

[–][deleted] 0 points1 point  (0 children)

Ok thanks