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.
This repository contains modified versions of Foundry's core tools:
sforge: Seismic's version offorge, for testing Seismic/Ethereum smart contractssanvil: Seismic's version ofanvil, for running local Seismic/Ethereum test networksscast: Seismic's version ofcast, 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
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.
To build sforge from source, run this from the root of this repository:
cargo install --root=$HOME/.seismic --path ./crates/forge --lockedTo build sanvil from source, run this from the root of this repository:
cargo install --root=$HOME/.seismic --path ./crates/anvil --lockedTo build scast from source, run this from the root of this repository:
cargo install --root=$HOME/.seismic --path ./crates/cast --lockedThis project is built upon the excellent work of the Foundry Contributors. We are grateful for their contributions to the Ethereum development ecosystem.
This project is distributed under the same license as Foundry.