From 17d1223000752429104e34713677037e2ad1e3d7 Mon Sep 17 00:00:00 2001 From: meditationduck Date: Fri, 30 Jan 2026 11:36:55 +0000 Subject: [PATCH 1/4] =?UTF-8?q?=E2=9C=85=20add=20newer=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wake/cli/test.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wake/cli/test.py b/wake/cli/test.py index 2f03d5cde..f68cf6cb1 100644 --- a/wake/cli/test.py +++ b/wake/cli/test.py @@ -90,7 +90,7 @@ def shell_complete( help="Increase verbosity. Can be specified multiple times.", ) @click.option( - "-RS", + "-R", "--random-state", type=str, help="Input random state json path.", @@ -100,7 +100,7 @@ def shell_complete( required=False, ) @click.option( - "-SH", + "-C", "--shrink", # Didn't use click.Path since we accept relative index of crash log file type=str, @@ -126,7 +126,7 @@ def shell_complete( help="When shrinking, check only target invariants for faster fuzzing.", ) @click.option( - "-SR", + "-r", "--shrunk", "--shrank", "--reproduce", From a654d9ce1fcd805c96b9c5d2285675b53ead44bb Mon Sep 17 00:00:00 2001 From: meditationduck Date: Fri, 30 Jan 2026 11:57:10 +0000 Subject: [PATCH 2/4] =?UTF-8?q?=E2=9C=85=20add=20revm=20for=20toml=20file?= =?UTF-8?q?=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/wake-schema.json | 2 +- wake/config/data_model.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/wake-schema.json b/docs/wake-schema.json index 27a446859..ad309ff92 100644 --- a/docs/wake-schema.json +++ b/docs/wake-schema.json @@ -195,7 +195,7 @@ "properties": { "cmd": { "type": "string", - "enum": ["anvil", "hardhat"], + "enum": ["revm", "anvil", "hardhat"], "default": "anvil", "description": "Which development chain to use for testing" }, diff --git a/wake/config/data_model.py b/wake/config/data_model.py index a4727f437..bd8911470 100644 --- a/wake/config/data_model.py +++ b/wake/config/data_model.py @@ -406,7 +406,8 @@ class TestingConfig(WakeConfigModel): """ cmd: str = "anvil" """ - Which development chain to use for testing. Should be either `anvil` or `hardhat`. + Which development chain to use for testing. Should be one of `revm`, `anvil`, or + `hardhat`. """ anvil: AnvilConfig = Field(default_factory=AnvilConfig) """ From ef26d623e23cd719c556282fda7459c45cc8a4b5 Mon Sep 17 00:00:00 2001 From: meditationduck Date: Fri, 30 Jan 2026 12:07:41 +0000 Subject: [PATCH 3/4] =?UTF-8?q?=E2=9C=85=20remove=20redundant=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wake/cli/test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wake/cli/test.py b/wake/cli/test.py index f68cf6cb1..409f5e1f6 100644 --- a/wake/cli/test.py +++ b/wake/cli/test.py @@ -128,7 +128,6 @@ def shell_complete( @click.option( "-r", "--shrunk", - "--shrank", "--reproduce", # Didn't use click.Path since we accept relative index of crash log file type=str, From 1a2f466822043cebddef8755cf8b312c24af4c5b Mon Sep 17 00:00:00 2001 From: meditationduck Date: Fri, 30 Jan 2026 12:12:21 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=E2=9C=85=20remove=20shorten=20option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wake/cli/test.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/wake/cli/test.py b/wake/cli/test.py index 409f5e1f6..9d1079208 100644 --- a/wake/cli/test.py +++ b/wake/cli/test.py @@ -90,7 +90,6 @@ def shell_complete( help="Increase verbosity. Can be specified multiple times.", ) @click.option( - "-R", "--random-state", type=str, help="Input random state json path.", @@ -100,7 +99,6 @@ def shell_complete( required=False, ) @click.option( - "-C", "--shrink", # Didn't use click.Path since we accept relative index of crash log file type=str, @@ -126,7 +124,6 @@ def shell_complete( help="When shrinking, check only target invariants for faster fuzzing.", ) @click.option( - "-r", "--shrunk", "--reproduce", # Didn't use click.Path since we accept relative index of crash log file