Commit 62988932 authored by Felipe Andrade's avatar Felipe Andrade

update example.config.toml

parent 7fc7cb39
...@@ -52,13 +52,15 @@ url = "http://localhost:8551" ...@@ -52,13 +52,15 @@ url = "http://localhost:8551"
# Read only providers are only used to check for transactions # Read only providers are only used to check for transactions
read_only = true read_only = true
# Interval to poll the provider for expected transactions # Interval to poll the provider for expected transactions
read_interval = "1s" read_interval = "10s"
# Interval to submit new transactions to the provider # Interval to submit new transactions to the provider
send_interval = "5s" send_interval = "30s"
# Wallet to be used for sending transactions # Interval between send transaction when we get "already known" txpool err
wallet = "default" send_transaction_retry_interval = "100ms"
# Network to pool transactions, i.e. providers in the same network will check transactions from each other # Max time to retry
network = "op-goerli" send_transaction_retry_timeout = "5s"
# Interval between each send transaction to the same network
send_transaction_cool_down = "30s"
# Interval between receipt retrieval # Interval between receipt retrieval
receipt_retrieval_interval = "500ms" receipt_retrieval_interval = "500ms"
# Max time to check for receipt # Max time to check for receipt
...@@ -72,13 +74,15 @@ url = "http://localhost:8552" ...@@ -72,13 +74,15 @@ url = "http://localhost:8552"
# Read only providers are only used to check for transactions # Read only providers are only used to check for transactions
read_only = false read_only = false
# Interval to poll the provider for expected transactions # Interval to poll the provider for expected transactions
read_interval = "2s" read_interval = "10s"
# Interval to submit new transactions to the provider # Interval to submit new transactions to the provider
send_interval = "3s" send_interval = "30s"
# Wallet to be used for sending transactions # Interval between send transaction when we get "already known" txpool err
wallet = "default" send_transaction_retry_interval = "100ms"
# Network to pool transactions, i.e. providers in the same network will check transactions from each other # Max time to retry
network = "op-goerli" send_transaction_retry_timeout = "5s"
# Interval between each send transaction to the same network
send_transaction_cool_down = "30s"
# Interval between receipt retrieval # Interval between receipt retrieval
receipt_retrieval_interval = "500ms" receipt_retrieval_interval = "500ms"
# Max time to check for receipt # Max time to check for receipt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment