Skip to content

Files

Latest commit

ca48ea7 · May 15, 2024

History

History
This branch is 2231 commits behind ethereum-optimism/optimism:develop.

cannon

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 5, 2024
Feb 26, 2024
May 9, 2024
May 15, 2024
Jul 27, 2023
Jun 16, 2023
May 10, 2024
Aug 3, 2023
Aug 6, 2023

Cannon (cannon cannon cannon) is an onchain MIPS instruction emulator. Cannon supports EVM-equivalent fault proofs by enabling Geth to run onchain, one instruction at a time, as part of an interactive dispute game.

  • It's Go code
  • ...that runs an EVM
  • ...emulating a MIPS machine
  • ...running compiled Go code
  • ...that runs an EVM

For more information, see Docs.

Usage

# Build op-program server-mode and MIPS-client binaries.
cd ../op-program
make op-program # build

# Switch back to cannon, and build the CLI
cd ../cannon
make cannon

# Transform MIPS op-program client binary into first VM state.
# This outputs state.json (VM state) and meta.json (for debug symbols).
./bin/cannon load-elf --path=../op-program/bin/op-program-client.elf

# Run cannon emulator (with example inputs)
# Note that the server-mode op-program command is passed into cannon (after the --),
# it runs as sub-process to provide the pre-image data.
#
# Note:
#  - The L2 RPC is an archive L2 node on OP goerli.
#  - The L1 RPC is a non-archive RPC, also change `--l1.rpckind` to reflect the correct L1 RPC type.
./bin/cannon run \
    --pprof.cpu \
    --info-at '%10000000' \
    --proof-at never \
    --input ./state.json \
    -- \
    ../op-program/bin/op-program \
    --network goerli \
    --l1.trustrpc \
    --l1.rpckind debug_geth \
    --l1 http://127.0.0.1:8645 \
    --l2 http://127.0.0.1:8745 \
    --l1.head 0x204f815790ca3bb43526ad60ebcc64784ec809bdc3550e82b54a0172f981efab \
    --l2.head 0xedc79de4d616a9100fdd42192224580daee81ea3d6303de8089d48a6c1bf4816 \
    --l2.claim 0x530658ab1b1b3ff4829731fc8d5955f0e6b8410db2cd65b572067ba58df1f2b9 \
    --l2.blocknumber 8813570 \
    --datadir /tmp/fpp-database \
    --log.format terminal \
    --server

# Add --proof-at '=12345' (or pick other pattern, see --help)
# to pick a step to build a proof for (e.g. exact step, every N steps, etc.)

# Also see `./bin/cannon run --help` for more options

Contracts

The Cannon contracts:

  • MIPS.sol: A MIPS emulator implementation, to run a single instruction onchain, with merkleized VM memory.
  • PreimageOracle.sol: implements the pre-image oracle ABI, to support the instruction execution pre-image requests.

The smart-contracts are integrated into the Optimism monorepo contracts: ../packages/contracts-bedrock/src/cannon

mipsevm

mipsevm is Go tooling to test the onchain MIPS implementation, and generate proof data.

example

Example programs that can be run and proven with Cannon. Optional dependency, but required for mipsevm Go tests. See example/Makefile for building the example MIPS binaries.

License

MIT, see LICENSE file.

Note: This code is unaudited. In NO WAY should it be used to secure any monetary value before testing and auditing. This is experimental software, and should be treated as such. The authors of this project make no guarantees of security of ANY KIND.