Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ export const allCoinsAndTokens = [
6,
UnderlyingAsset.OSMO,
BaseUnit.OSMO,
COSMOS_SIDECHAIN_FEATURES_WITH_STAKING
COSMOS_SIDECHAIN_FEATURES_WITH_STAKING.filter((feature) => ![CoinFeature.CUSTODY_BITGO_SINGAPORE].includes(feature))
),
account(
'd813e9c9-f9b9-4d10-a4e2-57d9e3b65e2c',
Expand Down Expand Up @@ -1446,7 +1446,7 @@ export const allCoinsAndTokens = [
18,
UnderlyingAsset.WEMIX,
BaseUnit.ETH,
WEMIX_FEATURES
WEMIX_FEATURES.filter((feature) => feature !== CoinFeature.CUSTODY_BITGO_SINGAPORE)
),
account(
'b18517e3-2fba-44df-be39-7ba062d14895',
Expand Down Expand Up @@ -2620,7 +2620,7 @@ export const allCoinsAndTokens = [
7,
UnderlyingAsset['xlm:SLT-GCKA6K5PCQ6PNF5RQBF7PQDJWRHO6UOGFMRLK3DYHDOI244V47XKQ4GP'],
'smartlands.io',
AccountCoin.DEFAULT_FEATURES,
AccountCoin.DEFAULT_FEATURES_EXCLUDE_SINGAPORE,
'',
'SLT'
),
Expand Down Expand Up @@ -4629,7 +4629,7 @@ export const allCoinsAndTokens = [
'VSUI',
'0x549e8b69270defbfafd4f94e17ec44cdbdd99820b33bda2278dea3b9a32d3f55::vsui::VSUI',
UnderlyingAsset['sui:vsui'],
SUI_TOKEN_FEATURES
SUI_TOKEN_FEATURES_EXCLUDE_SINGAPORE
),
suiToken(
'705d1458-d5e6-4eaa-8a34-51e65cc68dec',
Expand Down
3 changes: 3 additions & 0 deletions modules/statics/src/coinFeatures.ts
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,9 @@ export const STX_TOKEN_FEATURES = [
CoinFeature.MULTISIG_COLD,
CoinFeature.ALPHANUMERIC_MEMO_ID,
];
export const STX_TOKEN_FEATURES_EXCLUDE_SINGAPORE = STX_TOKEN_FEATURES.filter(
(feature) => feature !== CoinFeature.CUSTODY_BITGO_SINGAPORE
);
export const NEAR_FEATURES = [
...ACCOUNT_COIN_DEFAULT_FEATURES,
CoinFeature.TSS,
Expand Down
3 changes: 2 additions & 1 deletion modules/statics/src/coins/avaxTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,8 @@ export const avaxTokens = [
'Betswap.gg',
18,
'0x49f519002eeced6902f24c0be72b6d898e4d27fc',
UnderlyingAsset['avaxc:bsgg']
UnderlyingAsset['avaxc:bsgg'],
AccountCoin.getFeaturesByTypeExcluding([CoinFeature.CUSTODY_BITGO_SINGAPORE])
),
avaxErc20(
'e6bd6935-daac-4edc-8cfb-f8305ebbdb11',
Expand Down
13 changes: 9 additions & 4 deletions modules/statics/src/coins/bscTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,12 @@ export const bscTokens = [
'0xcebef3df1f3c5bfd90fde603e71f31a53b11944d',
UnderlyingAsset['bsc:litt'],
AccountCoin.getFeaturesByTypeExcluding(
[CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_EUROPE_APS, CoinFeature.CUSTODY_BITGO_FRANKFURT],
[
CoinFeature.CUSTODY_BITGO_GERMANY,
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
],
BSC_TOKEN_FEATURES
)
),
Expand Down Expand Up @@ -197,7 +202,7 @@ export const bscTokens = [
6,
'0x71b3a0566f4bf80331d115d8026a7022bf670cce',
UnderlyingAsset['bsc:dd'],
BSC_TOKEN_FEATURES
BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE
),
bscToken(
'ebfcdf18-bdad-41da-bbda-2b3a71338c1c',
Expand Down Expand Up @@ -1019,7 +1024,7 @@ export const bscTokens = [
18,
'0x2003f7ba57ea956b05b85c60b4b2ceea9b111256',
UnderlyingAsset['bsc:kmd'],
BSC_TOKEN_FEATURES
BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE
),
bscToken(
'a4cda030-4c22-4ece-93b4-840da127781c',
Expand Down Expand Up @@ -1286,7 +1291,7 @@ export const bscTokens = [
18,
'0x64748ea3e31d0b7916f0ff91b017b9f404ded8ef',
UnderlyingAsset['bsc:cusdo'],
BSC_TOKEN_FEATURES
BSC_TOKEN_FEATURES_EXCLUDE_SINGAPORE
),
bscToken(
'94c40a09-1d9e-4623-8e74-58b604a041ab',
Expand Down
Loading