14 lines
401 B
Bash
Executable file
14 lines
401 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
MNEMONIC_FILE=/workspace/onchain/.secret.local
|
|
ANVIL_CMD=(anvil --fork-url "${FORK_URL:-https://sepolia.base.org}" --chain-id 31337 --block-time 1 --host 0.0.0.0 --port 8545)
|
|
|
|
if [[ -f "$MNEMONIC_FILE" ]]; then
|
|
MNEMONIC="$(tr -d '\n\r' <"$MNEMONIC_FILE")"
|
|
if [[ -n "$MNEMONIC" ]]; then
|
|
ANVIL_CMD+=(--mnemonic "$MNEMONIC")
|
|
fi
|
|
fi
|
|
|
|
exec "${ANVIL_CMD[@]}"
|