Skip to content

Commit 536be8a

Browse files
committed
feat: add advanced wallet type
Ticket: WP-6028
1 parent 820dbda commit 536be8a

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
@@ -216,7 +216,7 @@ export interface SupplementGenerateWalletOptions {
216216
rootPrivateKey?: string;
217217
disableKRSEmail?: boolean;
218218
multisigType?: 'tss' | 'onchain' | 'blsdkg';
219-
type: 'hot' | 'cold' | 'custodial';
219+
type: 'hot' | 'cold' | 'custodial' | 'advanced';
220220
subType?: 'lightningCustody' | 'lightningSelfCustody' | 'onPrem';
221221
coinSpecific?: { [coinName: string]: unknown };
222222
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)