From d81da52ebf05b8d6d8ac57a5fa910aa56d93d14a Mon Sep 17 00:00:00 2001 From: amit-momin Date: Wed, 22 May 2024 10:56:58 -0500 Subject: [PATCH] Updated DetectionApiUrl config example --- core/config/docs/chains-evm.toml | 2 +- docs/CONFIG.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/config/docs/chains-evm.toml b/core/config/docs/chains-evm.toml index 8553bf3e7ac..a4cf1ad7411 100644 --- a/core/config/docs/chains-evm.toml +++ b/core/config/docs/chains-evm.toml @@ -116,7 +116,7 @@ ResendAfterThreshold = '1m' # Default # Enabled enables or disables automatically purging transactions that have been idenitified as terminally stuck (will never be included on-chain). This feature is only expected to be used by ZK chains. Enabled = false # Default # DetectionApiUrl configures the base url of a custom endpoint used to identify terminally stuck transactions. -DetectionApiUrl = 'https://venus.scroll.io' # Example +DetectionApiUrl = 'https://example.api.io' # Example # Threshold configures the number of blocks a transaction has to remain unconfirmed before it is evaluated for being terminally stuck. This threshold is only applied if there is no custom API to identify stuck transactions provided by the chain. Threshold = 5 # Example # MinAttempts configures the minimum number of broadcasted attempts a transaction has to have before it is evaluated further for being terminally stuck. This threshold is only applied if there is no custom API to identify stuck transactions provided by the chain. Ensure the gas estimator configs take more bump attempts before reaching the configured max gas price. diff --git a/docs/CONFIG.md b/docs/CONFIG.md index 9775ce9e489..c7b34dea7f2 100644 --- a/docs/CONFIG.md +++ b/docs/CONFIG.md @@ -7155,7 +7155,7 @@ ResendAfterThreshold controls how long to wait before re-broadcasting a transact ```toml [EVM.Transactions.AutoPurge] Enabled = false # Default -DetectionApiUrl = 'https://venus.scroll.io' # Example +DetectionApiUrl = 'https://example.api.io' # Example Threshold = 5 # Example MinAttempts = 3 # Example ``` @@ -7169,7 +7169,7 @@ Enabled enables or disables automatically purging transactions that have been id ### DetectionApiUrl ```toml -DetectionApiUrl = 'https://venus.scroll.io' # Example +DetectionApiUrl = 'https://example.api.io' # Example ``` DetectionApiUrl configures the base url of a custom endpoint used to identify terminally stuck transactions.