We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d5bad commit 6be1ac2Copy full SHA for 6be1ac2
modules/abstract-lightning/src/codecs/api/balance.ts
@@ -27,6 +27,10 @@ export const ChannelBalance = t.strict(
27
pendingOpenLocalBalance: LndAmount,
28
/** Sum of local remote balances. */
29
pendingOpenRemoteBalance: LndAmount,
30
+ /** Total reserved balance. */
31
+ reservedBalance: LndAmount,
32
+ /** Total spendable balance. */
33
+ spendableBalance: LndAmount,
34
},
35
'ChannelBalance'
36
);
@@ -76,6 +80,8 @@ export const LndGetOffchainBalances = t.strict(
76
80
inboundBalance: BigIntFromString,
77
81
inboundPendingBalance: BigIntFromString,
78
82
inboundUnsettledBalance: BigIntFromString,
83
+ reservedBalance: BigIntFromString,
84
+ spendableBalance: BigIntFromString,
79
85
86
'LndGetOffchainBalances'
87
0 commit comments