Skip to content

Commit 60cdd6a

Browse files
authored
Merge pull request #7368 from BitGo/COIN-6213
feat: added custody wallet feature to canton
2 parents daea860 + 6f3410b commit 60cdd6a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

modules/bitgo/test/browser/browser.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ describe('Coins', () => {
5858
HashToken: 1,
5959
FlrToken: 1,
6060
JettonToken: 1,
61-
Canton: 1,
62-
Tcanton: 1,
6361
};
6462
Object.keys(BitGoJS.Coin)
6563
.filter((coinName) => !excludedKeys[coinName])

modules/statics/src/coinFeatures.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,4 +676,12 @@ export const CANTON_FEATURES = [
676676
CoinFeature.REQUIRES_BIG_NUMBER,
677677
CoinFeature.TSS,
678678
CoinFeature.TSS_COLD,
679+
CoinFeature.CUSTODY,
680+
CoinFeature.CUSTODY_BITGO_TRUST,
681+
CoinFeature.CUSTODY_BITGO_MENA_FZE,
682+
CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE,
683+
CoinFeature.CUSTODY_BITGO_SINGAPORE,
684+
CoinFeature.CUSTODY_BITGO_KOREA,
685+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
686+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
679687
];

modules/statics/test/unit/coins.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -883,7 +883,6 @@ coins.forEach((coin, coinName) => {
883883
const coinSupportsCustody =
884884
coin.family !== CoinFamily.LNBTC &&
885885
coin.family !== CoinFamily.CELO &&
886-
coin.family !== CoinFamily.CANTON &&
887886
coin.name !== 'ofccelo' &&
888887
coin.name !== 'ofctcelo';
889888
coin.features.includes(CoinFeature.CUSTODY).should.eql(coinSupportsCustody);

0 commit comments

Comments
 (0)