Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions tests/waku_rln_relay/utils_onchain.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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
Expand Down