Skip to content

Commit 084d6ad

Browse files
authored
chore: custom networks dev docs (#11943)
1 parent 7b84375 commit 084d6ad

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

crates/evm/networks/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To add configuration support for a custom network (e.g. `my_network`), add a new
1313
pub my_network: bool,
1414
```
1515

16-
This automatically enables::
16+
This automatically enables:
1717
- `my_network = true` in foundry.toml
1818
- `--my-network` anvil CLI flag
1919
```

docs/dev/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ $ make pr
5151
- [Cheatcodes](./cheatcodes.md)
5252
- [Debugging](./debugging.md)
5353
- [Scripting](./scripting.md)
54+
- [Custom Network Features](./networks.md)
5455

5556
_Note: This is incomplete and possibly outdated_
5657

docs/dev/networks.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Custom Network Features
2+
3+
Foundry's `anvil`, `forge` and `cast` tools can be customized with specific network features (currently with custom
4+
precompiles, with planned support for custom transaction types).
5+
6+
For supporting custom features of a network, please check out documentation and examples within [`evm-networks`](../../crates/evm/networks) crate.

0 commit comments

Comments
 (0)