Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
4 changes: 2 additions & 2 deletions modules/statics/src/allCoinsAndTokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ export const allCoinsAndTokens = [
9,
UnderlyingAsset.HASH,
BaseUnit.HASH,
COSMOS_SIDECHAIN_FEATURES_WITH_STAKING
[...COSMOS_SIDECHAIN_FEATURES_WITH_STAKING, CoinFeature.CUSTODY_BULK_TRANSACTION]
),
account(
'feadf3d5-5a9a-427e-8144-7a5085b4d258',
Expand All @@ -722,7 +722,7 @@ export const allCoinsAndTokens = [
9,
UnderlyingAsset.HASH,
BaseUnit.HASH,
COSMOS_SIDECHAIN_FEATURES_WITH_STAKING
[...COSMOS_SIDECHAIN_FEATURES_WITH_STAKING, CoinFeature.CUSTODY_BULK_TRANSACTION]
),
account(
'36700514-fa3c-42d8-9503-98cdcab0b3c3',
Expand Down
1 change: 1 addition & 0 deletions modules/statics/src/utxo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ const BCH_FEATURES = [
CoinFeature.CUSTODY_BITGO_NEW_YORK,
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.CUSTODY_BULK_TRANSACTION,
];
const BTC_FEATURES = [
...UtxoCoin.DEFAULT_FEATURES,
Expand Down
6 changes: 6 additions & 0 deletions modules/statics/test/unit/coins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.BULK_TRANSACTION,
CoinFeature.CUSTODY_BULK_TRANSACTION,
],
},
btg: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
Expand Down Expand Up @@ -470,6 +471,7 @@ const custodyFeatures: Record<string, { features: CoinFeature[] }> = {
CoinFeature.CUSTODY_BITGO_FRANKFURT,
CoinFeature.CUSTODY_BITGO_SINGAPORE,
CoinFeature.BULK_TRANSACTION,
CoinFeature.CUSTODY_BULK_TRANSACTION,
],
},
tbtg: { features: [CoinFeature.CUSTODY_BITGO_GERMANY, CoinFeature.CUSTODY_BITGO_FRANKFURT] },
Expand Down Expand Up @@ -1107,6 +1109,10 @@ describe('Custody Bulk Withdrawal Features', () => {
'tcronos',
'initia',
'tinitia',
'thash',
'hash',
'bch',
'tbch',
];
custodyBulkWithdrawalCoins.forEach((coinName) => {
const coin = coins.get(coinName);
Expand Down