diff --git a/scripts/build-lists.py b/scripts/build-lists.py index 01fd49c5..5b755635 100644 --- a/scripts/build-lists.py +++ b/scripts/build-lists.py @@ -131,7 +131,10 @@ def fetch_tokens(chain): def fetch_prices(): - coins = fetch_coins() + # Use published coins.json rather than rescanning Trust Wallet assets. + # Auto-bump does not rebuild coins.json, and assets often introduce L1 + # symbol collisions (e.g. multiple chains using ETH) that would abort CI. + coins = list(map(Coin.from_dict, read_json(FINAL_BLOCKCHAINS_LIST))) prices = { "timestamp": datetime.now().isoformat(),