From c3e8a5f7667ed75f489b8cbdc49a786b27e3a3a4 Mon Sep 17 00:00:00 2001 From: Victor Lenoir Date: Thu, 22 Jan 2026 11:37:42 +0100 Subject: [PATCH] Reapply "Merge pull request #477 from blockchain/FC-1637-list-ada-tokens" (#483) This reverts commit fc626d72d4cace4c403f93ae677199f5dbb2a800. --- custody.json | 18 ++++++++++++++++++ scripts/check-lists.py | 2 ++ 2 files changed, 20 insertions(+) diff --git a/custody.json b/custody.json index bc0eaed5..34ea3924 100644 --- a/custody.json +++ b/custody.json @@ -1560,6 +1560,24 @@ }, "hwsSettings": null }, + { + "symbol": "SNEK.ADA", + "displaySymbol": "SNEK", + "type": "CARDANO_TOKEN", + "nabuSettings": { + "custodialPrecision": 0 + }, + "hwsSettings": null + }, + { + "symbol": "NIGHT.ADA", + "displaySymbol": "NIGHT", + "type": "CARDANO_TOKEN", + "nabuSettings": { + "custodialPrecision": 6 + }, + "hwsSettings": null + }, { "symbol": "SNX", "displaySymbol": "SNX", diff --git a/scripts/check-lists.py b/scripts/check-lists.py index 7e0789a0..c00c5ad8 100644 --- a/scripts/check-lists.py +++ b/scripts/check-lists.py @@ -224,6 +224,8 @@ def load_ref( ref = chains_dict.get("SOL").get(original_symbol) elif currency_type == "JETTON": ref = chains_dict.get("TON").get(original_symbol) + elif currency_type == "CARDANO_TOKEN": + ref = chains_dict.get("ADA").get(original_symbol) return ref