safe-global / safe-modules

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

Fixed and More Consistent Pragmas #458

Closed nlordell closed 2 months ago

nlordell commented 2 months ago

Fixes https://github.com/hats-finance/Safe-0x2909fdefd24a1ced675cb1444918fa766d76bdac/issues/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.

coveralls commented 2 months ago

Pull Request Test Coverage Report for Build 9806169607

Details


Totals Coverage Status
Change from base Build 9806149214: 0.0%
Covered Lines: 39
Relevant Lines: 39

💛 - Coveralls
coveralls commented 2 months ago

Pull Request Test Coverage Report for Build 9806169608

Details


Totals Coverage Status
Change from base Build 9806149214: 0.0%
Covered Lines: 90
Relevant Lines: 90

💛 - Coveralls
coveralls commented 2 months ago

Pull Request Test Coverage Report for Build 9806232134

Details


Totals Coverage Status
Change from base Build 9806149214: 0.0%
Covered Lines: 90
Relevant Lines: 90

💛 - Coveralls