From 3ea588e750ee9ce3f428ceecb387173ca5f39ce4 Mon Sep 17 00:00:00 2001 From: PavelInjective Date: Tue, 3 Dec 2024 20:47:26 +0100 Subject: [PATCH] (fix) Update OFAC list URL and filename --- pyinjective/ofac.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pyinjective/ofac.py b/pyinjective/ofac.py index b94ccd9a..00f49b62 100644 --- a/pyinjective/ofac.py +++ b/pyinjective/ofac.py @@ -5,9 +5,10 @@ import aiohttp OFAC_LIST_URL = ( - "https://raw.githubusercontent.com/InjectiveLabs/injective-lists/refs/heads/master/json/wallets/ofac.json" + "https://raw.githubusercontent.com/InjectiveLabs/injective-lists/" + "refs/heads/master/json/wallets/ofacAndRestricted.json" ) -OFAC_LIST_FILENAME_DEFAULT = "ofac.json" +OFAC_LIST_FILENAME_DEFAULT = "ofacAndRestricted.json" OFAC_LIST_FILENAME = OFAC_LIST_FILENAME_DEFAULT