[error] contracts/<CONTRACT_NAME>: Error: We encountered the following syntax error:
[error]
[error] Expected EqualGreaterThan.
[error]
[error] Based on the pragma statements, we inferred your code to be using Solidity version 0.8.17. If you would like to change that, update the pragmas in your source file, or specify a version in your `.prettierrc` file.
My contract starts with the following:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
which seems to be parsed well in other files, so I dunno what actually causes the error. However, everything works fine with with version 2.0.0 (I noticed this issue during dependency upgrade). Unfortunately, I can't share the contract implementation details.
My contract starts with the following:
which seems to be parsed well in other files, so I dunno what actually causes the error. However, everything works fine with with version
2.0.0(I noticed this issue during dependency upgrade). Unfortunately, I can't share the contract implementation details.