From 05b53ee7ed182c7092a29ab16bec205bcaa2b6e4 Mon Sep 17 00:00:00 2001 From: Felipe Andrade Date: Wed, 12 Jul 2023 12:23:41 -0700 Subject: [PATCH] example.config.toml --- op-ufm/op-ufm/example.config.toml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/op-ufm/op-ufm/example.config.toml b/op-ufm/op-ufm/example.config.toml index b3fd6a5..9a88341 100644 --- a/op-ufm/op-ufm/example.config.toml +++ b/op-ufm/op-ufm/example.config.toml @@ -32,11 +32,11 @@ port = 9761 chain_id = 420 # Signer method to use # Possible values: signer | static -signer_method = "signer" +signer_method = "static" # Address used to send transactions -address="0x0123" +address="0x0000000000000000000000000000000000000000" # For static signer method, the private key to use -# private_key="" +private_key="0000000000000000000000000000000000000000000000000000000000000000" # Transaction value in wei tx_value=100000000000000 # Gas limit @@ -57,6 +57,12 @@ read_interval = "1s" send_interval = "5s" # Wallet to be used for sending transactions wallet = "default" +# Network to pool transactions, i.e. providers in the same network will check transactions from each other +network = "op-goerli" +# Interval between receipt retrieval +receipt_retrieval_interval = "500ms" +# Max time to check for receipt +receipt_retrieval_timeout = "2m" [providers.p2] # Uncomment to disable this provider @@ -71,3 +77,9 @@ read_interval = "2s" send_interval = "3s" # Wallet to be used for sending transactions wallet = "default" +# Network to pool transactions, i.e. providers in the same network will check transactions from each other +network = "op-goerli" +# Interval between receipt retrieval +receipt_retrieval_interval = "500ms" +# Max time to check for receipt +receipt_retrieval_timeout = "2m"