Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 2.12 KB

File metadata and controls

46 lines (32 loc) · 2.12 KB

seismic-foundry

Seismic Foundry is a fork of Foundry, customized to work with the Seismic blockchain. It provides a testing toolchain specifically designed for Seismic's modified version of Reth.

Overview

This repository contains modified versions of Foundry's core tools:

  • sforge: Seismic's version of forge, for testing Seismic/Ethereum smart contracts
  • sanvil: Seismic's version of anvil, for running local Seismic/Ethereum test networks
  • scast: Seismic's version of cast, for interacting with Seismic/Ethereum networks

For more info on our Seismic-specific changes (shielded transactions, private storage, SEVM, ssolc compiler), see the contributors docs.

NOTE: seismic-foundry does not yet support Foundry's chisel

Installation

In most cases you should install foundry tools via sfoundryup. If you are modifying seismic-foundry or need to build from source, then you can install from source as described below.

Seismic Forge

To build sforge from source, run this from the root of this repository:

cargo install --root=$HOME/.seismic --path ./crates/forge --locked

Seismic Anvil

To build sanvil from source, run this from the root of this repository:

cargo install --root=$HOME/.seismic --path ./crates/anvil --locked

Seismic Cast

To build scast from source, run this from the root of this repository:

cargo install --root=$HOME/.seismic --path ./crates/cast --locked

Acknowledgments

This project is built upon the excellent work of the Foundry Contributors. We are grateful for their contributions to the Ethereum development ecosystem.

License

This project is distributed under the same license as Foundry.