From d74144b04769d510436c1db63a310e92b7ac3b16 Mon Sep 17 00:00:00 2001 From: Manas Ladha Date: Thu, 13 Nov 2025 15:56:13 +0530 Subject: [PATCH] feat: add a new list for all the jurisdiction related coin features TICKET: WIN-7315 TICKET: WIN-7315 --- modules/statics/src/coinFeatures.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/modules/statics/src/coinFeatures.ts b/modules/statics/src/coinFeatures.ts index bb6ccb4f1d..5b93987e89 100644 --- a/modules/statics/src/coinFeatures.ts +++ b/modules/statics/src/coinFeatures.ts @@ -1,6 +1,22 @@ import { CoinFeature } from './base'; import { Ada } from './ada'; +//list of all the jurisdictions where BitGo Custody is available +export const BITGO_CUSTODY_JURISDICTIONS = [ + CoinFeature.CUSTODY_BITGO_TRUST, + CoinFeature.CUSTODY_BITGO_MENA_FZE, + CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE, + CoinFeature.CUSTODY_BITGO_SINGAPORE, + CoinFeature.CUSTODY_BITGO_KOREA, + CoinFeature.CUSTODY_BITGO_EUROPE_APS, + CoinFeature.CUSTODY_BITGO_GERMANY, + CoinFeature.CUSTODY_BITGO_FRANKFURT, + CoinFeature.CUSTODY_BITGO_NEW_YORK, + CoinFeature.CUSTODY_BITGO_SWITZERLAND, + CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE, + CoinFeature.CUSTODY_BITGO_INDIA, +]; + export const ACCOUNT_COIN_DEFAULT_FEATURES = [ CoinFeature.ACCOUNT_MODEL, CoinFeature.REQUIRES_BIG_NUMBER,