Skip to content

Commit 818265c

Browse files
authored
Merge pull request #5227 from BitGo/COPS-2909
feat(statics): add BitGo Europe ApS entity
2 parents 1861966 + 3d0438e commit 818265c

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

modules/statics/src/base.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@ export enum CoinFeature {
228228
* This coin supports custody in BitGo Korea entities
229229
*/
230230
CUSTODY_BITGO_KOREA = 'custody-bitgo-korea',
231+
/**
232+
* This coin supports custody in BitGo Europe ApS entities
233+
*/
234+
CUSTODY_BITGO_EUROPE_APS = 'custody-bitgo-europe-aps',
231235
/*
232236
* This coin has transactions that expire after a certain amount of time.
233237
*/

modules/statics/src/utxo.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ const BTC_FEATURES = [
106106
CoinFeature.CUSTODY_BITGO_FRANKFURT,
107107
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
108108
CoinFeature.CUSTODY_BITGO_KOREA,
109+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
109110
CoinFeature.BULK_TRANSACTION,
110111
CoinFeature.DISTRIBUTED_CUSTODY,
111112
CoinFeature.CUSTODY_BITGO_SINGAPORE,

modules/statics/test/unit/coins.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
4545
CoinFeature.CUSTODY_BITGO_GERMANY,
4646
CoinFeature.CUSTODY_BITGO_NEW_YORK,
4747
CoinFeature.CUSTODY_BITGO_FRANKFURT,
48+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
4849
CoinFeature.CUSTODY_BITGO_SINGAPORE,
4950
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
5051
CoinFeature.CUSTODY_BITGO_KOREA,
@@ -252,6 +253,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
252253
CoinFeature.CUSTODY_BITGO_GERMANY,
253254
CoinFeature.CUSTODY_BITGO_NEW_YORK,
254255
CoinFeature.CUSTODY_BITGO_FRANKFURT,
256+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
255257
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
256258
CoinFeature.CUSTODY_BITGO_KOREA,
257259
CoinFeature.CUSTODY_BITGO_SINGAPORE,
@@ -264,6 +266,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
264266
CoinFeature.CUSTODY_BITGO_GERMANY,
265267
CoinFeature.CUSTODY_BITGO_NEW_YORK,
266268
CoinFeature.CUSTODY_BITGO_FRANKFURT,
269+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
267270
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
268271
CoinFeature.CUSTODY_BITGO_KOREA,
269272
CoinFeature.CUSTODY_BITGO_SINGAPORE,
@@ -286,6 +289,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
286289
CoinFeature.CUSTODY_BITGO_GERMANY,
287290
CoinFeature.CUSTODY_BITGO_NEW_YORK,
288291
CoinFeature.CUSTODY_BITGO_FRANKFURT,
292+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
289293
CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE,
290294
CoinFeature.CUSTODY_BITGO_KOREA,
291295
CoinFeature.CUSTODY_BITGO_SINGAPORE,

0 commit comments

Comments
 (0)