From 1a552f30c2c3c10f0ea85a03e66a8cf2f45ff770 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 5 Nov 2025 15:55:25 +0100 Subject: [PATCH 1/2] remove warp.lotus.dedyn.io from IGNORED_PROVIDERS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.js b/index.js index 79e7044..66f7122 100644 --- a/index.js +++ b/index.js @@ -11,10 +11,8 @@ const NO_ALERT_ON_RESPONSE_STATUS_CODES = [ 521, ] -const IGNORED_PROVIDERS = [ - // calibnet SP id 5 (warp.lotus.dedyn.io) - '0xB709A785c765d7d3F7d94dbA367DA6a611D7972b', -] +/** @type {string[]} */ +const IGNORED_PROVIDERS = [] export const pdpVerifierAbi = [ // Returns the next data set ID From ce9af25a966b6c83775cf3416f171bb28c9054ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Wed, 5 Nov 2025 15:57:32 +0100 Subject: [PATCH 2/2] fixup! add docs about the format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 66f7122..82c3592 100644 --- a/index.js +++ b/index.js @@ -11,6 +11,7 @@ const NO_ALERT_ON_RESPONSE_STATUS_CODES = [ 521, ] +// A list of storage provider addresses (0x...) to ignore when sampling deals to test /** @type {string[]} */ const IGNORED_PROVIDERS = []