Skip to content

Commit 3069562

Browse files
committed
[TS] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
1 parent 02e5b35 commit 3069562

File tree

651 files changed

+39244
-22088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

651 files changed

+39244
-22088
lines changed

ts/bindings.c

+9,655-8,161
Large diffs are not rendered by default.

ts/bindings.c.body

+9,655-8,161
Large diffs are not rendered by default.

ts/bindings.mts

+2,524-1,291
Large diffs are not rendered by default.

ts/index.mts

+17-7
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ export * from './enums/Currency.mjs';
2525
export * from './enums/Direction.mjs';
2626
export * from './enums/HTLCClaim.mjs';
2727
export * from './enums/IOError.mjs';
28+
export * from './enums/InboundHTLCStateDetails.mjs';
2829
export * from './enums/Level.mjs';
2930
export * from './enums/Network.mjs';
31+
export * from './enums/OutboundHTLCStateDetails.mjs';
3032
export * from './enums/PaymentFailureReason.mjs';
3133
export * from './enums/Recipient.mjs';
3234
export * from './enums/RetryableSendFailure.mjs';
@@ -268,7 +270,6 @@ export * from './structs/PaymentContext.mjs';
268270
export * from './structs/Option_PaymentContextZ.mjs';
269271
export * from './structs/TwoTuple_u64u16Z.mjs';
270272
export * from './structs/Option_C2Tuple_u64u16ZZ.mjs';
271-
export * from './structs/Option_ChannelShutdownStateZ.mjs';
272273
export * from './structs/Result_ChannelIdAPIErrorZ.mjs';
273274
export * from './structs/RecentPaymentDetails.mjs';
274275
export * from './structs/PaymentSendFailure.mjs';
@@ -292,11 +293,6 @@ export * from './structs/OffersMessage.mjs';
292293
export * from './structs/Option_OffersMessageZ.mjs';
293294
export * from './structs/Destination.mjs';
294295
export * from './structs/ThreeTuple_OffersMessageDestinationBlindedPathZ.mjs';
295-
export * from './structs/CounterpartyForwardingInfo.mjs';
296-
export * from './structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
297-
export * from './structs/ChannelCounterparty.mjs';
298-
export * from './structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
299-
export * from './structs/Result_ChannelDetailsDecodeErrorZ.mjs';
300296
export * from './structs/PhantomRouteHints.mjs';
301297
export * from './structs/Result_PhantomRouteHintsDecodeErrorZ.mjs';
302298
export * from './structs/BlindedForward.mjs';
@@ -307,7 +303,6 @@ export * from './structs/PendingHTLCRouting.mjs';
307303
export * from './structs/Result_PendingHTLCRoutingDecodeErrorZ.mjs';
308304
export * from './structs/Result_PendingHTLCInfoDecodeErrorZ.mjs';
309305
export * from './structs/Result_BlindedFailureDecodeErrorZ.mjs';
310-
export * from './structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
311306
export * from './structs/ChannelMonitor.mjs';
312307
export * from './structs/ChannelMonitorUpdate.mjs';
313308
export * from './structs/Watch.mjs';
@@ -448,6 +443,21 @@ export * from './structs/Result_GossipTimestampFilterDecodeErrorZ.mjs';
448443
export * from './structs/Bolt11Invoice.mjs';
449444
export * from './structs/SignOrCreationError.mjs';
450445
export * from './structs/Result_Bolt11InvoiceSignOrCreationErrorZ.mjs';
446+
export * from './structs/Option_InboundHTLCStateDetailsZ.mjs';
447+
export * from './structs/Result_COption_InboundHTLCStateDetailsZDecodeErrorZ.mjs';
448+
export * from './structs/InboundHTLCDetails.mjs';
449+
export * from './structs/Result_InboundHTLCDetailsDecodeErrorZ.mjs';
450+
export * from './structs/Option_OutboundHTLCStateDetailsZ.mjs';
451+
export * from './structs/Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ.mjs';
452+
export * from './structs/OutboundHTLCDetails.mjs';
453+
export * from './structs/Result_OutboundHTLCDetailsDecodeErrorZ.mjs';
454+
export * from './structs/CounterpartyForwardingInfo.mjs';
455+
export * from './structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
456+
export * from './structs/ChannelCounterparty.mjs';
457+
export * from './structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
458+
export * from './structs/Option_ChannelShutdownStateZ.mjs';
459+
export * from './structs/Result_ChannelDetailsDecodeErrorZ.mjs';
460+
export * from './structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
451461
export * from './structs/Result_OffersMessageDecodeErrorZ.mjs';
452462
export * from './structs/Option_HTLCClaimZ.mjs';
453463
export * from './structs/CounterpartyCommitmentSecrets.mjs';

ts/structs/APIError.mts

+17-7
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import { Currency } from '../enums/Currency.mjs';
1414
import { Direction } from '../enums/Direction.mjs';
1515
import { HTLCClaim } from '../enums/HTLCClaim.mjs';
1616
import { IOError } from '../enums/IOError.mjs';
17+
import { InboundHTLCStateDetails } from '../enums/InboundHTLCStateDetails.mjs';
1718
import { Level } from '../enums/Level.mjs';
1819
import { Network } from '../enums/Network.mjs';
20+
import { OutboundHTLCStateDetails } from '../enums/OutboundHTLCStateDetails.mjs';
1921
import { PaymentFailureReason } from '../enums/PaymentFailureReason.mjs';
2022
import { Recipient } from '../enums/Recipient.mjs';
2123
import { RetryableSendFailure } from '../enums/RetryableSendFailure.mjs';
@@ -256,7 +258,6 @@ import { PaymentContext } from '../structs/PaymentContext.mjs';
256258
import { Option_PaymentContextZ } from '../structs/Option_PaymentContextZ.mjs';
257259
import { TwoTuple_u64u16Z } from '../structs/TwoTuple_u64u16Z.mjs';
258260
import { Option_C2Tuple_u64u16ZZ } from '../structs/Option_C2Tuple_u64u16ZZ.mjs';
259-
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
260261
import { Result_ChannelIdAPIErrorZ } from '../structs/Result_ChannelIdAPIErrorZ.mjs';
261262
import { RecentPaymentDetails } from '../structs/RecentPaymentDetails.mjs';
262263
import { PaymentSendFailure } from '../structs/PaymentSendFailure.mjs';
@@ -280,11 +281,6 @@ import { OffersMessage } from '../structs/OffersMessage.mjs';
280281
import { Option_OffersMessageZ } from '../structs/Option_OffersMessageZ.mjs';
281282
import { Destination } from '../structs/Destination.mjs';
282283
import { ThreeTuple_OffersMessageDestinationBlindedPathZ } from '../structs/ThreeTuple_OffersMessageDestinationBlindedPathZ.mjs';
283-
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
284-
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
285-
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
286-
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
287-
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
288284
import { PhantomRouteHints } from '../structs/PhantomRouteHints.mjs';
289285
import { Result_PhantomRouteHintsDecodeErrorZ } from '../structs/Result_PhantomRouteHintsDecodeErrorZ.mjs';
290286
import { BlindedForward } from '../structs/BlindedForward.mjs';
@@ -295,7 +291,6 @@ import { PendingHTLCRouting } from '../structs/PendingHTLCRouting.mjs';
295291
import { Result_PendingHTLCRoutingDecodeErrorZ } from '../structs/Result_PendingHTLCRoutingDecodeErrorZ.mjs';
296292
import { Result_PendingHTLCInfoDecodeErrorZ } from '../structs/Result_PendingHTLCInfoDecodeErrorZ.mjs';
297293
import { Result_BlindedFailureDecodeErrorZ } from '../structs/Result_BlindedFailureDecodeErrorZ.mjs';
298-
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
299294
import { ChannelMonitor } from '../structs/ChannelMonitor.mjs';
300295
import { ChannelMonitorUpdate } from '../structs/ChannelMonitorUpdate.mjs';
301296
import { Watch, WatchInterface } from '../structs/Watch.mjs';
@@ -436,6 +431,21 @@ import { Result_GossipTimestampFilterDecodeErrorZ } from '../structs/Result_Goss
436431
import { Bolt11Invoice } from '../structs/Bolt11Invoice.mjs';
437432
import { SignOrCreationError } from '../structs/SignOrCreationError.mjs';
438433
import { Result_Bolt11InvoiceSignOrCreationErrorZ } from '../structs/Result_Bolt11InvoiceSignOrCreationErrorZ.mjs';
434+
import { Option_InboundHTLCStateDetailsZ } from '../structs/Option_InboundHTLCStateDetailsZ.mjs';
435+
import { Result_COption_InboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_InboundHTLCStateDetailsZDecodeErrorZ.mjs';
436+
import { InboundHTLCDetails } from '../structs/InboundHTLCDetails.mjs';
437+
import { Result_InboundHTLCDetailsDecodeErrorZ } from '../structs/Result_InboundHTLCDetailsDecodeErrorZ.mjs';
438+
import { Option_OutboundHTLCStateDetailsZ } from '../structs/Option_OutboundHTLCStateDetailsZ.mjs';
439+
import { Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ.mjs';
440+
import { OutboundHTLCDetails } from '../structs/OutboundHTLCDetails.mjs';
441+
import { Result_OutboundHTLCDetailsDecodeErrorZ } from '../structs/Result_OutboundHTLCDetailsDecodeErrorZ.mjs';
442+
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
443+
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
444+
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
445+
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
446+
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
447+
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
448+
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
439449
import { Result_OffersMessageDecodeErrorZ } from '../structs/Result_OffersMessageDecodeErrorZ.mjs';
440450
import { Option_HTLCClaimZ } from '../structs/Option_HTLCClaimZ.mjs';
441451
import { CounterpartyCommitmentSecrets } from '../structs/CounterpartyCommitmentSecrets.mjs';

ts/structs/AcceptChannel.mts

+17-7
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import { Currency } from '../enums/Currency.mjs';
1414
import { Direction } from '../enums/Direction.mjs';
1515
import { HTLCClaim } from '../enums/HTLCClaim.mjs';
1616
import { IOError } from '../enums/IOError.mjs';
17+
import { InboundHTLCStateDetails } from '../enums/InboundHTLCStateDetails.mjs';
1718
import { Level } from '../enums/Level.mjs';
1819
import { Network } from '../enums/Network.mjs';
20+
import { OutboundHTLCStateDetails } from '../enums/OutboundHTLCStateDetails.mjs';
1921
import { PaymentFailureReason } from '../enums/PaymentFailureReason.mjs';
2022
import { Recipient } from '../enums/Recipient.mjs';
2123
import { RetryableSendFailure } from '../enums/RetryableSendFailure.mjs';
@@ -256,7 +258,6 @@ import { PaymentContext } from '../structs/PaymentContext.mjs';
256258
import { Option_PaymentContextZ } from '../structs/Option_PaymentContextZ.mjs';
257259
import { TwoTuple_u64u16Z } from '../structs/TwoTuple_u64u16Z.mjs';
258260
import { Option_C2Tuple_u64u16ZZ } from '../structs/Option_C2Tuple_u64u16ZZ.mjs';
259-
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
260261
import { Result_ChannelIdAPIErrorZ } from '../structs/Result_ChannelIdAPIErrorZ.mjs';
261262
import { RecentPaymentDetails } from '../structs/RecentPaymentDetails.mjs';
262263
import { PaymentSendFailure } from '../structs/PaymentSendFailure.mjs';
@@ -280,11 +281,6 @@ import { OffersMessage } from '../structs/OffersMessage.mjs';
280281
import { Option_OffersMessageZ } from '../structs/Option_OffersMessageZ.mjs';
281282
import { Destination } from '../structs/Destination.mjs';
282283
import { ThreeTuple_OffersMessageDestinationBlindedPathZ } from '../structs/ThreeTuple_OffersMessageDestinationBlindedPathZ.mjs';
283-
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
284-
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
285-
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
286-
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
287-
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
288284
import { PhantomRouteHints } from '../structs/PhantomRouteHints.mjs';
289285
import { Result_PhantomRouteHintsDecodeErrorZ } from '../structs/Result_PhantomRouteHintsDecodeErrorZ.mjs';
290286
import { BlindedForward } from '../structs/BlindedForward.mjs';
@@ -295,7 +291,6 @@ import { PendingHTLCRouting } from '../structs/PendingHTLCRouting.mjs';
295291
import { Result_PendingHTLCRoutingDecodeErrorZ } from '../structs/Result_PendingHTLCRoutingDecodeErrorZ.mjs';
296292
import { Result_PendingHTLCInfoDecodeErrorZ } from '../structs/Result_PendingHTLCInfoDecodeErrorZ.mjs';
297293
import { Result_BlindedFailureDecodeErrorZ } from '../structs/Result_BlindedFailureDecodeErrorZ.mjs';
298-
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
299294
import { ChannelMonitor } from '../structs/ChannelMonitor.mjs';
300295
import { ChannelMonitorUpdate } from '../structs/ChannelMonitorUpdate.mjs';
301296
import { Watch, WatchInterface } from '../structs/Watch.mjs';
@@ -436,6 +431,21 @@ import { Result_GossipTimestampFilterDecodeErrorZ } from '../structs/Result_Goss
436431
import { Bolt11Invoice } from '../structs/Bolt11Invoice.mjs';
437432
import { SignOrCreationError } from '../structs/SignOrCreationError.mjs';
438433
import { Result_Bolt11InvoiceSignOrCreationErrorZ } from '../structs/Result_Bolt11InvoiceSignOrCreationErrorZ.mjs';
434+
import { Option_InboundHTLCStateDetailsZ } from '../structs/Option_InboundHTLCStateDetailsZ.mjs';
435+
import { Result_COption_InboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_InboundHTLCStateDetailsZDecodeErrorZ.mjs';
436+
import { InboundHTLCDetails } from '../structs/InboundHTLCDetails.mjs';
437+
import { Result_InboundHTLCDetailsDecodeErrorZ } from '../structs/Result_InboundHTLCDetailsDecodeErrorZ.mjs';
438+
import { Option_OutboundHTLCStateDetailsZ } from '../structs/Option_OutboundHTLCStateDetailsZ.mjs';
439+
import { Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ.mjs';
440+
import { OutboundHTLCDetails } from '../structs/OutboundHTLCDetails.mjs';
441+
import { Result_OutboundHTLCDetailsDecodeErrorZ } from '../structs/Result_OutboundHTLCDetailsDecodeErrorZ.mjs';
442+
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
443+
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
444+
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
445+
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
446+
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
447+
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
448+
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
439449
import { Result_OffersMessageDecodeErrorZ } from '../structs/Result_OffersMessageDecodeErrorZ.mjs';
440450
import { Option_HTLCClaimZ } from '../structs/Option_HTLCClaimZ.mjs';
441451
import { CounterpartyCommitmentSecrets } from '../structs/CounterpartyCommitmentSecrets.mjs';

ts/structs/AcceptChannelV2.mts

+17-7
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ import { Currency } from '../enums/Currency.mjs';
1414
import { Direction } from '../enums/Direction.mjs';
1515
import { HTLCClaim } from '../enums/HTLCClaim.mjs';
1616
import { IOError } from '../enums/IOError.mjs';
17+
import { InboundHTLCStateDetails } from '../enums/InboundHTLCStateDetails.mjs';
1718
import { Level } from '../enums/Level.mjs';
1819
import { Network } from '../enums/Network.mjs';
20+
import { OutboundHTLCStateDetails } from '../enums/OutboundHTLCStateDetails.mjs';
1921
import { PaymentFailureReason } from '../enums/PaymentFailureReason.mjs';
2022
import { Recipient } from '../enums/Recipient.mjs';
2123
import { RetryableSendFailure } from '../enums/RetryableSendFailure.mjs';
@@ -256,7 +258,6 @@ import { PaymentContext } from '../structs/PaymentContext.mjs';
256258
import { Option_PaymentContextZ } from '../structs/Option_PaymentContextZ.mjs';
257259
import { TwoTuple_u64u16Z } from '../structs/TwoTuple_u64u16Z.mjs';
258260
import { Option_C2Tuple_u64u16ZZ } from '../structs/Option_C2Tuple_u64u16ZZ.mjs';
259-
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
260261
import { Result_ChannelIdAPIErrorZ } from '../structs/Result_ChannelIdAPIErrorZ.mjs';
261262
import { RecentPaymentDetails } from '../structs/RecentPaymentDetails.mjs';
262263
import { PaymentSendFailure } from '../structs/PaymentSendFailure.mjs';
@@ -280,11 +281,6 @@ import { OffersMessage } from '../structs/OffersMessage.mjs';
280281
import { Option_OffersMessageZ } from '../structs/Option_OffersMessageZ.mjs';
281282
import { Destination } from '../structs/Destination.mjs';
282283
import { ThreeTuple_OffersMessageDestinationBlindedPathZ } from '../structs/ThreeTuple_OffersMessageDestinationBlindedPathZ.mjs';
283-
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
284-
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
285-
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
286-
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
287-
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
288284
import { PhantomRouteHints } from '../structs/PhantomRouteHints.mjs';
289285
import { Result_PhantomRouteHintsDecodeErrorZ } from '../structs/Result_PhantomRouteHintsDecodeErrorZ.mjs';
290286
import { BlindedForward } from '../structs/BlindedForward.mjs';
@@ -295,7 +291,6 @@ import { PendingHTLCRouting } from '../structs/PendingHTLCRouting.mjs';
295291
import { Result_PendingHTLCRoutingDecodeErrorZ } from '../structs/Result_PendingHTLCRoutingDecodeErrorZ.mjs';
296292
import { Result_PendingHTLCInfoDecodeErrorZ } from '../structs/Result_PendingHTLCInfoDecodeErrorZ.mjs';
297293
import { Result_BlindedFailureDecodeErrorZ } from '../structs/Result_BlindedFailureDecodeErrorZ.mjs';
298-
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
299294
import { ChannelMonitor } from '../structs/ChannelMonitor.mjs';
300295
import { ChannelMonitorUpdate } from '../structs/ChannelMonitorUpdate.mjs';
301296
import { Watch, WatchInterface } from '../structs/Watch.mjs';
@@ -436,6 +431,21 @@ import { Result_GossipTimestampFilterDecodeErrorZ } from '../structs/Result_Goss
436431
import { Bolt11Invoice } from '../structs/Bolt11Invoice.mjs';
437432
import { SignOrCreationError } from '../structs/SignOrCreationError.mjs';
438433
import { Result_Bolt11InvoiceSignOrCreationErrorZ } from '../structs/Result_Bolt11InvoiceSignOrCreationErrorZ.mjs';
434+
import { Option_InboundHTLCStateDetailsZ } from '../structs/Option_InboundHTLCStateDetailsZ.mjs';
435+
import { Result_COption_InboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_InboundHTLCStateDetailsZDecodeErrorZ.mjs';
436+
import { InboundHTLCDetails } from '../structs/InboundHTLCDetails.mjs';
437+
import { Result_InboundHTLCDetailsDecodeErrorZ } from '../structs/Result_InboundHTLCDetailsDecodeErrorZ.mjs';
438+
import { Option_OutboundHTLCStateDetailsZ } from '../structs/Option_OutboundHTLCStateDetailsZ.mjs';
439+
import { Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ } from '../structs/Result_COption_OutboundHTLCStateDetailsZDecodeErrorZ.mjs';
440+
import { OutboundHTLCDetails } from '../structs/OutboundHTLCDetails.mjs';
441+
import { Result_OutboundHTLCDetailsDecodeErrorZ } from '../structs/Result_OutboundHTLCDetailsDecodeErrorZ.mjs';
442+
import { CounterpartyForwardingInfo } from '../structs/CounterpartyForwardingInfo.mjs';
443+
import { Result_CounterpartyForwardingInfoDecodeErrorZ } from '../structs/Result_CounterpartyForwardingInfoDecodeErrorZ.mjs';
444+
import { ChannelCounterparty } from '../structs/ChannelCounterparty.mjs';
445+
import { Result_ChannelCounterpartyDecodeErrorZ } from '../structs/Result_ChannelCounterpartyDecodeErrorZ.mjs';
446+
import { Option_ChannelShutdownStateZ } from '../structs/Option_ChannelShutdownStateZ.mjs';
447+
import { Result_ChannelDetailsDecodeErrorZ } from '../structs/Result_ChannelDetailsDecodeErrorZ.mjs';
448+
import { Result_ChannelShutdownStateDecodeErrorZ } from '../structs/Result_ChannelShutdownStateDecodeErrorZ.mjs';
439449
import { Result_OffersMessageDecodeErrorZ } from '../structs/Result_OffersMessageDecodeErrorZ.mjs';
440450
import { Option_HTLCClaimZ } from '../structs/Option_HTLCClaimZ.mjs';
441451
import { CounterpartyCommitmentSecrets } from '../structs/CounterpartyCommitmentSecrets.mjs';

0 commit comments

Comments
 (0)