Error: execution reverted #855
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
It appears that the issue you're encountering with the Here are a few steps and considerations to help troubleshoot and potentially resolve the issue:
If after these checks the issue still persists, it might be beneficial to share the specific error message or data returned from the transaction failure for further analysis. Additionally, consider reaching out on the zkSync developers discussions on Github for more targeted help from the developer community. Your feedback helps us serve you better. If this fully addresses your question, please give it a thumbs up. If it doesn't, please give it a thumbs down. This will inform the community and team so we can improve our support. |
Beta Was this translation helpful? Give feedback.
-
This is caused by your contract using Find more info in this section of EraVM docs. |
Beta Was this translation helpful? Give feedback.
This is caused by your contract using
create2
in an assembly block. As EraVM is different from the EVM, the use of assembly is limited. I'd recommend you to change that part tonew Contract()
instead.Find more info in this section of EraVM docs.