Polygon zkEVM Stack Integration

Proof-of-concept integration with Polygon zkEVM stack

Espresso Systems has created a proof-of-concept integration with the Polygon zkEVM stack in the Espresso Sequencer. This integration highlights Espresso Systems’ vision of connecting and decentralizing rollups without compromising the scale and speed that rollup users have grown accustomed to.

The integration demo consists of two instances of the Polygon zkEVM using the Espresso Sequencer for decentralized sequencing and data availability in tandem. The following section is a brief walkthrough of both the technical architecture and the end-user experience for the integration.

Integration Architecture Walkthrough

The transaction flow through Polygon zkEVM-Espresso Sequencer integration is as follows:

  • The user submits transaction to Polygon JSON-RPC interface.

  • The EVM transaction is sent to the L2 adapter and then sent to the Espresso Sequencer's submission API.

  • The transaction is wrapped in a HotShot transaction and propagated to the HotShot network.

  • HotShot generates a block that includes the transaction.

  • The transaction is available to the HotShot query service.

  • The HotShot commitment service sends the batch commitment and quorum certificate to the L1 HotShot contract, which verifies that quorum certificate is valid and emits the event that a new quorum certificate has been posted.

  • The Synchronizer component of the zkEVM node gets the event via Etherman and queries the HotShot query service to obtain the full data for the batch (including the submitted transaction).

  • The zkEVM node computes the proof.

  • The proof is posted through Etherman library to the Polygon rollup contract.

  • The rollup contract verifies the proof and that the transactions are sequenced by HotShot (not yet implemented in Doppio).

Code Repository

The code for the Polygon zkEVM integration proof-of-concept can be found on GitHub: espresso-polygon-zkevm-demo.

Last updated