You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Initialize a newly created Lightning Network Daemon (LND) for the first time. Returns the updated wallet with the encrypted admin macaroon in the 'coinSpecific' response field.
description: Create the signer macaroon for the watch-only Lightning Network Daemon (LND) node. This macaroon derives from the signer node admin macaroon and is used by the watch-only node to request signatures from the signer node for operational tasks. Returns the updated wallet with the encrypted signer macaroon in the 'coinSpecific' response field.
description: The address types for the change address. Order by preference and BitGo uses the first available. Any subset of 'p2sh', 'p2shP2wsh', 'p2wsh', 'p2tr' or 'p2trMusig2'.
38632
+
LightningCoin:
38633
+
title: Coin
38634
+
description: A lightning coin name.
38635
+
type: string
38636
+
example: lnbtc
38517
38637
CommitmentShare:
38518
38638
type: object
38519
38639
properties:
@@ -39330,6 +39450,27 @@ components:
39330
39450
enum:
39331
39451
- 1
39332
39452
- 2
39453
+
ExpressInitWalletRequest:
39454
+
type: object
39455
+
properties:
39456
+
passphrase:
39457
+
type: string
39458
+
description: Passphrase to encrypt the admin macaroon of the signer node.
39459
+
ExpressUnlockLightningWalletRequest:
39460
+
type: object
39461
+
properties:
39462
+
passphrase:
39463
+
type: string
39464
+
description: Passphrase to decrypt the unlock the node.
39465
+
ExpressGenerateSignerMacaroonRequest:
39466
+
type: object
39467
+
properties:
39468
+
passphrase:
39469
+
type: string
39470
+
description: Passphrase to decrypt the admin macaroon of the signer node.
39471
+
addIpCaveatToMacaroon:
39472
+
type: boolean
39473
+
description: If true, adds an IP caveat to the generated signer macaroon.
39333
39474
ExpressConsolidateAccountRequest:
39334
39475
type: object
39335
39476
properties:
@@ -39745,6 +39886,25 @@ components:
39745
39886
- signed
39746
39887
- signed (suppressed)
39747
39888
- pendingApproval
39889
+
ExpressUnlockLightningWalletResponse:
39890
+
type: object
39891
+
properties:
39892
+
message:
39893
+
type: string
39894
+
example: ok
39895
+
ExpressLightningNodeStateResponse:
39896
+
type: object
39897
+
properties:
39898
+
state:
39899
+
description: Current state of the node
39900
+
type: string
39901
+
enum:
39902
+
- NON_EXISTING
39903
+
- LOCKED
39904
+
- UNLOCKED
39905
+
- RPC_ACTIVE
39906
+
- SERVER_ACTIVE
39907
+
- WAITING_TO_START
39748
39908
ExpressSendConsolidationResponse:
39749
39909
type: object
39750
39910
properties:
@@ -52148,6 +52308,12 @@ components:
52148
52308
type: string
52149
52309
description: |
52150
52310
A 'sequenceId' is a unique and arbitrary wallet identifier applied to transfers and transactions at creation. It is optional but highly recommended. With a 'sequenceId' you can easily reference transfers and transactions—for example, to safely retry sending. Because the system only confirms one send request per 'sequenceId' (and fails all subsequent attempts), you can retry sending without the risk of double spending. The 'sequenceId' is only visible to users on the wallet and is not shared publicly.
0 commit comments