From 46c88f38d2183aaf0fa9d8345a1a92f3a5d5c7db Mon Sep 17 00:00:00 2001 From: David Kaplan Date: Wed, 6 May 2026 15:24:48 -0400 Subject: [PATCH] feat: add lightning provider to generateWallet BTC-000 --- modules/sdk-core/src/bitgo/wallet/iWallets.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/sdk-core/src/bitgo/wallet/iWallets.ts b/modules/sdk-core/src/bitgo/wallet/iWallets.ts index cd573dba6f..1589e94091 100644 --- a/modules/sdk-core/src/bitgo/wallet/iWallets.ts +++ b/modules/sdk-core/src/bitgo/wallet/iWallets.ts @@ -91,6 +91,7 @@ export interface GenerateWalletOptions { type?: 'hot' | 'cold' | 'custodial' | 'trading'; subType?: 'lightningCustody' | 'lightningSelfCustody'; evmKeyRingReferenceWalletId?: string; + lightningProvider?: 'amboss' | 'voltage'; /** Optional WebAuthn PRF-based encryption info. When provided, the user private key is additionally encrypted with the PRF-derived passphrase so the server can store a WebAuthn-protected copy. */ webauthnInfo?: GenerateWalletWebauthnInfo; encryptionVersion?: EncryptionVersion;