Merge 144a0cda43f3ea17da9bcbfa63debf6c9e128242 into 96196ab8bc05f31b09dac2403f9d5de3bc05f31b

This commit is contained in:
Tanya S 2025-12-23 17:01:31 -05:00 committed by GitHub
commit 1aca36b814
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -529,6 +529,7 @@ proc runAnvil*(
# --chain-id Chain ID of the network.
# --load-state Initialize the chain from a previously saved state snapshot (read-only)
# --dump-state Dump the state on exit to the given file (write-only)
# Values used are representative of Linea Sepolia testnet
# See anvil documentation https://book.getfoundry.sh/reference/anvil/ for more details
try:
let anvilPath = getAnvilPath()
@ -539,11 +540,16 @@ proc runAnvil*(
"--port",
$port,
"--gas-limit",
"300000000000000",
"30000000",
"--gas-price",
"7",
"--base-fee",
"7",
"--balance",
"1000000000",
"10000000000",
"--chain-id",
$chainId,
"--disable-min-priority-fee"
]
# Add state file argument if provided