hats-finance / Safe-0x2909fdefd24a1ced675cb1444918fa766d76bdac

A collection of modules that can be used with the Safe contract
GNU Lesser General Public License v3.0
0 stars 1 forks source link

Fixed and More Consistent Pragmas #24

Open nlordell opened 1 week ago

nlordell commented 1 week ago

Fixes #17

This PR changes the pragmas in the passkeys contract to be:

  1. More consistent: we use ^0.8.20 everywhere for "non-top-level" contracts. The version was chosen as this it the first version that supports all of the compiler features that we make use of. Notably, we have @custom: NatSpec items which are only officially supported as of v0.8.20 (incidentally, this is the same version used by OpenZeppelin contracts for similar reason: source). The choice to use floating pragmas here is to make using these support contracts easier across other projects (namely, the WebAuthn and P256 libraries are useful outside of this project). Furthermore, we use ^ versions so that breaking changes introduced in a potential Solidity v0.9 would not affect the security and integrity of the contract code.
  2. Use fixed pragmas for "top-level" contracts that we deploy:
    • SafeWebAuthnProxyFactory
    • SafeWebAuthnSharedSigner
    • FCLP256Verifier

I am aware that Solidity v0.8.20 doesn't play nice with chains like BNB by default, however this can be worked around by explicitly by setting the EVM version target (as we do in this project) and do not believe this is an issue.