superchain-ops icon indicating copy to clipboard operation
superchain-ops copied to clipboard

refactor(part1): Consolidate simulate command.

Open blmalone opened this issue 10 months ago • 0 comments

The simulate command right now looks something like:

Nested:

SIMULATE_WITHOUT_LEDGER=1 just --dotenv-path $(pwd)/.env --justfile ../../../nested.just simulate foundation

Single:

SIMULATE_FROM_LEDGER=1 just --dotenv-path $(pwd)/.env --justfile ../../../single.just simulate

this PR simplifies the command to be: Nested:

SIMULATE_WITHOUT_LEDGER=1 just simulate foundation

Single:

SIMULATE_FROM_LEDGER=1 just simulate

note: you'll still need to pass through the .env file if needed.

We can do this for other commands and eventually delete both single.just and nested.just.

blmalone avatar May 05 '25 22:05 blmalone