Skip to main content

🇸 Solidity verification

Presentation

Formal verification is the strongest method to ensure the safety of smart contracts, as it employs mathematical methods to explore all possible inputs and usage scenarios and make sure that the code is 100% correct. Think "the safety offered by Rust in comparison to C, by for arbitrarily complex properties". This is particularly relevant for smart contracts as a single mistake can cost millions of dollars, for code that is open-source and hard to upgrade. We propose formal verification using interactive theorem provers, that guarantees stronger properties than existing solutions such as Certora. Indeed there are no undecidable properties with interactive theorem provers (in theory yes but unreachable in practice). This is especially important to verify complex behaviors such as backward compatibility on upgrades, unbounded loops or inter-contracts calls.

To formally verify Solidity programs, we develop tools to translate Ethereum programs to the interactive proof assistant Coq. The goal is to have a translation as idiomatic as possible for Coq. Then we express and verify arbitrary properties on the translated code in Coq with our existing expertise in Coq 🐓.

We have two ongoing projects:

  1. coq-of-solidity to directly translate Solidity code into idiomatic Coq code (with a shallow embedding). The resulting traduction is high-level, in order to simplify proofs and reasoning.
  2. ethereum-vm-to-coq to translate EVM code (the assembly code of Ethereum) to Coq (with a deep embedding). The translation mechanism is much simpler compared to Solidity, but the generated Coq is also more low-level and harder to follow for formal verification.

In addition, we are thinking about relating the two translations (of Solidity and EVM) with an intermediate translation step, to get the best of both worlds (a reliable and high-level translation of Solidity code to Coq).

Offer

For more information or to formally verify your smart contracts, you can contact us by email at contact@formal.land ✉️ or schedule a call on koalendar.com/e/meet-with-formal-land ☎️. Our target is to be as cheap as $50,000 to fully verify an existing dApp. By full verification we mean formalizing and verifying the specification given by a typical set of unit/integration tests on a project.

Helping you build 🚀