Skip to content

Commit 51f3a04

Browse files
authored
Merge pull request #7040 from BitGo/WP-6028
feat: migrate advanced wallet type from subtype to type
2 parents 10b2022 + 536be8a commit 51f3a04

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export interface SupplementGenerateWalletOptions {
219219
rootPrivateKey?: string;
220220
disableKRSEmail?: boolean;
221221
multisigType?: 'tss' | 'onchain' | 'blsdkg';
222-
type: 'hot' | 'cold' | 'custodial';
222+
type: 'hot' | 'cold' | 'custodial' | 'advanced';
223223
subType?: 'lightningCustody' | 'lightningSelfCustody' | 'onPrem';
224224
coinSpecific?: { [coinName: string]: unknown };
225225
evmKeyRingReferenceWalletId?: string;

modules/sdk-core/src/bitgo/wallet/iWallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ export interface CrossChainUTXO {
737737
toAddress: string;
738738
}
739739

740-
export type WalletType = 'backing' | 'cold' | 'custodial' | 'custodialPaired' | 'hot' | 'trading';
740+
export type WalletType = 'backing' | 'cold' | 'custodial' | 'custodialPaired' | 'hot' | 'trading' | 'advanced';
741741
export type SubWalletType = 'distributedCustody' | 'lightningCustody' | 'lightningSelfCustody' | 'onPrem';
742742

743743
export interface WalletData {

0 commit comments

Comments
 (0)