Skip to content

Commit 6f3410b

Browse files
committed
feat: added custody wallet feature to canton
Ticket: COIN-6213
1 parent 2cf9eac commit 6f3410b

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
@@ -675,4 +675,12 @@ export const CANTON_FEATURES = [
675675
CoinFeature.REQUIRES_BIG_NUMBER,
676676
CoinFeature.TSS,
677677
CoinFeature.TSS_COLD,
678+
CoinFeature.CUSTODY,
679+
CoinFeature.CUSTODY_BITGO_TRUST,
680+
CoinFeature.CUSTODY_BITGO_MENA_FZE,
681+
CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE,
682+
CoinFeature.CUSTODY_BITGO_SINGAPORE,
683+
CoinFeature.CUSTODY_BITGO_KOREA,
684+
CoinFeature.CUSTODY_BITGO_EUROPE_APS,
685+
CoinFeature.CUSTODY_BITGO_FRANKFURT,
678686
];

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)