From 55bf95702c870097c3bf0feb3f96b26670542bed Mon Sep 17 00:00:00 2001 From: Apollo Date: Wed, 20 May 2026 13:23:09 +0000 Subject: [PATCH] chore(contract-manager): add fetched contract count log --- contract_manager/scripts/list_evm_contracts.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/contract_manager/scripts/list_evm_contracts.ts b/contract_manager/scripts/list_evm_contracts.ts index 00ef26073c..25a0734333 100644 --- a/contract_manager/scripts/list_evm_contracts.ts +++ b/contract_manager/scripts/list_evm_contracts.ts @@ -38,6 +38,7 @@ async function main() { } } } + console.log(`Fetched ${entries.length} EVM price feed contract versions.`); console.table(entries); }