File tree Expand file tree Collapse file tree 8 files changed +2518
-452
lines changed Expand file tree Collapse file tree 8 files changed +2518
-452
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ source "$SCRIPTS/gen_output/cast.sh"
77source " $SCRIPTS /gen_output/chisel.sh"
88source " $SCRIPTS /gen_output/forge.sh"
99source " $SCRIPTS /gen_output/help.sh"
10+ source " $SCRIPTS /gen_output/vm.sh"
1011
1112need_cmd git
1213need_cmd mktemp
@@ -21,3 +22,4 @@ gen_help
2122gen_cast
2223gen_chisel
2324gen_forge
25+ gen_vm
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ set -eo pipefail
3+
4+ gen_vm () {
5+ need_cmd curl
6+
7+ echo " Generating output (vm)..."
8+ mkdir -p " $OUTPUT_DIR /vm"
9+
10+ curl https://raw.githubusercontent.com/foundry-rs/forge-std/refs/heads/master/src/Vm.sol > " $OUTPUT_DIR /vm/Vm.sol"
11+
12+ echo OK.
13+ }
14+
15+ gen_vm
Original file line number Diff line number Diff line change 491491 - [ ` serializeJson ` ] ( ./cheatcodes/serialize-json.md )
492492 - [ ` writeJson ` ] ( ./cheatcodes/write-json.md )
493493 - [ ` writeToml ` ] ( ./cheatcodes/write-toml.md )
494+ - [ Signing] ( ./cheatcodes/signing.md )
495+ - [ ` sign ` ] ( ./cheatcodes/sign.md )
496+ - [ ` signDelegation ` ] ( ./cheatcodes/sign-delegation.md )
494497 - [ Utilities] ( ./cheatcodes/utilities.md )
495498 - [ ` addr ` ] ( ./cheatcodes/addr.md )
496- - [ ` sign ` ] ( ./cheatcodes/sign.md )
497499 - [ ` skip ` ] ( ./cheatcodes/skip.md )
498500 - [ ` label ` ] ( ./cheatcodes/label.md )
499501 - [ ` getLabel ` ] ( ./cheatcodes/get-label.md )
You can’t perform that action at this time.
0 commit comments