From f686e70aa9f0e2c3cab1e087ba167c0fc2ace5f5 Mon Sep 17 00:00:00 2001 From: Pranav Jain Date: Wed, 30 Jul 2025 14:53:17 -0400 Subject: [PATCH] feat(sdk-core): add on-prem subType to wallet generate types TICKET: WP-5376 --- modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts b/modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts index aa3eff7aac..6b99050a5c 100644 --- a/modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts +++ b/modules/sdk-core/src/bitgo/baseCoin/iBaseCoin.ts @@ -204,7 +204,7 @@ export interface SupplementGenerateWalletOptions { disableKRSEmail?: boolean; multisigType?: 'tss' | 'onchain' | 'blsdkg'; type: 'hot' | 'cold' | 'custodial'; - subType?: 'lightningCustody' | 'lightningSelfCustody'; + subType?: 'lightningCustody' | 'lightningSelfCustody' | 'onPrem'; coinSpecific?: { [coinName: string]: unknown }; }