diff --git a/docs/mimicry.md b/docs/mimicry.md index 9ad062e8..30424b9f 100644 --- a/docs/mimicry.md +++ b/docs/mimicry.md @@ -46,7 +46,7 @@ Mimicry requires a single `yaml` config file. An example file can be found [here | labels | object | | A key value map of labels to append to every mimicry event | | ntpServer | string | `pool.ntp.org` | NTP server to calculate clock drift for events | | captureDelay | string | `3m` | Delay before starting to capture transactions | -| ethereum.bootstrapRpcUrl | string | | Optional mainnet, Sepolia, or Holesky execution JSON-RPC endpoint used to build local `eth` Status and answer block data requests | +| ethereum.bootstrapRpcUrl | string | | Optional mainnet, Sepolia, Holesky, or Hoodi execution JSON-RPC endpoint used to build local `eth` Status and answer block data requests | | ethereum.privateKey | string | | Optional hex devp2p node private key. If omitted, mimicry reuses one generated process-local identity for all execution peers | | ethereum.blobTransactionBatchSize | int | `1` | Number of blob transactions to request at a time via `GetPooledTransactions` | | ethereum.transactionBatchSize | int | `10` | Number of non-blob transactions to request at a time via `GetPooledTransactions` | diff --git a/example_mimicry.yaml b/example_mimicry.yaml index 7bca6321..5bd5f430 100644 --- a/example_mimicry.yaml +++ b/example_mimicry.yaml @@ -22,7 +22,7 @@ captureDelay: 3m # ethereum: # overrideNetworkName: devnet -# bootstrapRpcUrl: http://localhost:8545 # Optional mainnet/Sepolia/Holesky EL RPC used to build Status and answer block data requests. +# bootstrapRpcUrl: http://localhost:8545 # Optional mainnet/Sepolia/Holesky/Hoodi EL RPC used to build Status and answer block data requests. # privateKey: "" # Optional hex devp2p node key. If omitted, one process-local identity is reused. # blobTransactionBatchSize: 1 # Number of blob txns to request at a time (default: 1) # transactionBatchSize: 10 # Number of other txns to request at a time (default: 10)