You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we send the following standard json request to smart-contracts verifier it fails with error content is not valid standard json: missing field 'optimizer' at line 10 column 3:
The problem is in settings.optimizer field which is not present in the input and is required in our current implementation. But according to solidity documentation (https://docs.soliditylang.org/en/v0.8.15/using-the-compiler.html#input-description), that field should be optional. Thus, in general, we should accept that input and consider it the same way as if we have
If we send the following standard json request to smart-contracts verifier it fails with error
content is not valid standard json: missing field 'optimizer' at line 10 column 3
:The problem is in
settings.optimizer
field which is not present in the input and is required in our current implementation. But according to solidity documentation (https://docs.soliditylang.org/en/v0.8.15/using-the-compiler.html#input-description), that field should be optional. Thus, in general, we should accept that input and consider it the same way as if we haveThe text was updated successfully, but these errors were encountered: