Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.14 KB

File metadata and controls

36 lines (26 loc) · 1.14 KB

Interop Examples

This repo contains example scripts and applications to demonstrate interoperability between ZKsync chains.

Further documentation is available in the official ZKsync docs.

Cloning

This repo contains submodules. To clone this repo, use:

git clone https://github.com/matter-labs/interop-examples --recursive

Or if you already have it cloned without the submodules, run:

git submodule update --init --recursive

Contributing

Each new example should:

  • either provide a unique use case for interop or duplicate an existing use case but using a different tool or framework with significant differences.
  • contain a README.md file with instructions for running the example locally, an overview of what the code does, and instructions for how to use the app if applicable
  • pass the linting rules configured in root of this repo. To check this, you can run bun lint.
  • use the zksync-js and zksync-contracts SDKs when applicable.
  • use conventional commits.