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