Switch 32-bit platforms to using 64-bit "pointers"
[ldk-java] / ts / bindings.mts
1
2 import * as version from './version.mjs';
3 import { UInt5, WitnessVersion } from './structs/CommonBase.mjs';
4
5 const imports: any = {};
6 imports.env = {};
7
8 var js_objs: Array<WeakRef<object>> = [];
9 var js_invoke: Function;
10 var getRandomValues: Function;
11
12 imports.wasi_snapshot_preview1 = {
13         "fd_write": (fd: number, iovec_array_ptr: number, iovec_array_len: number, bytes_written_ptr: number) => {
14                 // This should generally only be used to print panic messages
15                 const ptr_len_view = new Uint32Array(wasm.memory.buffer, iovec_array_ptr, iovec_array_len * 2);
16                 var bytes_written = 0;
17                 for (var i = 0; i < iovec_array_len; i++) {
18                         const bytes_view = new Uint8Array(wasm.memory.buffer, ptr_len_view[i*2], ptr_len_view[i*2+1]);
19                         console.log("[fd " + fd + "]: " + String.fromCharCode(...bytes_view));
20                         bytes_written += ptr_len_view[i*2+1];
21                 }
22                 const written_view = new Uint32Array(wasm.memory.buffer, bytes_written_ptr, 1);
23                 written_view[0] = bytes_written;
24                 return 0;
25         },
26         "fd_close": (_fd: number) => {
27                 // This is not generally called, but may be referenced in debug builds
28                 console.log("wasi_snapshot_preview1:fd_close");
29                 return 58; // Not Supported
30         },
31         "fd_seek": (_fd: number, _offset: bigint, _whence: number, _new_offset: number) => {
32                 // This is not generally called, but may be referenced in debug builds
33                 console.log("wasi_snapshot_preview1:fd_seek");
34                 return 58; // Not Supported
35         },
36         "random_get": (buf_ptr: number, buf_len: number) => {
37                 const buf = new Uint8Array(wasm.memory.buffer, buf_ptr, buf_len);
38                 getRandomValues(buf);
39                 return 0;
40         },
41         "environ_sizes_get": (environ_var_count_ptr: number, environ_len_ptr: number) => {
42                 // This is called before fd_write to format + print panic messages
43                 const out_count_view = new Uint32Array(wasm.memory.buffer, environ_var_count_ptr, 1);
44                 out_count_view[0] = 0;
45                 const out_len_view = new Uint32Array(wasm.memory.buffer, environ_len_ptr, 1);
46                 out_len_view[0] = 0;
47                 return 0;
48         },
49         "environ_get": (environ_ptr: number, environ_buf_ptr: number) => {
50                 // This is called before fd_write to format + print panic messages,
51                 // but only if we have variables in environ_sizes_get, so shouldn't ever actually happen!
52                 console.log("wasi_snapshot_preview1:environ_get");
53                 return 58; // Note supported - we said there were 0 environment entries!
54         },
55         "proc_exit" : () => {
56                 console.log("wasi_snapshot_preview1:proc_exit");
57         },
58 };
59
60 var wasm: any = null;
61 let isWasmInitialized: boolean = false;
62
63 async function finishInitializeWasm(wasmInstance: WebAssembly.Instance) {
64         if (typeof crypto === "undefined") {
65                 var crypto_import = (await import('crypto')).webcrypto;
66                 getRandomValues = crypto_import.getRandomValues.bind(crypto_import);
67         } else {
68                 getRandomValues = crypto.getRandomValues.bind(crypto);
69         }
70
71         wasm = wasmInstance.exports;
72         if (!wasm.test_bigint_pass_deadbeef0badf00d(BigInt("0xdeadbeef0badf00d"))) {
73                 throw new Error("Currently need BigInt-as-u64 support, try ----experimental-wasm-bigint");
74         }
75
76         if (decodeString(wasm.TS_get_lib_version_string()) !== version.get_ldk_java_bindings_version())
77                 throw new Error("Compiled LDK library and LDK class files do not match");
78         // Fetching the LDK versions from C also checks that the header and binaries match
79         const c_bindings_ver: number = wasm.TS_get_ldk_c_bindings_version();
80         const ldk_ver: number = wasm.TS_get_ldk_version();
81         if (c_bindings_ver == 0)
82                 throw new Error("LDK version did not match the header we built against");
83         if (ldk_ver == 0)
84                 throw new Error("LDK C bindings version did not match the header we built against");
85         const c_bindings_version: string = decodeString(c_bindings_ver)
86         const ldk_version: string = decodeString(ldk_ver);
87         console.log("Loaded LDK-Java Bindings with LDK " + ldk_version + " and LDK-C-Bindings " + c_bindings_version);
88
89         isWasmInitialized = true;
90 }
91
92 const fn_list = ["uuuuuu", "buuuuu", "bbbbbb", "ubuuuu", "uubuuu"];
93
94 /* @internal */
95 export async function initializeWasmFromUint8Array(wasmBinary: Uint8Array) {
96         for (const fn of fn_list) { imports.env["js_invoke_function_" + fn] = js_invoke; }
97         const { instance: wasmInstance } = await WebAssembly.instantiate(wasmBinary, imports);
98         await finishInitializeWasm(wasmInstance);
99 }
100
101 /* @internal */
102 export async function initializeWasmFetch(uri: string) {
103         for (const fn of fn_list) { imports.env["js_invoke_function_" + fn] = js_invoke; }
104         const stream = fetch(uri);
105         const { instance: wasmInstance } = await WebAssembly.instantiateStreaming(stream, imports);
106         await finishInitializeWasm(wasmInstance);
107 }
108 // WASM CODEC
109
110 /* @internal */
111 export function uint5ArrToBytes(inputArray: Array<UInt5>): Uint8Array {
112         const arr = new Uint8Array(inputArray.length);
113         for (var i = 0; i < inputArray.length; i++) {
114                 arr[i] = inputArray[i].getVal();
115         }
116         return arr;
117 }
118
119 /* @internal */
120 export function WitnessVersionArrToBytes(inputArray: Array<WitnessVersion>): Uint8Array {
121         const arr = new Uint8Array(inputArray.length);
122         for (var i = 0; i < inputArray.length; i++) {
123                 arr[i] = inputArray[i].getVal();
124         }
125         return arr;
126 }
127
128
129
130 /* @internal */
131 export function encodeUint8Array (inputArray: Uint8Array): number {
132         const cArrayPointer = wasm.TS_malloc(inputArray.length + 8);
133         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
134         arrayLengthView[0] = BigInt(inputArray.length);
135         const arrayMemoryView = new Uint8Array(wasm.memory.buffer, cArrayPointer + 8, inputArray.length);
136         arrayMemoryView.set(inputArray);
137         return cArrayPointer;
138 }
139 /* @internal */
140 export function encodeUint32Array (inputArray: Uint32Array|Array<number>): number {
141         const cArrayPointer = wasm.TS_malloc((inputArray.length + 2) * 4);
142         const arrayLengthView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
143         arrayLengthView[0] = BigInt(inputArray.length);
144         const arrayMemoryView = new Uint32Array(wasm.memory.buffer, cArrayPointer + 8, inputArray.length);
145         arrayMemoryView.set(inputArray);
146         return cArrayPointer;
147 }
148 /* @internal */
149 export function encodeUint64Array (inputArray: BigUint64Array|Array<bigint>): number {
150         const cArrayPointer = wasm.TS_malloc((inputArray.length + 1) * 8);
151         const arrayMemoryView = new BigUint64Array(wasm.memory.buffer, cArrayPointer, 1);
152         arrayMemoryView.set(inputArray, 1);
153         arrayMemoryView[0] = BigInt(inputArray.length);
154         return cArrayPointer;
155 }
156
157 /* @internal */
158 export function check_arr_len(arr: Uint8Array, len: number): Uint8Array {
159         if (arr.length != len) { throw new Error("Expected array of length " + len + " got " + arr.length); }
160         return arr;
161 }
162
163 /* @internal */
164 export function getArrayLength(arrayPointer: number): number {
165         const arraySizeViewer = new BigUint64Array(wasm.memory.buffer, arrayPointer, 1);
166         const len = arraySizeViewer[0];
167         if (len >= (2n ** 32n)) throw new Error("Bogus Array Size");
168         return Number(len % (2n ** 32n));
169 }
170 /* @internal */
171 export function decodeUint8Array (arrayPointer: number, free = true): Uint8Array {
172         const arraySize = getArrayLength(arrayPointer);
173         const actualArrayViewer = new Uint8Array(wasm.memory.buffer, arrayPointer + 8, arraySize);
174         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
175         // will free the underlying memory when it becomes unreachable instead of copying here.
176         // Note that doing so may have edge-case interactions with memory resizing (invalidating the buffer).
177         const actualArray = actualArrayViewer.slice(0, arraySize);
178         if (free) {
179                 wasm.TS_free(arrayPointer);
180         }
181         return actualArray;
182 }
183 const decodeUint32Array = (arrayPointer: number, free = true) => {
184         const arraySize = getArrayLength(arrayPointer);
185         const actualArrayViewer = new Uint32Array(
186                 wasm.memory.buffer, // value
187                 arrayPointer + 8, // offset (ignoring length bytes)
188                 arraySize // uint32 count
189         );
190         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
191         // will free the underlying memory when it becomes unreachable instead of copying here.
192         const actualArray = actualArrayViewer.slice(0, arraySize);
193         if (free) {
194                 wasm.TS_free(arrayPointer);
195         }
196         return actualArray;
197 }
198 /* @internal */
199 export function decodeUint64Array (arrayPointer: number, free = true): bigint[] {
200         const arraySize = getArrayLength(arrayPointer);
201         const actualArrayViewer = new BigUint64Array(
202                 wasm.memory.buffer, // value
203                 arrayPointer + 8, // offset (ignoring length bytes)
204                 arraySize // uint32 count
205         );
206         // Clone the contents, TODO: In the future we should wrap the Viewer in a class that
207         // will free the underlying memory when it becomes unreachable instead of copying here.
208         const actualArray = new Array(arraySize);
209         for (var i = 0; i < arraySize; i++) actualArray[i] = actualArrayViewer[i];
210         if (free) {
211                 wasm.TS_free(arrayPointer);
212         }
213         return actualArray;
214 }
215
216 export function freeWasmMemory(pointer: number) { wasm.TS_free(pointer); }
217
218 /* @internal */
219 export function getU32ArrayElem(arrayPointer: number, idx: number): number {
220         const actualArrayViewer = new Uint32Array(wasm.memory.buffer, arrayPointer + 8, idx + 1);
221         return actualArrayViewer[idx];
222 }
223
224 /* @internal */
225 export function getU8ArrayElem(arrayPointer: number, idx: number): number {
226         const actualArrayViewer = new Uint8Array(wasm.memory.buffer, arrayPointer + 8, idx + 1);
227         return actualArrayViewer[idx];
228 }
229
230
231 /* @internal */
232 export function encodeString(str: string): number {
233         const charArray = new TextEncoder().encode(str);
234         return encodeUint8Array(charArray);
235 }
236
237 /* @internal */
238 export function decodeString(stringPointer: number, free = true): string {
239         const arraySize = getArrayLength(stringPointer);
240         const memoryView = new Uint8Array(wasm.memory.buffer, stringPointer + 8, arraySize);
241         const result = new TextDecoder("utf-8").decode(memoryView);
242
243         if (free) {
244                 wasm.TS_free(stringPointer);
245         }
246
247         return result;
248 }
249
250 /* @internal */ export function getRemainingAllocationCount(): number { return 0; }
251 /* @internal */ export function debugPrintRemainingAllocs() { }
252
253 /**
254  * An error when accessing the chain via [`Access`].
255  */
256 export enum AccessError {
257         /**
258          * The requested chain is unknown.
259          */
260         LDKAccessError_UnknownChain,
261         /**
262          * The requested transaction doesn't exist or hasn't confirmed.
263          */
264         LDKAccessError_UnknownTx,
265         
266 }
267
268 /**
269  * An enum which can either contain a  or not
270  */
271 export enum COption_NoneZ {
272         /**
273          * When we're in this state, this COption_NoneZ contains a
274          */
275         LDKCOption_NoneZ_Some,
276         /**
277          * When we're in this state, this COption_NoneZ contains nothing
278          */
279         LDKCOption_NoneZ_None,
280         
281 }
282
283 /**
284  * An error enum representing a failure to persist a channel monitor update.
285  */
286 export enum ChannelMonitorUpdateErr {
287         /**
288          * Used to indicate a temporary failure (eg connection to a watchtower or remote backup of
289         our state failed, but is expected to succeed at some point in the future).
290         
291         Such a failure will \"freeze\" a channel, preventing us from revoking old states or
292         submitting new commitment transactions to the counterparty. Once the update(s) that failed
293         have been successfully applied, a [`MonitorEvent::UpdateCompleted`] event should be returned
294         via [`Watch::release_pending_monitor_events`] which will then restore the channel to an
295         operational state.
296         
297         Note that a given ChannelManager will *never* re-generate a given ChannelMonitorUpdate. If
298         you return a TemporaryFailure you must ensure that it is written to disk safely before
299         writing out the latest ChannelManager state.
300         
301         Even when a channel has been \"frozen\" updates to the ChannelMonitor can continue to occur
302         (eg if an inbound HTLC which we forwarded was claimed upstream resulting in us attempting
303         to claim it on this channel) and those updates must be applied wherever they can be. At
304         least one such updated ChannelMonitor must be persisted otherwise PermanentFailure should
305         be returned to get things on-chain ASAP using only the in-memory copy. Obviously updates to
306         the channel which would invalidate previous ChannelMonitors are not made when a channel has
307         been \"frozen\".
308         
309         Note that even if updates made after TemporaryFailure succeed you must still provide a
310         [`MonitorEvent::UpdateCompleted`] to ensure you have the latest monitor and re-enable
311         normal channel operation. Note that this is normally generated through a call to
312         [`ChainMonitor::channel_monitor_updated`].
313         
314         Note that the update being processed here will not be replayed for you when you return a
315         [`MonitorEvent::UpdateCompleted`] event via [`Watch::release_pending_monitor_events`], so
316         you must store the update itself on your own local disk prior to returning a
317         TemporaryFailure. You may, of course, employ a journaling approach, storing only the
318         ChannelMonitorUpdate on disk without updating the monitor itself, replaying the journal at
319         reload-time.
320         
321         For deployments where a copy of ChannelMonitors and other local state are backed up in a
322         remote location (with local copies persisted immediately), it is anticipated that all
323         updates will return TemporaryFailure until the remote copies could be updated.
324         
325         [`ChainMonitor::channel_monitor_updated`]: chainmonitor::ChainMonitor::channel_monitor_updated
326          */
327         LDKChannelMonitorUpdateErr_TemporaryFailure,
328         /**
329          * Used to indicate no further channel monitor updates will be allowed (eg we've moved on to a
330         different watchtower and cannot update with all watchtowers that were previously informed
331         of this channel).
332         
333         At reception of this error, ChannelManager will force-close the channel and return at
334         least a final ChannelMonitorUpdate::ChannelForceClosed which must be delivered to at
335         least one ChannelMonitor copy. Revocation secret MUST NOT be released and offchain channel
336         update must be rejected.
337         
338         This failure may also signal a failure to update the local persisted copy of one of
339         the channel monitor instance.
340         
341         Note that even when you fail a holder commitment transaction update, you must store the
342         update to ensure you can claim from it in case of a duplicate copy of this ChannelMonitor
343         broadcasts it (e.g distributed channel-monitor deployment)
344         
345         In case of distributed watchtowers deployment, the new version must be written to disk, as
346         state may have been stored but rejected due to a block forcing a commitment broadcast. This
347         storage is used to claim outputs of rejected state confirmed onchain by another watchtower,
348         lagging behind on block processing.
349          */
350         LDKChannelMonitorUpdateErr_PermanentFailure,
351         
352 }
353
354 /**
355  * An enum that represents the speed at which we want a transaction to confirm used for feerate
356  * estimation.
357  */
358 export enum ConfirmationTarget {
359         /**
360          * We are happy with this transaction confirming slowly when feerate drops some.
361          */
362         LDKConfirmationTarget_Background,
363         /**
364          * We'd like this transaction to confirm without major delay, but 12-18 blocks is fine.
365          */
366         LDKConfirmationTarget_Normal,
367         /**
368          * We'd like this transaction to confirm in the next few blocks.
369          */
370         LDKConfirmationTarget_HighPriority,
371         
372 }
373
374 /**
375  * Errors that may occur when constructing a new `RawInvoice` or `Invoice`
376  */
377 export enum CreationError {
378         /**
379          * The supplied description string was longer than 639 __bytes__ (see [`Description::new(...)`](./struct.Description.html#method.new))
380          */
381         LDKCreationError_DescriptionTooLong,
382         /**
383          * The specified route has too many hops and can't be encoded
384          */
385         LDKCreationError_RouteTooLong,
386         /**
387          * The Unix timestamp of the supplied date is less than zero or greater than 35-bits
388          */
389         LDKCreationError_TimestampOutOfBounds,
390         /**
391          * The supplied millisatoshi amount was greater than the total bitcoin supply.
392          */
393         LDKCreationError_InvalidAmount,
394         /**
395          * Route hints were required for this invoice and were missing. Applies to
396         [phantom invoices].
397         
398         [phantom invoices]: crate::utils::create_phantom_invoice
399          */
400         LDKCreationError_MissingRouteHints,
401         
402 }
403
404 /**
405  * Enum representing the crypto currencies (or networks) supported by this library
406  */
407 export enum Currency {
408         /**
409          * Bitcoin mainnet
410          */
411         LDKCurrency_Bitcoin,
412         /**
413          * Bitcoin testnet
414          */
415         LDKCurrency_BitcoinTestnet,
416         /**
417          * Bitcoin regtest
418          */
419         LDKCurrency_Regtest,
420         /**
421          * Bitcoin simnet
422          */
423         LDKCurrency_Simnet,
424         /**
425          * Bitcoin signet
426          */
427         LDKCurrency_Signet,
428         
429 }
430
431 /**
432  * Represents an IO Error. Note that some information is lost in the conversion from Rust.
433  */
434 export enum IOError {
435                 LDKIOError_NotFound,
436                 LDKIOError_PermissionDenied,
437                 LDKIOError_ConnectionRefused,
438                 LDKIOError_ConnectionReset,
439                 LDKIOError_ConnectionAborted,
440                 LDKIOError_NotConnected,
441                 LDKIOError_AddrInUse,
442                 LDKIOError_AddrNotAvailable,
443                 LDKIOError_BrokenPipe,
444                 LDKIOError_AlreadyExists,
445                 LDKIOError_WouldBlock,
446                 LDKIOError_InvalidInput,
447                 LDKIOError_InvalidData,
448                 LDKIOError_TimedOut,
449                 LDKIOError_WriteZero,
450                 LDKIOError_Interrupted,
451                 LDKIOError_Other,
452                 LDKIOError_UnexpectedEof,
453         
454 }
455
456 /**
457  * An enum representing the available verbosity levels of the logger.
458  */
459 export enum Level {
460         /**
461          * Designates extremely verbose information, including gossip-induced messages
462          */
463         LDKLevel_Gossip,
464         /**
465          * Designates very low priority, often extremely verbose, information
466          */
467         LDKLevel_Trace,
468         /**
469          * Designates lower priority information
470          */
471         LDKLevel_Debug,
472         /**
473          * Designates useful information
474          */
475         LDKLevel_Info,
476         /**
477          * Designates hazardous situations
478          */
479         LDKLevel_Warn,
480         /**
481          * Designates very serious errors
482          */
483         LDKLevel_Error,
484         
485 }
486
487 /**
488  * An enum representing the possible Bitcoin or test networks which we can run on
489  */
490 export enum Network {
491         /**
492          * The main Bitcoin blockchain.
493          */
494         LDKNetwork_Bitcoin,
495         /**
496          * The testnet3 blockchain.
497          */
498         LDKNetwork_Testnet,
499         /**
500          * A local test blockchain.
501          */
502         LDKNetwork_Regtest,
503         /**
504          * A blockchain on which blocks are signed instead of mined.
505          */
506         LDKNetwork_Signet,
507         
508 }
509
510 /**
511  * Specifies the recipient of an invoice, to indicate to [`KeysInterface::sign_invoice`] what node
512  * secret key should be used to sign the invoice.
513  */
514 export enum Recipient {
515         /**
516          * The invoice should be signed with the local node secret key.
517          */
518         LDKRecipient_Node,
519         /**
520          * The invoice should be signed with the phantom node secret key. This secret key must be the
521         same for all nodes participating in the [phantom node payment].
522         
523         [phantom node payment]: PhantomKeysManager
524          */
525         LDKRecipient_PhantomNode,
526         
527 }
528
529 /**
530  * Represents an error returned from libsecp256k1 during validation of some secp256k1 data
531  */
532 export enum Secp256k1Error {
533         /**
534          * Signature failed verification
535          */
536         LDKSecp256k1Error_IncorrectSignature,
537         /**
538          * Badly sized message ("messages" are actually fixed-sized digests; see the MESSAGE_SIZE constant)
539          */
540         LDKSecp256k1Error_InvalidMessage,
541         /**
542          * Bad public key
543          */
544         LDKSecp256k1Error_InvalidPublicKey,
545         /**
546          * Bad signature
547          */
548         LDKSecp256k1Error_InvalidSignature,
549         /**
550          * Bad secret key
551          */
552         LDKSecp256k1Error_InvalidSecretKey,
553         /**
554          * Bad shared secret.
555          */
556         LDKSecp256k1Error_InvalidSharedSecret,
557         /**
558          * Bad recovery id
559          */
560         LDKSecp256k1Error_InvalidRecoveryId,
561         /**
562          * Invalid tweak for add_assign or mul_assign
563          */
564         LDKSecp256k1Error_InvalidTweak,
565         /**
566          * Didn't pass enough memory to context creation with preallocated memory
567          */
568         LDKSecp256k1Error_NotEnoughMemory,
569         /**
570          * Bad set of public keys.
571          */
572         LDKSecp256k1Error_InvalidPublicKeySum,
573         /**
574          * The only valid parity values are 0 or 1.
575          */
576         LDKSecp256k1Error_InvalidParityValue,
577         
578 }
579
580 /**
581  * Errors that may occur when converting a `RawInvoice` to an `Invoice`. They relate to the
582  * requirements sections in BOLT #11
583  */
584 export enum SemanticError {
585         /**
586          * The invoice is missing the mandatory payment hash
587          */
588         LDKSemanticError_NoPaymentHash,
589         /**
590          * The invoice has multiple payment hashes which isn't allowed
591          */
592         LDKSemanticError_MultiplePaymentHashes,
593         /**
594          * No description or description hash are part of the invoice
595          */
596         LDKSemanticError_NoDescription,
597         /**
598          * The invoice contains multiple descriptions and/or description hashes which isn't allowed
599          */
600         LDKSemanticError_MultipleDescriptions,
601         /**
602          * The invoice is missing the mandatory payment secret, which all modern lightning nodes
603         should provide.
604          */
605         LDKSemanticError_NoPaymentSecret,
606         /**
607          * The invoice contains multiple payment secrets
608          */
609         LDKSemanticError_MultiplePaymentSecrets,
610         /**
611          * The invoice's features are invalid
612          */
613         LDKSemanticError_InvalidFeatures,
614         /**
615          * The recovery id doesn't fit the signature/pub key
616          */
617         LDKSemanticError_InvalidRecoveryId,
618         /**
619          * The invoice's signature is invalid
620          */
621         LDKSemanticError_InvalidSignature,
622         /**
623          * The invoice's amount was not a whole number of millisatoshis
624          */
625         LDKSemanticError_ImpreciseAmount,
626         
627 }
628
629 /**
630  * SI prefixes for the human readable part
631  */
632 export enum SiPrefix {
633         /**
634          * 10^-3
635          */
636         LDKSiPrefix_Milli,
637         /**
638          * 10^-6
639          */
640         LDKSiPrefix_Micro,
641         /**
642          * 10^-9
643          */
644         LDKSiPrefix_Nano,
645         /**
646          * 10^-12
647          */
648         LDKSiPrefix_Pico,
649         
650 }
651 /* @internal */
652 export class LDKBech32Error {
653         protected constructor() {}
654 }
655 /* @internal */
656 export function LDKBech32Error_ty_from_ptr(ptr: number): number {
657         if(!isWasmInitialized) {
658                 throw new Error("initializeWasm() must be awaited first!");
659         }
660         const nativeResponseValue = wasm.TS_LDKBech32Error_ty_from_ptr(ptr);
661         return nativeResponseValue;
662 }
663 /* @internal */
664 export function LDKBech32Error_InvalidChar_get_invalid_char(ptr: number): number {
665         if(!isWasmInitialized) {
666                 throw new Error("initializeWasm() must be awaited first!");
667         }
668         const nativeResponseValue = wasm.TS_LDKBech32Error_InvalidChar_get_invalid_char(ptr);
669         return nativeResponseValue;
670 }
671 /* @internal */
672 export function LDKBech32Error_InvalidData_get_invalid_data(ptr: number): number {
673         if(!isWasmInitialized) {
674                 throw new Error("initializeWasm() must be awaited first!");
675         }
676         const nativeResponseValue = wasm.TS_LDKBech32Error_InvalidData_get_invalid_data(ptr);
677         return nativeResponseValue;
678 }
679         // struct LDKCVec_u8Z TxOut_get_script_pubkey (struct LDKTxOut* thing)
680 /* @internal */
681 export function TxOut_get_script_pubkey(thing: number): number {
682         if(!isWasmInitialized) {
683                 throw new Error("initializeWasm() must be awaited first!");
684         }
685         const nativeResponseValue = wasm.TS_TxOut_get_script_pubkey(thing);
686         return nativeResponseValue;
687 }
688         // uint64_t TxOut_get_value (struct LDKTxOut* thing)
689 /* @internal */
690 export function TxOut_get_value(thing: number): bigint {
691         if(!isWasmInitialized) {
692                 throw new Error("initializeWasm() must be awaited first!");
693         }
694         const nativeResponseValue = wasm.TS_TxOut_get_value(thing);
695         return nativeResponseValue;
696 }
697         // void CResult_NoneNoneZ_get_ok(LDKCResult_NoneNoneZ *NONNULL_PTR owner);
698 /* @internal */
699 export function CResult_NoneNoneZ_get_ok(owner: number): void {
700         if(!isWasmInitialized) {
701                 throw new Error("initializeWasm() must be awaited first!");
702         }
703         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_get_ok(owner);
704         // debug statements here
705 }
706         // void CResult_NoneNoneZ_get_err(LDKCResult_NoneNoneZ *NONNULL_PTR owner);
707 /* @internal */
708 export function CResult_NoneNoneZ_get_err(owner: number): void {
709         if(!isWasmInitialized) {
710                 throw new Error("initializeWasm() must be awaited first!");
711         }
712         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_get_err(owner);
713         // debug statements here
714 }
715         // struct LDKCounterpartyCommitmentSecrets CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_ok(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR owner);
716 /* @internal */
717 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_ok(owner: number): number {
718         if(!isWasmInitialized) {
719                 throw new Error("initializeWasm() must be awaited first!");
720         }
721         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_ok(owner);
722         return nativeResponseValue;
723 }
724         // struct LDKDecodeError CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_err(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR owner);
725 /* @internal */
726 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_err(owner: number): number {
727         if(!isWasmInitialized) {
728                 throw new Error("initializeWasm() must be awaited first!");
729         }
730         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_get_err(owner);
731         return nativeResponseValue;
732 }
733         // struct LDKSecretKey CResult_SecretKeyErrorZ_get_ok(LDKCResult_SecretKeyErrorZ *NONNULL_PTR owner);
734 /* @internal */
735 export function CResult_SecretKeyErrorZ_get_ok(owner: number): number {
736         if(!isWasmInitialized) {
737                 throw new Error("initializeWasm() must be awaited first!");
738         }
739         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_get_ok(owner);
740         return nativeResponseValue;
741 }
742         // enum LDKSecp256k1Error CResult_SecretKeyErrorZ_get_err(LDKCResult_SecretKeyErrorZ *NONNULL_PTR owner);
743 /* @internal */
744 export function CResult_SecretKeyErrorZ_get_err(owner: number): Secp256k1Error {
745         if(!isWasmInitialized) {
746                 throw new Error("initializeWasm() must be awaited first!");
747         }
748         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_get_err(owner);
749         return nativeResponseValue;
750 }
751         // struct LDKPublicKey CResult_PublicKeyErrorZ_get_ok(LDKCResult_PublicKeyErrorZ *NONNULL_PTR owner);
752 /* @internal */
753 export function CResult_PublicKeyErrorZ_get_ok(owner: number): number {
754         if(!isWasmInitialized) {
755                 throw new Error("initializeWasm() must be awaited first!");
756         }
757         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_get_ok(owner);
758         return nativeResponseValue;
759 }
760         // enum LDKSecp256k1Error CResult_PublicKeyErrorZ_get_err(LDKCResult_PublicKeyErrorZ *NONNULL_PTR owner);
761 /* @internal */
762 export function CResult_PublicKeyErrorZ_get_err(owner: number): Secp256k1Error {
763         if(!isWasmInitialized) {
764                 throw new Error("initializeWasm() must be awaited first!");
765         }
766         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_get_err(owner);
767         return nativeResponseValue;
768 }
769         // struct LDKTxCreationKeys CResult_TxCreationKeysDecodeErrorZ_get_ok(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR owner);
770 /* @internal */
771 export function CResult_TxCreationKeysDecodeErrorZ_get_ok(owner: number): number {
772         if(!isWasmInitialized) {
773                 throw new Error("initializeWasm() must be awaited first!");
774         }
775         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_get_ok(owner);
776         return nativeResponseValue;
777 }
778         // struct LDKDecodeError CResult_TxCreationKeysDecodeErrorZ_get_err(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR owner);
779 /* @internal */
780 export function CResult_TxCreationKeysDecodeErrorZ_get_err(owner: number): number {
781         if(!isWasmInitialized) {
782                 throw new Error("initializeWasm() must be awaited first!");
783         }
784         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_get_err(owner);
785         return nativeResponseValue;
786 }
787         // struct LDKChannelPublicKeys CResult_ChannelPublicKeysDecodeErrorZ_get_ok(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR owner);
788 /* @internal */
789 export function CResult_ChannelPublicKeysDecodeErrorZ_get_ok(owner: number): number {
790         if(!isWasmInitialized) {
791                 throw new Error("initializeWasm() must be awaited first!");
792         }
793         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_get_ok(owner);
794         return nativeResponseValue;
795 }
796         // struct LDKDecodeError CResult_ChannelPublicKeysDecodeErrorZ_get_err(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR owner);
797 /* @internal */
798 export function CResult_ChannelPublicKeysDecodeErrorZ_get_err(owner: number): number {
799         if(!isWasmInitialized) {
800                 throw new Error("initializeWasm() must be awaited first!");
801         }
802         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_get_err(owner);
803         return nativeResponseValue;
804 }
805         // struct LDKTxCreationKeys CResult_TxCreationKeysErrorZ_get_ok(LDKCResult_TxCreationKeysErrorZ *NONNULL_PTR owner);
806 /* @internal */
807 export function CResult_TxCreationKeysErrorZ_get_ok(owner: number): number {
808         if(!isWasmInitialized) {
809                 throw new Error("initializeWasm() must be awaited first!");
810         }
811         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_get_ok(owner);
812         return nativeResponseValue;
813 }
814         // enum LDKSecp256k1Error CResult_TxCreationKeysErrorZ_get_err(LDKCResult_TxCreationKeysErrorZ *NONNULL_PTR owner);
815 /* @internal */
816 export function CResult_TxCreationKeysErrorZ_get_err(owner: number): Secp256k1Error {
817         if(!isWasmInitialized) {
818                 throw new Error("initializeWasm() must be awaited first!");
819         }
820         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_get_err(owner);
821         return nativeResponseValue;
822 }
823 /* @internal */
824 export class LDKCOption_u32Z {
825         protected constructor() {}
826 }
827 /* @internal */
828 export function LDKCOption_u32Z_ty_from_ptr(ptr: number): number {
829         if(!isWasmInitialized) {
830                 throw new Error("initializeWasm() must be awaited first!");
831         }
832         const nativeResponseValue = wasm.TS_LDKCOption_u32Z_ty_from_ptr(ptr);
833         return nativeResponseValue;
834 }
835 /* @internal */
836 export function LDKCOption_u32Z_Some_get_some(ptr: number): number {
837         if(!isWasmInitialized) {
838                 throw new Error("initializeWasm() must be awaited first!");
839         }
840         const nativeResponseValue = wasm.TS_LDKCOption_u32Z_Some_get_some(ptr);
841         return nativeResponseValue;
842 }
843         // struct LDKHTLCOutputInCommitment CResult_HTLCOutputInCommitmentDecodeErrorZ_get_ok(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR owner);
844 /* @internal */
845 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_get_ok(owner: number): number {
846         if(!isWasmInitialized) {
847                 throw new Error("initializeWasm() must be awaited first!");
848         }
849         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_get_ok(owner);
850         return nativeResponseValue;
851 }
852         // struct LDKDecodeError CResult_HTLCOutputInCommitmentDecodeErrorZ_get_err(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR owner);
853 /* @internal */
854 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_get_err(owner: number): number {
855         if(!isWasmInitialized) {
856                 throw new Error("initializeWasm() must be awaited first!");
857         }
858         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_get_err(owner);
859         return nativeResponseValue;
860 }
861         // struct LDKCounterpartyChannelTransactionParameters CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_ok(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
862 /* @internal */
863 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_ok(owner: number): number {
864         if(!isWasmInitialized) {
865                 throw new Error("initializeWasm() must be awaited first!");
866         }
867         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_ok(owner);
868         return nativeResponseValue;
869 }
870         // struct LDKDecodeError CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_err(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
871 /* @internal */
872 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_err(owner: number): number {
873         if(!isWasmInitialized) {
874                 throw new Error("initializeWasm() must be awaited first!");
875         }
876         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_get_err(owner);
877         return nativeResponseValue;
878 }
879         // struct LDKChannelTransactionParameters CResult_ChannelTransactionParametersDecodeErrorZ_get_ok(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
880 /* @internal */
881 export function CResult_ChannelTransactionParametersDecodeErrorZ_get_ok(owner: number): number {
882         if(!isWasmInitialized) {
883                 throw new Error("initializeWasm() must be awaited first!");
884         }
885         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_get_ok(owner);
886         return nativeResponseValue;
887 }
888         // struct LDKDecodeError CResult_ChannelTransactionParametersDecodeErrorZ_get_err(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR owner);
889 /* @internal */
890 export function CResult_ChannelTransactionParametersDecodeErrorZ_get_err(owner: number): number {
891         if(!isWasmInitialized) {
892                 throw new Error("initializeWasm() must be awaited first!");
893         }
894         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_get_err(owner);
895         return nativeResponseValue;
896 }
897         // struct LDKHolderCommitmentTransaction CResult_HolderCommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
898 /* @internal */
899 export function CResult_HolderCommitmentTransactionDecodeErrorZ_get_ok(owner: number): number {
900         if(!isWasmInitialized) {
901                 throw new Error("initializeWasm() must be awaited first!");
902         }
903         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_get_ok(owner);
904         return nativeResponseValue;
905 }
906         // struct LDKDecodeError CResult_HolderCommitmentTransactionDecodeErrorZ_get_err(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
907 /* @internal */
908 export function CResult_HolderCommitmentTransactionDecodeErrorZ_get_err(owner: number): number {
909         if(!isWasmInitialized) {
910                 throw new Error("initializeWasm() must be awaited first!");
911         }
912         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_get_err(owner);
913         return nativeResponseValue;
914 }
915         // struct LDKBuiltCommitmentTransaction CResult_BuiltCommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
916 /* @internal */
917 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_get_ok(owner: number): number {
918         if(!isWasmInitialized) {
919                 throw new Error("initializeWasm() must be awaited first!");
920         }
921         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_get_ok(owner);
922         return nativeResponseValue;
923 }
924         // struct LDKDecodeError CResult_BuiltCommitmentTransactionDecodeErrorZ_get_err(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
925 /* @internal */
926 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_get_err(owner: number): number {
927         if(!isWasmInitialized) {
928                 throw new Error("initializeWasm() must be awaited first!");
929         }
930         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_get_err(owner);
931         return nativeResponseValue;
932 }
933         // struct LDKTrustedClosingTransaction *CResult_TrustedClosingTransactionNoneZ_get_ok(LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR owner);
934 /* @internal */
935 export function CResult_TrustedClosingTransactionNoneZ_get_ok(owner: number): number {
936         if(!isWasmInitialized) {
937                 throw new Error("initializeWasm() must be awaited first!");
938         }
939         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_get_ok(owner);
940         return nativeResponseValue;
941 }
942         // void CResult_TrustedClosingTransactionNoneZ_get_err(LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR owner);
943 /* @internal */
944 export function CResult_TrustedClosingTransactionNoneZ_get_err(owner: number): void {
945         if(!isWasmInitialized) {
946                 throw new Error("initializeWasm() must be awaited first!");
947         }
948         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_get_err(owner);
949         // debug statements here
950 }
951         // struct LDKCommitmentTransaction CResult_CommitmentTransactionDecodeErrorZ_get_ok(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
952 /* @internal */
953 export function CResult_CommitmentTransactionDecodeErrorZ_get_ok(owner: number): number {
954         if(!isWasmInitialized) {
955                 throw new Error("initializeWasm() must be awaited first!");
956         }
957         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_get_ok(owner);
958         return nativeResponseValue;
959 }
960         // struct LDKDecodeError CResult_CommitmentTransactionDecodeErrorZ_get_err(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR owner);
961 /* @internal */
962 export function CResult_CommitmentTransactionDecodeErrorZ_get_err(owner: number): number {
963         if(!isWasmInitialized) {
964                 throw new Error("initializeWasm() must be awaited first!");
965         }
966         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_get_err(owner);
967         return nativeResponseValue;
968 }
969         // struct LDKTrustedCommitmentTransaction *CResult_TrustedCommitmentTransactionNoneZ_get_ok(LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR owner);
970 /* @internal */
971 export function CResult_TrustedCommitmentTransactionNoneZ_get_ok(owner: number): number {
972         if(!isWasmInitialized) {
973                 throw new Error("initializeWasm() must be awaited first!");
974         }
975         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_get_ok(owner);
976         return nativeResponseValue;
977 }
978         // void CResult_TrustedCommitmentTransactionNoneZ_get_err(LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR owner);
979 /* @internal */
980 export function CResult_TrustedCommitmentTransactionNoneZ_get_err(owner: number): void {
981         if(!isWasmInitialized) {
982                 throw new Error("initializeWasm() must be awaited first!");
983         }
984         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_get_err(owner);
985         // debug statements here
986 }
987         // struct LDKCVec_SignatureZ CResult_CVec_SignatureZNoneZ_get_ok(LDKCResult_CVec_SignatureZNoneZ *NONNULL_PTR owner);
988 /* @internal */
989 export function CResult_CVec_SignatureZNoneZ_get_ok(owner: number): number {
990         if(!isWasmInitialized) {
991                 throw new Error("initializeWasm() must be awaited first!");
992         }
993         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_get_ok(owner);
994         return nativeResponseValue;
995 }
996         // void CResult_CVec_SignatureZNoneZ_get_err(LDKCResult_CVec_SignatureZNoneZ *NONNULL_PTR owner);
997 /* @internal */
998 export function CResult_CVec_SignatureZNoneZ_get_err(owner: number): void {
999         if(!isWasmInitialized) {
1000                 throw new Error("initializeWasm() must be awaited first!");
1001         }
1002         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_get_err(owner);
1003         // debug statements here
1004 }
1005         // struct LDKShutdownScript CResult_ShutdownScriptDecodeErrorZ_get_ok(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR owner);
1006 /* @internal */
1007 export function CResult_ShutdownScriptDecodeErrorZ_get_ok(owner: number): number {
1008         if(!isWasmInitialized) {
1009                 throw new Error("initializeWasm() must be awaited first!");
1010         }
1011         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_get_ok(owner);
1012         return nativeResponseValue;
1013 }
1014         // struct LDKDecodeError CResult_ShutdownScriptDecodeErrorZ_get_err(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR owner);
1015 /* @internal */
1016 export function CResult_ShutdownScriptDecodeErrorZ_get_err(owner: number): number {
1017         if(!isWasmInitialized) {
1018                 throw new Error("initializeWasm() must be awaited first!");
1019         }
1020         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_get_err(owner);
1021         return nativeResponseValue;
1022 }
1023         // struct LDKShutdownScript CResult_ShutdownScriptInvalidShutdownScriptZ_get_ok(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR owner);
1024 /* @internal */
1025 export function CResult_ShutdownScriptInvalidShutdownScriptZ_get_ok(owner: number): number {
1026         if(!isWasmInitialized) {
1027                 throw new Error("initializeWasm() must be awaited first!");
1028         }
1029         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_get_ok(owner);
1030         return nativeResponseValue;
1031 }
1032         // struct LDKInvalidShutdownScript CResult_ShutdownScriptInvalidShutdownScriptZ_get_err(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR owner);
1033 /* @internal */
1034 export function CResult_ShutdownScriptInvalidShutdownScriptZ_get_err(owner: number): number {
1035         if(!isWasmInitialized) {
1036                 throw new Error("initializeWasm() must be awaited first!");
1037         }
1038         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_get_err(owner);
1039         return nativeResponseValue;
1040 }
1041         // struct LDKRouteHop CResult_RouteHopDecodeErrorZ_get_ok(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR owner);
1042 /* @internal */
1043 export function CResult_RouteHopDecodeErrorZ_get_ok(owner: number): number {
1044         if(!isWasmInitialized) {
1045                 throw new Error("initializeWasm() must be awaited first!");
1046         }
1047         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_get_ok(owner);
1048         return nativeResponseValue;
1049 }
1050         // struct LDKDecodeError CResult_RouteHopDecodeErrorZ_get_err(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR owner);
1051 /* @internal */
1052 export function CResult_RouteHopDecodeErrorZ_get_err(owner: number): number {
1053         if(!isWasmInitialized) {
1054                 throw new Error("initializeWasm() must be awaited first!");
1055         }
1056         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_get_err(owner);
1057         return nativeResponseValue;
1058 }
1059         // struct LDKRoute CResult_RouteDecodeErrorZ_get_ok(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR owner);
1060 /* @internal */
1061 export function CResult_RouteDecodeErrorZ_get_ok(owner: number): number {
1062         if(!isWasmInitialized) {
1063                 throw new Error("initializeWasm() must be awaited first!");
1064         }
1065         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_get_ok(owner);
1066         return nativeResponseValue;
1067 }
1068         // struct LDKDecodeError CResult_RouteDecodeErrorZ_get_err(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR owner);
1069 /* @internal */
1070 export function CResult_RouteDecodeErrorZ_get_err(owner: number): number {
1071         if(!isWasmInitialized) {
1072                 throw new Error("initializeWasm() must be awaited first!");
1073         }
1074         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_get_err(owner);
1075         return nativeResponseValue;
1076 }
1077         // struct LDKRouteParameters CResult_RouteParametersDecodeErrorZ_get_ok(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR owner);
1078 /* @internal */
1079 export function CResult_RouteParametersDecodeErrorZ_get_ok(owner: number): number {
1080         if(!isWasmInitialized) {
1081                 throw new Error("initializeWasm() must be awaited first!");
1082         }
1083         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_get_ok(owner);
1084         return nativeResponseValue;
1085 }
1086         // struct LDKDecodeError CResult_RouteParametersDecodeErrorZ_get_err(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR owner);
1087 /* @internal */
1088 export function CResult_RouteParametersDecodeErrorZ_get_err(owner: number): number {
1089         if(!isWasmInitialized) {
1090                 throw new Error("initializeWasm() must be awaited first!");
1091         }
1092         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_get_err(owner);
1093         return nativeResponseValue;
1094 }
1095 /* @internal */
1096 export class LDKCOption_u64Z {
1097         protected constructor() {}
1098 }
1099 /* @internal */
1100 export function LDKCOption_u64Z_ty_from_ptr(ptr: number): number {
1101         if(!isWasmInitialized) {
1102                 throw new Error("initializeWasm() must be awaited first!");
1103         }
1104         const nativeResponseValue = wasm.TS_LDKCOption_u64Z_ty_from_ptr(ptr);
1105         return nativeResponseValue;
1106 }
1107 /* @internal */
1108 export function LDKCOption_u64Z_Some_get_some(ptr: number): bigint {
1109         if(!isWasmInitialized) {
1110                 throw new Error("initializeWasm() must be awaited first!");
1111         }
1112         const nativeResponseValue = wasm.TS_LDKCOption_u64Z_Some_get_some(ptr);
1113         return nativeResponseValue;
1114 }
1115         // struct LDKPaymentParameters CResult_PaymentParametersDecodeErrorZ_get_ok(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR owner);
1116 /* @internal */
1117 export function CResult_PaymentParametersDecodeErrorZ_get_ok(owner: number): number {
1118         if(!isWasmInitialized) {
1119                 throw new Error("initializeWasm() must be awaited first!");
1120         }
1121         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_get_ok(owner);
1122         return nativeResponseValue;
1123 }
1124         // struct LDKDecodeError CResult_PaymentParametersDecodeErrorZ_get_err(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR owner);
1125 /* @internal */
1126 export function CResult_PaymentParametersDecodeErrorZ_get_err(owner: number): number {
1127         if(!isWasmInitialized) {
1128                 throw new Error("initializeWasm() must be awaited first!");
1129         }
1130         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_get_err(owner);
1131         return nativeResponseValue;
1132 }
1133         // struct LDKRouteHint CResult_RouteHintDecodeErrorZ_get_ok(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR owner);
1134 /* @internal */
1135 export function CResult_RouteHintDecodeErrorZ_get_ok(owner: number): number {
1136         if(!isWasmInitialized) {
1137                 throw new Error("initializeWasm() must be awaited first!");
1138         }
1139         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_get_ok(owner);
1140         return nativeResponseValue;
1141 }
1142         // struct LDKDecodeError CResult_RouteHintDecodeErrorZ_get_err(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR owner);
1143 /* @internal */
1144 export function CResult_RouteHintDecodeErrorZ_get_err(owner: number): number {
1145         if(!isWasmInitialized) {
1146                 throw new Error("initializeWasm() must be awaited first!");
1147         }
1148         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_get_err(owner);
1149         return nativeResponseValue;
1150 }
1151         // struct LDKRouteHintHop CResult_RouteHintHopDecodeErrorZ_get_ok(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR owner);
1152 /* @internal */
1153 export function CResult_RouteHintHopDecodeErrorZ_get_ok(owner: number): number {
1154         if(!isWasmInitialized) {
1155                 throw new Error("initializeWasm() must be awaited first!");
1156         }
1157         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_get_ok(owner);
1158         return nativeResponseValue;
1159 }
1160         // struct LDKDecodeError CResult_RouteHintHopDecodeErrorZ_get_err(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR owner);
1161 /* @internal */
1162 export function CResult_RouteHintHopDecodeErrorZ_get_err(owner: number): number {
1163         if(!isWasmInitialized) {
1164                 throw new Error("initializeWasm() must be awaited first!");
1165         }
1166         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_get_err(owner);
1167         return nativeResponseValue;
1168 }
1169         // struct LDKRoute CResult_RouteLightningErrorZ_get_ok(LDKCResult_RouteLightningErrorZ *NONNULL_PTR owner);
1170 /* @internal */
1171 export function CResult_RouteLightningErrorZ_get_ok(owner: number): number {
1172         if(!isWasmInitialized) {
1173                 throw new Error("initializeWasm() must be awaited first!");
1174         }
1175         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_get_ok(owner);
1176         return nativeResponseValue;
1177 }
1178         // struct LDKLightningError CResult_RouteLightningErrorZ_get_err(LDKCResult_RouteLightningErrorZ *NONNULL_PTR owner);
1179 /* @internal */
1180 export function CResult_RouteLightningErrorZ_get_err(owner: number): number {
1181         if(!isWasmInitialized) {
1182                 throw new Error("initializeWasm() must be awaited first!");
1183         }
1184         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_get_err(owner);
1185         return nativeResponseValue;
1186 }
1187 /* @internal */
1188 export class LDKPaymentPurpose {
1189         protected constructor() {}
1190 }
1191 /* @internal */
1192 export function LDKPaymentPurpose_ty_from_ptr(ptr: number): number {
1193         if(!isWasmInitialized) {
1194                 throw new Error("initializeWasm() must be awaited first!");
1195         }
1196         const nativeResponseValue = wasm.TS_LDKPaymentPurpose_ty_from_ptr(ptr);
1197         return nativeResponseValue;
1198 }
1199 /* @internal */
1200 export function LDKPaymentPurpose_InvoicePayment_get_payment_preimage(ptr: number): number {
1201         if(!isWasmInitialized) {
1202                 throw new Error("initializeWasm() must be awaited first!");
1203         }
1204         const nativeResponseValue = wasm.TS_LDKPaymentPurpose_InvoicePayment_get_payment_preimage(ptr);
1205         return nativeResponseValue;
1206 }
1207 /* @internal */
1208 export function LDKPaymentPurpose_InvoicePayment_get_payment_secret(ptr: number): number {
1209         if(!isWasmInitialized) {
1210                 throw new Error("initializeWasm() must be awaited first!");
1211         }
1212         const nativeResponseValue = wasm.TS_LDKPaymentPurpose_InvoicePayment_get_payment_secret(ptr);
1213         return nativeResponseValue;
1214 }
1215 /* @internal */
1216 export function LDKPaymentPurpose_SpontaneousPayment_get_spontaneous_payment(ptr: number): number {
1217         if(!isWasmInitialized) {
1218                 throw new Error("initializeWasm() must be awaited first!");
1219         }
1220         const nativeResponseValue = wasm.TS_LDKPaymentPurpose_SpontaneousPayment_get_spontaneous_payment(ptr);
1221         return nativeResponseValue;
1222 }
1223         // struct LDKPaymentPurpose CResult_PaymentPurposeDecodeErrorZ_get_ok(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR owner);
1224 /* @internal */
1225 export function CResult_PaymentPurposeDecodeErrorZ_get_ok(owner: number): number {
1226         if(!isWasmInitialized) {
1227                 throw new Error("initializeWasm() must be awaited first!");
1228         }
1229         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_get_ok(owner);
1230         return nativeResponseValue;
1231 }
1232         // struct LDKDecodeError CResult_PaymentPurposeDecodeErrorZ_get_err(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR owner);
1233 /* @internal */
1234 export function CResult_PaymentPurposeDecodeErrorZ_get_err(owner: number): number {
1235         if(!isWasmInitialized) {
1236                 throw new Error("initializeWasm() must be awaited first!");
1237         }
1238         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_get_err(owner);
1239         return nativeResponseValue;
1240 }
1241 /* @internal */
1242 export class LDKClosureReason {
1243         protected constructor() {}
1244 }
1245 /* @internal */
1246 export function LDKClosureReason_ty_from_ptr(ptr: number): number {
1247         if(!isWasmInitialized) {
1248                 throw new Error("initializeWasm() must be awaited first!");
1249         }
1250         const nativeResponseValue = wasm.TS_LDKClosureReason_ty_from_ptr(ptr);
1251         return nativeResponseValue;
1252 }
1253 /* @internal */
1254 export function LDKClosureReason_CounterpartyForceClosed_get_peer_msg(ptr: number): number {
1255         if(!isWasmInitialized) {
1256                 throw new Error("initializeWasm() must be awaited first!");
1257         }
1258         const nativeResponseValue = wasm.TS_LDKClosureReason_CounterpartyForceClosed_get_peer_msg(ptr);
1259         return nativeResponseValue;
1260 }
1261 /* @internal */
1262 export function LDKClosureReason_ProcessingError_get_err(ptr: number): number {
1263         if(!isWasmInitialized) {
1264                 throw new Error("initializeWasm() must be awaited first!");
1265         }
1266         const nativeResponseValue = wasm.TS_LDKClosureReason_ProcessingError_get_err(ptr);
1267         return nativeResponseValue;
1268 }
1269 /* @internal */
1270 export class LDKCOption_ClosureReasonZ {
1271         protected constructor() {}
1272 }
1273 /* @internal */
1274 export function LDKCOption_ClosureReasonZ_ty_from_ptr(ptr: number): number {
1275         if(!isWasmInitialized) {
1276                 throw new Error("initializeWasm() must be awaited first!");
1277         }
1278         const nativeResponseValue = wasm.TS_LDKCOption_ClosureReasonZ_ty_from_ptr(ptr);
1279         return nativeResponseValue;
1280 }
1281 /* @internal */
1282 export function LDKCOption_ClosureReasonZ_Some_get_some(ptr: number): number {
1283         if(!isWasmInitialized) {
1284                 throw new Error("initializeWasm() must be awaited first!");
1285         }
1286         const nativeResponseValue = wasm.TS_LDKCOption_ClosureReasonZ_Some_get_some(ptr);
1287         return nativeResponseValue;
1288 }
1289         // struct LDKCOption_ClosureReasonZ CResult_COption_ClosureReasonZDecodeErrorZ_get_ok(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR owner);
1290 /* @internal */
1291 export function CResult_COption_ClosureReasonZDecodeErrorZ_get_ok(owner: number): number {
1292         if(!isWasmInitialized) {
1293                 throw new Error("initializeWasm() must be awaited first!");
1294         }
1295         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_get_ok(owner);
1296         return nativeResponseValue;
1297 }
1298         // struct LDKDecodeError CResult_COption_ClosureReasonZDecodeErrorZ_get_err(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR owner);
1299 /* @internal */
1300 export function CResult_COption_ClosureReasonZDecodeErrorZ_get_err(owner: number): number {
1301         if(!isWasmInitialized) {
1302                 throw new Error("initializeWasm() must be awaited first!");
1303         }
1304         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_get_err(owner);
1305         return nativeResponseValue;
1306 }
1307 /* @internal */
1308 export class LDKHTLCDestination {
1309         protected constructor() {}
1310 }
1311 /* @internal */
1312 export function LDKHTLCDestination_ty_from_ptr(ptr: number): number {
1313         if(!isWasmInitialized) {
1314                 throw new Error("initializeWasm() must be awaited first!");
1315         }
1316         const nativeResponseValue = wasm.TS_LDKHTLCDestination_ty_from_ptr(ptr);
1317         return nativeResponseValue;
1318 }
1319 /* @internal */
1320 export function LDKHTLCDestination_NextHopChannel_get_node_id(ptr: number): number {
1321         if(!isWasmInitialized) {
1322                 throw new Error("initializeWasm() must be awaited first!");
1323         }
1324         const nativeResponseValue = wasm.TS_LDKHTLCDestination_NextHopChannel_get_node_id(ptr);
1325         return nativeResponseValue;
1326 }
1327 /* @internal */
1328 export function LDKHTLCDestination_NextHopChannel_get_channel_id(ptr: number): number {
1329         if(!isWasmInitialized) {
1330                 throw new Error("initializeWasm() must be awaited first!");
1331         }
1332         const nativeResponseValue = wasm.TS_LDKHTLCDestination_NextHopChannel_get_channel_id(ptr);
1333         return nativeResponseValue;
1334 }
1335 /* @internal */
1336 export function LDKHTLCDestination_UnknownNextHop_get_requested_forward_scid(ptr: number): bigint {
1337         if(!isWasmInitialized) {
1338                 throw new Error("initializeWasm() must be awaited first!");
1339         }
1340         const nativeResponseValue = wasm.TS_LDKHTLCDestination_UnknownNextHop_get_requested_forward_scid(ptr);
1341         return nativeResponseValue;
1342 }
1343 /* @internal */
1344 export function LDKHTLCDestination_FailedPayment_get_payment_hash(ptr: number): number {
1345         if(!isWasmInitialized) {
1346                 throw new Error("initializeWasm() must be awaited first!");
1347         }
1348         const nativeResponseValue = wasm.TS_LDKHTLCDestination_FailedPayment_get_payment_hash(ptr);
1349         return nativeResponseValue;
1350 }
1351 /* @internal */
1352 export class LDKCOption_HTLCDestinationZ {
1353         protected constructor() {}
1354 }
1355 /* @internal */
1356 export function LDKCOption_HTLCDestinationZ_ty_from_ptr(ptr: number): number {
1357         if(!isWasmInitialized) {
1358                 throw new Error("initializeWasm() must be awaited first!");
1359         }
1360         const nativeResponseValue = wasm.TS_LDKCOption_HTLCDestinationZ_ty_from_ptr(ptr);
1361         return nativeResponseValue;
1362 }
1363 /* @internal */
1364 export function LDKCOption_HTLCDestinationZ_Some_get_some(ptr: number): number {
1365         if(!isWasmInitialized) {
1366                 throw new Error("initializeWasm() must be awaited first!");
1367         }
1368         const nativeResponseValue = wasm.TS_LDKCOption_HTLCDestinationZ_Some_get_some(ptr);
1369         return nativeResponseValue;
1370 }
1371         // struct LDKCOption_HTLCDestinationZ CResult_COption_HTLCDestinationZDecodeErrorZ_get_ok(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR owner);
1372 /* @internal */
1373 export function CResult_COption_HTLCDestinationZDecodeErrorZ_get_ok(owner: number): number {
1374         if(!isWasmInitialized) {
1375                 throw new Error("initializeWasm() must be awaited first!");
1376         }
1377         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_get_ok(owner);
1378         return nativeResponseValue;
1379 }
1380         // struct LDKDecodeError CResult_COption_HTLCDestinationZDecodeErrorZ_get_err(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR owner);
1381 /* @internal */
1382 export function CResult_COption_HTLCDestinationZDecodeErrorZ_get_err(owner: number): number {
1383         if(!isWasmInitialized) {
1384                 throw new Error("initializeWasm() must be awaited first!");
1385         }
1386         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_get_err(owner);
1387         return nativeResponseValue;
1388 }
1389 /* @internal */
1390 export class LDKNetworkUpdate {
1391         protected constructor() {}
1392 }
1393 /* @internal */
1394 export function LDKNetworkUpdate_ty_from_ptr(ptr: number): number {
1395         if(!isWasmInitialized) {
1396                 throw new Error("initializeWasm() must be awaited first!");
1397         }
1398         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_ty_from_ptr(ptr);
1399         return nativeResponseValue;
1400 }
1401 /* @internal */
1402 export function LDKNetworkUpdate_ChannelUpdateMessage_get_msg(ptr: number): number {
1403         if(!isWasmInitialized) {
1404                 throw new Error("initializeWasm() must be awaited first!");
1405         }
1406         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_ChannelUpdateMessage_get_msg(ptr);
1407         return nativeResponseValue;
1408 }
1409 /* @internal */
1410 export function LDKNetworkUpdate_ChannelFailure_get_short_channel_id(ptr: number): bigint {
1411         if(!isWasmInitialized) {
1412                 throw new Error("initializeWasm() must be awaited first!");
1413         }
1414         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_ChannelFailure_get_short_channel_id(ptr);
1415         return nativeResponseValue;
1416 }
1417 /* @internal */
1418 export function LDKNetworkUpdate_ChannelFailure_get_is_permanent(ptr: number): boolean {
1419         if(!isWasmInitialized) {
1420                 throw new Error("initializeWasm() must be awaited first!");
1421         }
1422         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_ChannelFailure_get_is_permanent(ptr);
1423         return nativeResponseValue;
1424 }
1425 /* @internal */
1426 export function LDKNetworkUpdate_NodeFailure_get_node_id(ptr: number): number {
1427         if(!isWasmInitialized) {
1428                 throw new Error("initializeWasm() must be awaited first!");
1429         }
1430         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_NodeFailure_get_node_id(ptr);
1431         return nativeResponseValue;
1432 }
1433 /* @internal */
1434 export function LDKNetworkUpdate_NodeFailure_get_is_permanent(ptr: number): boolean {
1435         if(!isWasmInitialized) {
1436                 throw new Error("initializeWasm() must be awaited first!");
1437         }
1438         const nativeResponseValue = wasm.TS_LDKNetworkUpdate_NodeFailure_get_is_permanent(ptr);
1439         return nativeResponseValue;
1440 }
1441 /* @internal */
1442 export class LDKCOption_NetworkUpdateZ {
1443         protected constructor() {}
1444 }
1445 /* @internal */
1446 export function LDKCOption_NetworkUpdateZ_ty_from_ptr(ptr: number): number {
1447         if(!isWasmInitialized) {
1448                 throw new Error("initializeWasm() must be awaited first!");
1449         }
1450         const nativeResponseValue = wasm.TS_LDKCOption_NetworkUpdateZ_ty_from_ptr(ptr);
1451         return nativeResponseValue;
1452 }
1453 /* @internal */
1454 export function LDKCOption_NetworkUpdateZ_Some_get_some(ptr: number): number {
1455         if(!isWasmInitialized) {
1456                 throw new Error("initializeWasm() must be awaited first!");
1457         }
1458         const nativeResponseValue = wasm.TS_LDKCOption_NetworkUpdateZ_Some_get_some(ptr);
1459         return nativeResponseValue;
1460 }
1461 /* @internal */
1462 export class LDKSpendableOutputDescriptor {
1463         protected constructor() {}
1464 }
1465 /* @internal */
1466 export function LDKSpendableOutputDescriptor_ty_from_ptr(ptr: number): number {
1467         if(!isWasmInitialized) {
1468                 throw new Error("initializeWasm() must be awaited first!");
1469         }
1470         const nativeResponseValue = wasm.TS_LDKSpendableOutputDescriptor_ty_from_ptr(ptr);
1471         return nativeResponseValue;
1472 }
1473 /* @internal */
1474 export function LDKSpendableOutputDescriptor_StaticOutput_get_outpoint(ptr: number): number {
1475         if(!isWasmInitialized) {
1476                 throw new Error("initializeWasm() must be awaited first!");
1477         }
1478         const nativeResponseValue = wasm.TS_LDKSpendableOutputDescriptor_StaticOutput_get_outpoint(ptr);
1479         return nativeResponseValue;
1480 }
1481 /* @internal */
1482 export function LDKSpendableOutputDescriptor_StaticOutput_get_output(ptr: number): number {
1483         if(!isWasmInitialized) {
1484                 throw new Error("initializeWasm() must be awaited first!");
1485         }
1486         const nativeResponseValue = wasm.TS_LDKSpendableOutputDescriptor_StaticOutput_get_output(ptr);
1487         return nativeResponseValue;
1488 }
1489 /* @internal */
1490 export function LDKSpendableOutputDescriptor_DelayedPaymentOutput_get_delayed_payment_output(ptr: number): number {
1491         if(!isWasmInitialized) {
1492                 throw new Error("initializeWasm() must be awaited first!");
1493         }
1494         const nativeResponseValue = wasm.TS_LDKSpendableOutputDescriptor_DelayedPaymentOutput_get_delayed_payment_output(ptr);
1495         return nativeResponseValue;
1496 }
1497 /* @internal */
1498 export function LDKSpendableOutputDescriptor_StaticPaymentOutput_get_static_payment_output(ptr: number): number {
1499         if(!isWasmInitialized) {
1500                 throw new Error("initializeWasm() must be awaited first!");
1501         }
1502         const nativeResponseValue = wasm.TS_LDKSpendableOutputDescriptor_StaticPaymentOutput_get_static_payment_output(ptr);
1503         return nativeResponseValue;
1504 }
1505 /* @internal */
1506 export class LDKEvent {
1507         protected constructor() {}
1508 }
1509 /* @internal */
1510 export function LDKEvent_ty_from_ptr(ptr: number): number {
1511         if(!isWasmInitialized) {
1512                 throw new Error("initializeWasm() must be awaited first!");
1513         }
1514         const nativeResponseValue = wasm.TS_LDKEvent_ty_from_ptr(ptr);
1515         return nativeResponseValue;
1516 }
1517 /* @internal */
1518 export function LDKEvent_FundingGenerationReady_get_temporary_channel_id(ptr: number): number {
1519         if(!isWasmInitialized) {
1520                 throw new Error("initializeWasm() must be awaited first!");
1521         }
1522         const nativeResponseValue = wasm.TS_LDKEvent_FundingGenerationReady_get_temporary_channel_id(ptr);
1523         return nativeResponseValue;
1524 }
1525 /* @internal */
1526 export function LDKEvent_FundingGenerationReady_get_counterparty_node_id(ptr: number): number {
1527         if(!isWasmInitialized) {
1528                 throw new Error("initializeWasm() must be awaited first!");
1529         }
1530         const nativeResponseValue = wasm.TS_LDKEvent_FundingGenerationReady_get_counterparty_node_id(ptr);
1531         return nativeResponseValue;
1532 }
1533 /* @internal */
1534 export function LDKEvent_FundingGenerationReady_get_channel_value_satoshis(ptr: number): bigint {
1535         if(!isWasmInitialized) {
1536                 throw new Error("initializeWasm() must be awaited first!");
1537         }
1538         const nativeResponseValue = wasm.TS_LDKEvent_FundingGenerationReady_get_channel_value_satoshis(ptr);
1539         return nativeResponseValue;
1540 }
1541 /* @internal */
1542 export function LDKEvent_FundingGenerationReady_get_output_script(ptr: number): number {
1543         if(!isWasmInitialized) {
1544                 throw new Error("initializeWasm() must be awaited first!");
1545         }
1546         const nativeResponseValue = wasm.TS_LDKEvent_FundingGenerationReady_get_output_script(ptr);
1547         return nativeResponseValue;
1548 }
1549 /* @internal */
1550 export function LDKEvent_FundingGenerationReady_get_user_channel_id(ptr: number): bigint {
1551         if(!isWasmInitialized) {
1552                 throw new Error("initializeWasm() must be awaited first!");
1553         }
1554         const nativeResponseValue = wasm.TS_LDKEvent_FundingGenerationReady_get_user_channel_id(ptr);
1555         return nativeResponseValue;
1556 }
1557 /* @internal */
1558 export function LDKEvent_PaymentReceived_get_payment_hash(ptr: number): number {
1559         if(!isWasmInitialized) {
1560                 throw new Error("initializeWasm() must be awaited first!");
1561         }
1562         const nativeResponseValue = wasm.TS_LDKEvent_PaymentReceived_get_payment_hash(ptr);
1563         return nativeResponseValue;
1564 }
1565 /* @internal */
1566 export function LDKEvent_PaymentReceived_get_amount_msat(ptr: number): bigint {
1567         if(!isWasmInitialized) {
1568                 throw new Error("initializeWasm() must be awaited first!");
1569         }
1570         const nativeResponseValue = wasm.TS_LDKEvent_PaymentReceived_get_amount_msat(ptr);
1571         return nativeResponseValue;
1572 }
1573 /* @internal */
1574 export function LDKEvent_PaymentReceived_get_purpose(ptr: number): number {
1575         if(!isWasmInitialized) {
1576                 throw new Error("initializeWasm() must be awaited first!");
1577         }
1578         const nativeResponseValue = wasm.TS_LDKEvent_PaymentReceived_get_purpose(ptr);
1579         return nativeResponseValue;
1580 }
1581 /* @internal */
1582 export function LDKEvent_PaymentClaimed_get_payment_hash(ptr: number): number {
1583         if(!isWasmInitialized) {
1584                 throw new Error("initializeWasm() must be awaited first!");
1585         }
1586         const nativeResponseValue = wasm.TS_LDKEvent_PaymentClaimed_get_payment_hash(ptr);
1587         return nativeResponseValue;
1588 }
1589 /* @internal */
1590 export function LDKEvent_PaymentClaimed_get_amount_msat(ptr: number): bigint {
1591         if(!isWasmInitialized) {
1592                 throw new Error("initializeWasm() must be awaited first!");
1593         }
1594         const nativeResponseValue = wasm.TS_LDKEvent_PaymentClaimed_get_amount_msat(ptr);
1595         return nativeResponseValue;
1596 }
1597 /* @internal */
1598 export function LDKEvent_PaymentClaimed_get_purpose(ptr: number): number {
1599         if(!isWasmInitialized) {
1600                 throw new Error("initializeWasm() must be awaited first!");
1601         }
1602         const nativeResponseValue = wasm.TS_LDKEvent_PaymentClaimed_get_purpose(ptr);
1603         return nativeResponseValue;
1604 }
1605 /* @internal */
1606 export function LDKEvent_PaymentSent_get_payment_id(ptr: number): number {
1607         if(!isWasmInitialized) {
1608                 throw new Error("initializeWasm() must be awaited first!");
1609         }
1610         const nativeResponseValue = wasm.TS_LDKEvent_PaymentSent_get_payment_id(ptr);
1611         return nativeResponseValue;
1612 }
1613 /* @internal */
1614 export function LDKEvent_PaymentSent_get_payment_preimage(ptr: number): number {
1615         if(!isWasmInitialized) {
1616                 throw new Error("initializeWasm() must be awaited first!");
1617         }
1618         const nativeResponseValue = wasm.TS_LDKEvent_PaymentSent_get_payment_preimage(ptr);
1619         return nativeResponseValue;
1620 }
1621 /* @internal */
1622 export function LDKEvent_PaymentSent_get_payment_hash(ptr: number): number {
1623         if(!isWasmInitialized) {
1624                 throw new Error("initializeWasm() must be awaited first!");
1625         }
1626         const nativeResponseValue = wasm.TS_LDKEvent_PaymentSent_get_payment_hash(ptr);
1627         return nativeResponseValue;
1628 }
1629 /* @internal */
1630 export function LDKEvent_PaymentSent_get_fee_paid_msat(ptr: number): number {
1631         if(!isWasmInitialized) {
1632                 throw new Error("initializeWasm() must be awaited first!");
1633         }
1634         const nativeResponseValue = wasm.TS_LDKEvent_PaymentSent_get_fee_paid_msat(ptr);
1635         return nativeResponseValue;
1636 }
1637 /* @internal */
1638 export function LDKEvent_PaymentFailed_get_payment_id(ptr: number): number {
1639         if(!isWasmInitialized) {
1640                 throw new Error("initializeWasm() must be awaited first!");
1641         }
1642         const nativeResponseValue = wasm.TS_LDKEvent_PaymentFailed_get_payment_id(ptr);
1643         return nativeResponseValue;
1644 }
1645 /* @internal */
1646 export function LDKEvent_PaymentFailed_get_payment_hash(ptr: number): number {
1647         if(!isWasmInitialized) {
1648                 throw new Error("initializeWasm() must be awaited first!");
1649         }
1650         const nativeResponseValue = wasm.TS_LDKEvent_PaymentFailed_get_payment_hash(ptr);
1651         return nativeResponseValue;
1652 }
1653 /* @internal */
1654 export function LDKEvent_PaymentPathSuccessful_get_payment_id(ptr: number): number {
1655         if(!isWasmInitialized) {
1656                 throw new Error("initializeWasm() must be awaited first!");
1657         }
1658         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathSuccessful_get_payment_id(ptr);
1659         return nativeResponseValue;
1660 }
1661 /* @internal */
1662 export function LDKEvent_PaymentPathSuccessful_get_payment_hash(ptr: number): number {
1663         if(!isWasmInitialized) {
1664                 throw new Error("initializeWasm() must be awaited first!");
1665         }
1666         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathSuccessful_get_payment_hash(ptr);
1667         return nativeResponseValue;
1668 }
1669 /* @internal */
1670 export function LDKEvent_PaymentPathSuccessful_get_path(ptr: number): number {
1671         if(!isWasmInitialized) {
1672                 throw new Error("initializeWasm() must be awaited first!");
1673         }
1674         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathSuccessful_get_path(ptr);
1675         return nativeResponseValue;
1676 }
1677 /* @internal */
1678 export function LDKEvent_PaymentPathFailed_get_payment_id(ptr: number): number {
1679         if(!isWasmInitialized) {
1680                 throw new Error("initializeWasm() must be awaited first!");
1681         }
1682         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_payment_id(ptr);
1683         return nativeResponseValue;
1684 }
1685 /* @internal */
1686 export function LDKEvent_PaymentPathFailed_get_payment_hash(ptr: number): number {
1687         if(!isWasmInitialized) {
1688                 throw new Error("initializeWasm() must be awaited first!");
1689         }
1690         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_payment_hash(ptr);
1691         return nativeResponseValue;
1692 }
1693 /* @internal */
1694 export function LDKEvent_PaymentPathFailed_get_rejected_by_dest(ptr: number): boolean {
1695         if(!isWasmInitialized) {
1696                 throw new Error("initializeWasm() must be awaited first!");
1697         }
1698         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_rejected_by_dest(ptr);
1699         return nativeResponseValue;
1700 }
1701 /* @internal */
1702 export function LDKEvent_PaymentPathFailed_get_network_update(ptr: number): number {
1703         if(!isWasmInitialized) {
1704                 throw new Error("initializeWasm() must be awaited first!");
1705         }
1706         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_network_update(ptr);
1707         return nativeResponseValue;
1708 }
1709 /* @internal */
1710 export function LDKEvent_PaymentPathFailed_get_all_paths_failed(ptr: number): boolean {
1711         if(!isWasmInitialized) {
1712                 throw new Error("initializeWasm() must be awaited first!");
1713         }
1714         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_all_paths_failed(ptr);
1715         return nativeResponseValue;
1716 }
1717 /* @internal */
1718 export function LDKEvent_PaymentPathFailed_get_path(ptr: number): number {
1719         if(!isWasmInitialized) {
1720                 throw new Error("initializeWasm() must be awaited first!");
1721         }
1722         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_path(ptr);
1723         return nativeResponseValue;
1724 }
1725 /* @internal */
1726 export function LDKEvent_PaymentPathFailed_get_short_channel_id(ptr: number): number {
1727         if(!isWasmInitialized) {
1728                 throw new Error("initializeWasm() must be awaited first!");
1729         }
1730         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_short_channel_id(ptr);
1731         return nativeResponseValue;
1732 }
1733 /* @internal */
1734 export function LDKEvent_PaymentPathFailed_get_retry(ptr: number): number {
1735         if(!isWasmInitialized) {
1736                 throw new Error("initializeWasm() must be awaited first!");
1737         }
1738         const nativeResponseValue = wasm.TS_LDKEvent_PaymentPathFailed_get_retry(ptr);
1739         return nativeResponseValue;
1740 }
1741 /* @internal */
1742 export function LDKEvent_ProbeSuccessful_get_payment_id(ptr: number): number {
1743         if(!isWasmInitialized) {
1744                 throw new Error("initializeWasm() must be awaited first!");
1745         }
1746         const nativeResponseValue = wasm.TS_LDKEvent_ProbeSuccessful_get_payment_id(ptr);
1747         return nativeResponseValue;
1748 }
1749 /* @internal */
1750 export function LDKEvent_ProbeSuccessful_get_payment_hash(ptr: number): number {
1751         if(!isWasmInitialized) {
1752                 throw new Error("initializeWasm() must be awaited first!");
1753         }
1754         const nativeResponseValue = wasm.TS_LDKEvent_ProbeSuccessful_get_payment_hash(ptr);
1755         return nativeResponseValue;
1756 }
1757 /* @internal */
1758 export function LDKEvent_ProbeSuccessful_get_path(ptr: number): number {
1759         if(!isWasmInitialized) {
1760                 throw new Error("initializeWasm() must be awaited first!");
1761         }
1762         const nativeResponseValue = wasm.TS_LDKEvent_ProbeSuccessful_get_path(ptr);
1763         return nativeResponseValue;
1764 }
1765 /* @internal */
1766 export function LDKEvent_ProbeFailed_get_payment_id(ptr: number): number {
1767         if(!isWasmInitialized) {
1768                 throw new Error("initializeWasm() must be awaited first!");
1769         }
1770         const nativeResponseValue = wasm.TS_LDKEvent_ProbeFailed_get_payment_id(ptr);
1771         return nativeResponseValue;
1772 }
1773 /* @internal */
1774 export function LDKEvent_ProbeFailed_get_payment_hash(ptr: number): number {
1775         if(!isWasmInitialized) {
1776                 throw new Error("initializeWasm() must be awaited first!");
1777         }
1778         const nativeResponseValue = wasm.TS_LDKEvent_ProbeFailed_get_payment_hash(ptr);
1779         return nativeResponseValue;
1780 }
1781 /* @internal */
1782 export function LDKEvent_ProbeFailed_get_path(ptr: number): number {
1783         if(!isWasmInitialized) {
1784                 throw new Error("initializeWasm() must be awaited first!");
1785         }
1786         const nativeResponseValue = wasm.TS_LDKEvent_ProbeFailed_get_path(ptr);
1787         return nativeResponseValue;
1788 }
1789 /* @internal */
1790 export function LDKEvent_ProbeFailed_get_short_channel_id(ptr: number): number {
1791         if(!isWasmInitialized) {
1792                 throw new Error("initializeWasm() must be awaited first!");
1793         }
1794         const nativeResponseValue = wasm.TS_LDKEvent_ProbeFailed_get_short_channel_id(ptr);
1795         return nativeResponseValue;
1796 }
1797 /* @internal */
1798 export function LDKEvent_PendingHTLCsForwardable_get_time_forwardable(ptr: number): bigint {
1799         if(!isWasmInitialized) {
1800                 throw new Error("initializeWasm() must be awaited first!");
1801         }
1802         const nativeResponseValue = wasm.TS_LDKEvent_PendingHTLCsForwardable_get_time_forwardable(ptr);
1803         return nativeResponseValue;
1804 }
1805 /* @internal */
1806 export function LDKEvent_SpendableOutputs_get_outputs(ptr: number): number {
1807         if(!isWasmInitialized) {
1808                 throw new Error("initializeWasm() must be awaited first!");
1809         }
1810         const nativeResponseValue = wasm.TS_LDKEvent_SpendableOutputs_get_outputs(ptr);
1811         return nativeResponseValue;
1812 }
1813 /* @internal */
1814 export function LDKEvent_PaymentForwarded_get_prev_channel_id(ptr: number): number {
1815         if(!isWasmInitialized) {
1816                 throw new Error("initializeWasm() must be awaited first!");
1817         }
1818         const nativeResponseValue = wasm.TS_LDKEvent_PaymentForwarded_get_prev_channel_id(ptr);
1819         return nativeResponseValue;
1820 }
1821 /* @internal */
1822 export function LDKEvent_PaymentForwarded_get_next_channel_id(ptr: number): number {
1823         if(!isWasmInitialized) {
1824                 throw new Error("initializeWasm() must be awaited first!");
1825         }
1826         const nativeResponseValue = wasm.TS_LDKEvent_PaymentForwarded_get_next_channel_id(ptr);
1827         return nativeResponseValue;
1828 }
1829 /* @internal */
1830 export function LDKEvent_PaymentForwarded_get_fee_earned_msat(ptr: number): number {
1831         if(!isWasmInitialized) {
1832                 throw new Error("initializeWasm() must be awaited first!");
1833         }
1834         const nativeResponseValue = wasm.TS_LDKEvent_PaymentForwarded_get_fee_earned_msat(ptr);
1835         return nativeResponseValue;
1836 }
1837 /* @internal */
1838 export function LDKEvent_PaymentForwarded_get_claim_from_onchain_tx(ptr: number): boolean {
1839         if(!isWasmInitialized) {
1840                 throw new Error("initializeWasm() must be awaited first!");
1841         }
1842         const nativeResponseValue = wasm.TS_LDKEvent_PaymentForwarded_get_claim_from_onchain_tx(ptr);
1843         return nativeResponseValue;
1844 }
1845 /* @internal */
1846 export function LDKEvent_ChannelClosed_get_channel_id(ptr: number): number {
1847         if(!isWasmInitialized) {
1848                 throw new Error("initializeWasm() must be awaited first!");
1849         }
1850         const nativeResponseValue = wasm.TS_LDKEvent_ChannelClosed_get_channel_id(ptr);
1851         return nativeResponseValue;
1852 }
1853 /* @internal */
1854 export function LDKEvent_ChannelClosed_get_user_channel_id(ptr: number): bigint {
1855         if(!isWasmInitialized) {
1856                 throw new Error("initializeWasm() must be awaited first!");
1857         }
1858         const nativeResponseValue = wasm.TS_LDKEvent_ChannelClosed_get_user_channel_id(ptr);
1859         return nativeResponseValue;
1860 }
1861 /* @internal */
1862 export function LDKEvent_ChannelClosed_get_reason(ptr: number): number {
1863         if(!isWasmInitialized) {
1864                 throw new Error("initializeWasm() must be awaited first!");
1865         }
1866         const nativeResponseValue = wasm.TS_LDKEvent_ChannelClosed_get_reason(ptr);
1867         return nativeResponseValue;
1868 }
1869 /* @internal */
1870 export function LDKEvent_DiscardFunding_get_channel_id(ptr: number): number {
1871         if(!isWasmInitialized) {
1872                 throw new Error("initializeWasm() must be awaited first!");
1873         }
1874         const nativeResponseValue = wasm.TS_LDKEvent_DiscardFunding_get_channel_id(ptr);
1875         return nativeResponseValue;
1876 }
1877 /* @internal */
1878 export function LDKEvent_DiscardFunding_get_transaction(ptr: number): number {
1879         if(!isWasmInitialized) {
1880                 throw new Error("initializeWasm() must be awaited first!");
1881         }
1882         const nativeResponseValue = wasm.TS_LDKEvent_DiscardFunding_get_transaction(ptr);
1883         return nativeResponseValue;
1884 }
1885 /* @internal */
1886 export function LDKEvent_OpenChannelRequest_get_temporary_channel_id(ptr: number): number {
1887         if(!isWasmInitialized) {
1888                 throw new Error("initializeWasm() must be awaited first!");
1889         }
1890         const nativeResponseValue = wasm.TS_LDKEvent_OpenChannelRequest_get_temporary_channel_id(ptr);
1891         return nativeResponseValue;
1892 }
1893 /* @internal */
1894 export function LDKEvent_OpenChannelRequest_get_counterparty_node_id(ptr: number): number {
1895         if(!isWasmInitialized) {
1896                 throw new Error("initializeWasm() must be awaited first!");
1897         }
1898         const nativeResponseValue = wasm.TS_LDKEvent_OpenChannelRequest_get_counterparty_node_id(ptr);
1899         return nativeResponseValue;
1900 }
1901 /* @internal */
1902 export function LDKEvent_OpenChannelRequest_get_funding_satoshis(ptr: number): bigint {
1903         if(!isWasmInitialized) {
1904                 throw new Error("initializeWasm() must be awaited first!");
1905         }
1906         const nativeResponseValue = wasm.TS_LDKEvent_OpenChannelRequest_get_funding_satoshis(ptr);
1907         return nativeResponseValue;
1908 }
1909 /* @internal */
1910 export function LDKEvent_OpenChannelRequest_get_push_msat(ptr: number): bigint {
1911         if(!isWasmInitialized) {
1912                 throw new Error("initializeWasm() must be awaited first!");
1913         }
1914         const nativeResponseValue = wasm.TS_LDKEvent_OpenChannelRequest_get_push_msat(ptr);
1915         return nativeResponseValue;
1916 }
1917 /* @internal */
1918 export function LDKEvent_OpenChannelRequest_get_channel_type(ptr: number): number {
1919         if(!isWasmInitialized) {
1920                 throw new Error("initializeWasm() must be awaited first!");
1921         }
1922         const nativeResponseValue = wasm.TS_LDKEvent_OpenChannelRequest_get_channel_type(ptr);
1923         return nativeResponseValue;
1924 }
1925 /* @internal */
1926 export function LDKEvent_HTLCHandlingFailed_get_prev_channel_id(ptr: number): number {
1927         if(!isWasmInitialized) {
1928                 throw new Error("initializeWasm() must be awaited first!");
1929         }
1930         const nativeResponseValue = wasm.TS_LDKEvent_HTLCHandlingFailed_get_prev_channel_id(ptr);
1931         return nativeResponseValue;
1932 }
1933 /* @internal */
1934 export function LDKEvent_HTLCHandlingFailed_get_failed_next_destination(ptr: number): number {
1935         if(!isWasmInitialized) {
1936                 throw new Error("initializeWasm() must be awaited first!");
1937         }
1938         const nativeResponseValue = wasm.TS_LDKEvent_HTLCHandlingFailed_get_failed_next_destination(ptr);
1939         return nativeResponseValue;
1940 }
1941 /* @internal */
1942 export class LDKCOption_EventZ {
1943         protected constructor() {}
1944 }
1945 /* @internal */
1946 export function LDKCOption_EventZ_ty_from_ptr(ptr: number): number {
1947         if(!isWasmInitialized) {
1948                 throw new Error("initializeWasm() must be awaited first!");
1949         }
1950         const nativeResponseValue = wasm.TS_LDKCOption_EventZ_ty_from_ptr(ptr);
1951         return nativeResponseValue;
1952 }
1953 /* @internal */
1954 export function LDKCOption_EventZ_Some_get_some(ptr: number): number {
1955         if(!isWasmInitialized) {
1956                 throw new Error("initializeWasm() must be awaited first!");
1957         }
1958         const nativeResponseValue = wasm.TS_LDKCOption_EventZ_Some_get_some(ptr);
1959         return nativeResponseValue;
1960 }
1961         // struct LDKCOption_EventZ CResult_COption_EventZDecodeErrorZ_get_ok(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR owner);
1962 /* @internal */
1963 export function CResult_COption_EventZDecodeErrorZ_get_ok(owner: number): number {
1964         if(!isWasmInitialized) {
1965                 throw new Error("initializeWasm() must be awaited first!");
1966         }
1967         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_get_ok(owner);
1968         return nativeResponseValue;
1969 }
1970         // struct LDKDecodeError CResult_COption_EventZDecodeErrorZ_get_err(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR owner);
1971 /* @internal */
1972 export function CResult_COption_EventZDecodeErrorZ_get_err(owner: number): number {
1973         if(!isWasmInitialized) {
1974                 throw new Error("initializeWasm() must be awaited first!");
1975         }
1976         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_get_err(owner);
1977         return nativeResponseValue;
1978 }
1979 /* @internal */
1980 export class LDKErrorAction {
1981         protected constructor() {}
1982 }
1983 /* @internal */
1984 export function LDKErrorAction_ty_from_ptr(ptr: number): number {
1985         if(!isWasmInitialized) {
1986                 throw new Error("initializeWasm() must be awaited first!");
1987         }
1988         const nativeResponseValue = wasm.TS_LDKErrorAction_ty_from_ptr(ptr);
1989         return nativeResponseValue;
1990 }
1991 /* @internal */
1992 export function LDKErrorAction_DisconnectPeer_get_msg(ptr: number): number {
1993         if(!isWasmInitialized) {
1994                 throw new Error("initializeWasm() must be awaited first!");
1995         }
1996         const nativeResponseValue = wasm.TS_LDKErrorAction_DisconnectPeer_get_msg(ptr);
1997         return nativeResponseValue;
1998 }
1999 /* @internal */
2000 export function LDKErrorAction_IgnoreAndLog_get_ignore_and_log(ptr: number): Level {
2001         if(!isWasmInitialized) {
2002                 throw new Error("initializeWasm() must be awaited first!");
2003         }
2004         const nativeResponseValue = wasm.TS_LDKErrorAction_IgnoreAndLog_get_ignore_and_log(ptr);
2005         return nativeResponseValue;
2006 }
2007 /* @internal */
2008 export function LDKErrorAction_SendErrorMessage_get_msg(ptr: number): number {
2009         if(!isWasmInitialized) {
2010                 throw new Error("initializeWasm() must be awaited first!");
2011         }
2012         const nativeResponseValue = wasm.TS_LDKErrorAction_SendErrorMessage_get_msg(ptr);
2013         return nativeResponseValue;
2014 }
2015 /* @internal */
2016 export function LDKErrorAction_SendWarningMessage_get_msg(ptr: number): number {
2017         if(!isWasmInitialized) {
2018                 throw new Error("initializeWasm() must be awaited first!");
2019         }
2020         const nativeResponseValue = wasm.TS_LDKErrorAction_SendWarningMessage_get_msg(ptr);
2021         return nativeResponseValue;
2022 }
2023 /* @internal */
2024 export function LDKErrorAction_SendWarningMessage_get_log_level(ptr: number): Level {
2025         if(!isWasmInitialized) {
2026                 throw new Error("initializeWasm() must be awaited first!");
2027         }
2028         const nativeResponseValue = wasm.TS_LDKErrorAction_SendWarningMessage_get_log_level(ptr);
2029         return nativeResponseValue;
2030 }
2031 /* @internal */
2032 export class LDKMessageSendEvent {
2033         protected constructor() {}
2034 }
2035 /* @internal */
2036 export function LDKMessageSendEvent_ty_from_ptr(ptr: number): number {
2037         if(!isWasmInitialized) {
2038                 throw new Error("initializeWasm() must be awaited first!");
2039         }
2040         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_ty_from_ptr(ptr);
2041         return nativeResponseValue;
2042 }
2043 /* @internal */
2044 export function LDKMessageSendEvent_SendAcceptChannel_get_node_id(ptr: number): number {
2045         if(!isWasmInitialized) {
2046                 throw new Error("initializeWasm() must be awaited first!");
2047         }
2048         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendAcceptChannel_get_node_id(ptr);
2049         return nativeResponseValue;
2050 }
2051 /* @internal */
2052 export function LDKMessageSendEvent_SendAcceptChannel_get_msg(ptr: number): number {
2053         if(!isWasmInitialized) {
2054                 throw new Error("initializeWasm() must be awaited first!");
2055         }
2056         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendAcceptChannel_get_msg(ptr);
2057         return nativeResponseValue;
2058 }
2059 /* @internal */
2060 export function LDKMessageSendEvent_SendOpenChannel_get_node_id(ptr: number): number {
2061         if(!isWasmInitialized) {
2062                 throw new Error("initializeWasm() must be awaited first!");
2063         }
2064         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendOpenChannel_get_node_id(ptr);
2065         return nativeResponseValue;
2066 }
2067 /* @internal */
2068 export function LDKMessageSendEvent_SendOpenChannel_get_msg(ptr: number): number {
2069         if(!isWasmInitialized) {
2070                 throw new Error("initializeWasm() must be awaited first!");
2071         }
2072         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendOpenChannel_get_msg(ptr);
2073         return nativeResponseValue;
2074 }
2075 /* @internal */
2076 export function LDKMessageSendEvent_SendFundingCreated_get_node_id(ptr: number): number {
2077         if(!isWasmInitialized) {
2078                 throw new Error("initializeWasm() must be awaited first!");
2079         }
2080         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendFundingCreated_get_node_id(ptr);
2081         return nativeResponseValue;
2082 }
2083 /* @internal */
2084 export function LDKMessageSendEvent_SendFundingCreated_get_msg(ptr: number): number {
2085         if(!isWasmInitialized) {
2086                 throw new Error("initializeWasm() must be awaited first!");
2087         }
2088         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendFundingCreated_get_msg(ptr);
2089         return nativeResponseValue;
2090 }
2091 /* @internal */
2092 export function LDKMessageSendEvent_SendFundingSigned_get_node_id(ptr: number): number {
2093         if(!isWasmInitialized) {
2094                 throw new Error("initializeWasm() must be awaited first!");
2095         }
2096         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendFundingSigned_get_node_id(ptr);
2097         return nativeResponseValue;
2098 }
2099 /* @internal */
2100 export function LDKMessageSendEvent_SendFundingSigned_get_msg(ptr: number): number {
2101         if(!isWasmInitialized) {
2102                 throw new Error("initializeWasm() must be awaited first!");
2103         }
2104         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendFundingSigned_get_msg(ptr);
2105         return nativeResponseValue;
2106 }
2107 /* @internal */
2108 export function LDKMessageSendEvent_SendChannelReady_get_node_id(ptr: number): number {
2109         if(!isWasmInitialized) {
2110                 throw new Error("initializeWasm() must be awaited first!");
2111         }
2112         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelReady_get_node_id(ptr);
2113         return nativeResponseValue;
2114 }
2115 /* @internal */
2116 export function LDKMessageSendEvent_SendChannelReady_get_msg(ptr: number): number {
2117         if(!isWasmInitialized) {
2118                 throw new Error("initializeWasm() must be awaited first!");
2119         }
2120         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelReady_get_msg(ptr);
2121         return nativeResponseValue;
2122 }
2123 /* @internal */
2124 export function LDKMessageSendEvent_SendAnnouncementSignatures_get_node_id(ptr: number): number {
2125         if(!isWasmInitialized) {
2126                 throw new Error("initializeWasm() must be awaited first!");
2127         }
2128         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendAnnouncementSignatures_get_node_id(ptr);
2129         return nativeResponseValue;
2130 }
2131 /* @internal */
2132 export function LDKMessageSendEvent_SendAnnouncementSignatures_get_msg(ptr: number): number {
2133         if(!isWasmInitialized) {
2134                 throw new Error("initializeWasm() must be awaited first!");
2135         }
2136         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendAnnouncementSignatures_get_msg(ptr);
2137         return nativeResponseValue;
2138 }
2139 /* @internal */
2140 export function LDKMessageSendEvent_UpdateHTLCs_get_node_id(ptr: number): number {
2141         if(!isWasmInitialized) {
2142                 throw new Error("initializeWasm() must be awaited first!");
2143         }
2144         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_UpdateHTLCs_get_node_id(ptr);
2145         return nativeResponseValue;
2146 }
2147 /* @internal */
2148 export function LDKMessageSendEvent_UpdateHTLCs_get_updates(ptr: number): number {
2149         if(!isWasmInitialized) {
2150                 throw new Error("initializeWasm() must be awaited first!");
2151         }
2152         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_UpdateHTLCs_get_updates(ptr);
2153         return nativeResponseValue;
2154 }
2155 /* @internal */
2156 export function LDKMessageSendEvent_SendRevokeAndACK_get_node_id(ptr: number): number {
2157         if(!isWasmInitialized) {
2158                 throw new Error("initializeWasm() must be awaited first!");
2159         }
2160         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendRevokeAndACK_get_node_id(ptr);
2161         return nativeResponseValue;
2162 }
2163 /* @internal */
2164 export function LDKMessageSendEvent_SendRevokeAndACK_get_msg(ptr: number): number {
2165         if(!isWasmInitialized) {
2166                 throw new Error("initializeWasm() must be awaited first!");
2167         }
2168         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendRevokeAndACK_get_msg(ptr);
2169         return nativeResponseValue;
2170 }
2171 /* @internal */
2172 export function LDKMessageSendEvent_SendClosingSigned_get_node_id(ptr: number): number {
2173         if(!isWasmInitialized) {
2174                 throw new Error("initializeWasm() must be awaited first!");
2175         }
2176         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendClosingSigned_get_node_id(ptr);
2177         return nativeResponseValue;
2178 }
2179 /* @internal */
2180 export function LDKMessageSendEvent_SendClosingSigned_get_msg(ptr: number): number {
2181         if(!isWasmInitialized) {
2182                 throw new Error("initializeWasm() must be awaited first!");
2183         }
2184         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendClosingSigned_get_msg(ptr);
2185         return nativeResponseValue;
2186 }
2187 /* @internal */
2188 export function LDKMessageSendEvent_SendShutdown_get_node_id(ptr: number): number {
2189         if(!isWasmInitialized) {
2190                 throw new Error("initializeWasm() must be awaited first!");
2191         }
2192         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendShutdown_get_node_id(ptr);
2193         return nativeResponseValue;
2194 }
2195 /* @internal */
2196 export function LDKMessageSendEvent_SendShutdown_get_msg(ptr: number): number {
2197         if(!isWasmInitialized) {
2198                 throw new Error("initializeWasm() must be awaited first!");
2199         }
2200         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendShutdown_get_msg(ptr);
2201         return nativeResponseValue;
2202 }
2203 /* @internal */
2204 export function LDKMessageSendEvent_SendChannelReestablish_get_node_id(ptr: number): number {
2205         if(!isWasmInitialized) {
2206                 throw new Error("initializeWasm() must be awaited first!");
2207         }
2208         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelReestablish_get_node_id(ptr);
2209         return nativeResponseValue;
2210 }
2211 /* @internal */
2212 export function LDKMessageSendEvent_SendChannelReestablish_get_msg(ptr: number): number {
2213         if(!isWasmInitialized) {
2214                 throw new Error("initializeWasm() must be awaited first!");
2215         }
2216         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelReestablish_get_msg(ptr);
2217         return nativeResponseValue;
2218 }
2219 /* @internal */
2220 export function LDKMessageSendEvent_BroadcastChannelAnnouncement_get_msg(ptr: number): number {
2221         if(!isWasmInitialized) {
2222                 throw new Error("initializeWasm() must be awaited first!");
2223         }
2224         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_BroadcastChannelAnnouncement_get_msg(ptr);
2225         return nativeResponseValue;
2226 }
2227 /* @internal */
2228 export function LDKMessageSendEvent_BroadcastChannelAnnouncement_get_update_msg(ptr: number): number {
2229         if(!isWasmInitialized) {
2230                 throw new Error("initializeWasm() must be awaited first!");
2231         }
2232         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_BroadcastChannelAnnouncement_get_update_msg(ptr);
2233         return nativeResponseValue;
2234 }
2235 /* @internal */
2236 export function LDKMessageSendEvent_BroadcastNodeAnnouncement_get_msg(ptr: number): number {
2237         if(!isWasmInitialized) {
2238                 throw new Error("initializeWasm() must be awaited first!");
2239         }
2240         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_BroadcastNodeAnnouncement_get_msg(ptr);
2241         return nativeResponseValue;
2242 }
2243 /* @internal */
2244 export function LDKMessageSendEvent_BroadcastChannelUpdate_get_msg(ptr: number): number {
2245         if(!isWasmInitialized) {
2246                 throw new Error("initializeWasm() must be awaited first!");
2247         }
2248         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_BroadcastChannelUpdate_get_msg(ptr);
2249         return nativeResponseValue;
2250 }
2251 /* @internal */
2252 export function LDKMessageSendEvent_SendChannelUpdate_get_node_id(ptr: number): number {
2253         if(!isWasmInitialized) {
2254                 throw new Error("initializeWasm() must be awaited first!");
2255         }
2256         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelUpdate_get_node_id(ptr);
2257         return nativeResponseValue;
2258 }
2259 /* @internal */
2260 export function LDKMessageSendEvent_SendChannelUpdate_get_msg(ptr: number): number {
2261         if(!isWasmInitialized) {
2262                 throw new Error("initializeWasm() must be awaited first!");
2263         }
2264         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelUpdate_get_msg(ptr);
2265         return nativeResponseValue;
2266 }
2267 /* @internal */
2268 export function LDKMessageSendEvent_HandleError_get_node_id(ptr: number): number {
2269         if(!isWasmInitialized) {
2270                 throw new Error("initializeWasm() must be awaited first!");
2271         }
2272         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_HandleError_get_node_id(ptr);
2273         return nativeResponseValue;
2274 }
2275 /* @internal */
2276 export function LDKMessageSendEvent_HandleError_get_action(ptr: number): number {
2277         if(!isWasmInitialized) {
2278                 throw new Error("initializeWasm() must be awaited first!");
2279         }
2280         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_HandleError_get_action(ptr);
2281         return nativeResponseValue;
2282 }
2283 /* @internal */
2284 export function LDKMessageSendEvent_SendChannelRangeQuery_get_node_id(ptr: number): number {
2285         if(!isWasmInitialized) {
2286                 throw new Error("initializeWasm() must be awaited first!");
2287         }
2288         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelRangeQuery_get_node_id(ptr);
2289         return nativeResponseValue;
2290 }
2291 /* @internal */
2292 export function LDKMessageSendEvent_SendChannelRangeQuery_get_msg(ptr: number): number {
2293         if(!isWasmInitialized) {
2294                 throw new Error("initializeWasm() must be awaited first!");
2295         }
2296         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendChannelRangeQuery_get_msg(ptr);
2297         return nativeResponseValue;
2298 }
2299 /* @internal */
2300 export function LDKMessageSendEvent_SendShortIdsQuery_get_node_id(ptr: number): number {
2301         if(!isWasmInitialized) {
2302                 throw new Error("initializeWasm() must be awaited first!");
2303         }
2304         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendShortIdsQuery_get_node_id(ptr);
2305         return nativeResponseValue;
2306 }
2307 /* @internal */
2308 export function LDKMessageSendEvent_SendShortIdsQuery_get_msg(ptr: number): number {
2309         if(!isWasmInitialized) {
2310                 throw new Error("initializeWasm() must be awaited first!");
2311         }
2312         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendShortIdsQuery_get_msg(ptr);
2313         return nativeResponseValue;
2314 }
2315 /* @internal */
2316 export function LDKMessageSendEvent_SendReplyChannelRange_get_node_id(ptr: number): number {
2317         if(!isWasmInitialized) {
2318                 throw new Error("initializeWasm() must be awaited first!");
2319         }
2320         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendReplyChannelRange_get_node_id(ptr);
2321         return nativeResponseValue;
2322 }
2323 /* @internal */
2324 export function LDKMessageSendEvent_SendReplyChannelRange_get_msg(ptr: number): number {
2325         if(!isWasmInitialized) {
2326                 throw new Error("initializeWasm() must be awaited first!");
2327         }
2328         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendReplyChannelRange_get_msg(ptr);
2329         return nativeResponseValue;
2330 }
2331 /* @internal */
2332 export function LDKMessageSendEvent_SendGossipTimestampFilter_get_node_id(ptr: number): number {
2333         if(!isWasmInitialized) {
2334                 throw new Error("initializeWasm() must be awaited first!");
2335         }
2336         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendGossipTimestampFilter_get_node_id(ptr);
2337         return nativeResponseValue;
2338 }
2339 /* @internal */
2340 export function LDKMessageSendEvent_SendGossipTimestampFilter_get_msg(ptr: number): number {
2341         if(!isWasmInitialized) {
2342                 throw new Error("initializeWasm() must be awaited first!");
2343         }
2344         const nativeResponseValue = wasm.TS_LDKMessageSendEvent_SendGossipTimestampFilter_get_msg(ptr);
2345         return nativeResponseValue;
2346 }
2347         // struct LDKTxOut CResult_TxOutAccessErrorZ_get_ok(LDKCResult_TxOutAccessErrorZ *NONNULL_PTR owner);
2348 /* @internal */
2349 export function CResult_TxOutAccessErrorZ_get_ok(owner: number): number {
2350         if(!isWasmInitialized) {
2351                 throw new Error("initializeWasm() must be awaited first!");
2352         }
2353         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_get_ok(owner);
2354         return nativeResponseValue;
2355 }
2356         // enum LDKAccessError CResult_TxOutAccessErrorZ_get_err(LDKCResult_TxOutAccessErrorZ *NONNULL_PTR owner);
2357 /* @internal */
2358 export function CResult_TxOutAccessErrorZ_get_err(owner: number): AccessError {
2359         if(!isWasmInitialized) {
2360                 throw new Error("initializeWasm() must be awaited first!");
2361         }
2362         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_get_err(owner);
2363         return nativeResponseValue;
2364 }
2365         // uintptr_t C2Tuple_usizeTransactionZ_get_a(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR owner);
2366 /* @internal */
2367 export function C2Tuple_usizeTransactionZ_get_a(owner: number): number {
2368         if(!isWasmInitialized) {
2369                 throw new Error("initializeWasm() must be awaited first!");
2370         }
2371         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_get_a(owner);
2372         return nativeResponseValue;
2373 }
2374         // struct LDKTransaction C2Tuple_usizeTransactionZ_get_b(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR owner);
2375 /* @internal */
2376 export function C2Tuple_usizeTransactionZ_get_b(owner: number): number {
2377         if(!isWasmInitialized) {
2378                 throw new Error("initializeWasm() must be awaited first!");
2379         }
2380         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_get_b(owner);
2381         return nativeResponseValue;
2382 }
2383         // void CResult_NoneChannelMonitorUpdateErrZ_get_ok(LDKCResult_NoneChannelMonitorUpdateErrZ *NONNULL_PTR owner);
2384 /* @internal */
2385 export function CResult_NoneChannelMonitorUpdateErrZ_get_ok(owner: number): void {
2386         if(!isWasmInitialized) {
2387                 throw new Error("initializeWasm() must be awaited first!");
2388         }
2389         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_get_ok(owner);
2390         // debug statements here
2391 }
2392         // enum LDKChannelMonitorUpdateErr CResult_NoneChannelMonitorUpdateErrZ_get_err(LDKCResult_NoneChannelMonitorUpdateErrZ *NONNULL_PTR owner);
2393 /* @internal */
2394 export function CResult_NoneChannelMonitorUpdateErrZ_get_err(owner: number): ChannelMonitorUpdateErr {
2395         if(!isWasmInitialized) {
2396                 throw new Error("initializeWasm() must be awaited first!");
2397         }
2398         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_get_err(owner);
2399         return nativeResponseValue;
2400 }
2401 /* @internal */
2402 export class LDKMonitorEvent {
2403         protected constructor() {}
2404 }
2405 /* @internal */
2406 export function LDKMonitorEvent_ty_from_ptr(ptr: number): number {
2407         if(!isWasmInitialized) {
2408                 throw new Error("initializeWasm() must be awaited first!");
2409         }
2410         const nativeResponseValue = wasm.TS_LDKMonitorEvent_ty_from_ptr(ptr);
2411         return nativeResponseValue;
2412 }
2413 /* @internal */
2414 export function LDKMonitorEvent_HTLCEvent_get_htlc_event(ptr: number): number {
2415         if(!isWasmInitialized) {
2416                 throw new Error("initializeWasm() must be awaited first!");
2417         }
2418         const nativeResponseValue = wasm.TS_LDKMonitorEvent_HTLCEvent_get_htlc_event(ptr);
2419         return nativeResponseValue;
2420 }
2421 /* @internal */
2422 export function LDKMonitorEvent_CommitmentTxConfirmed_get_commitment_tx_confirmed(ptr: number): number {
2423         if(!isWasmInitialized) {
2424                 throw new Error("initializeWasm() must be awaited first!");
2425         }
2426         const nativeResponseValue = wasm.TS_LDKMonitorEvent_CommitmentTxConfirmed_get_commitment_tx_confirmed(ptr);
2427         return nativeResponseValue;
2428 }
2429 /* @internal */
2430 export function LDKMonitorEvent_UpdateCompleted_get_funding_txo(ptr: number): number {
2431         if(!isWasmInitialized) {
2432                 throw new Error("initializeWasm() must be awaited first!");
2433         }
2434         const nativeResponseValue = wasm.TS_LDKMonitorEvent_UpdateCompleted_get_funding_txo(ptr);
2435         return nativeResponseValue;
2436 }
2437 /* @internal */
2438 export function LDKMonitorEvent_UpdateCompleted_get_monitor_update_id(ptr: number): bigint {
2439         if(!isWasmInitialized) {
2440                 throw new Error("initializeWasm() must be awaited first!");
2441         }
2442         const nativeResponseValue = wasm.TS_LDKMonitorEvent_UpdateCompleted_get_monitor_update_id(ptr);
2443         return nativeResponseValue;
2444 }
2445 /* @internal */
2446 export function LDKMonitorEvent_UpdateFailed_get_update_failed(ptr: number): number {
2447         if(!isWasmInitialized) {
2448                 throw new Error("initializeWasm() must be awaited first!");
2449         }
2450         const nativeResponseValue = wasm.TS_LDKMonitorEvent_UpdateFailed_get_update_failed(ptr);
2451         return nativeResponseValue;
2452 }
2453         // struct LDKOutPoint C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_a(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
2454 /* @internal */
2455 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_a(owner: number): number {
2456         if(!isWasmInitialized) {
2457                 throw new Error("initializeWasm() must be awaited first!");
2458         }
2459         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_a(owner);
2460         return nativeResponseValue;
2461 }
2462         // struct LDKCVec_MonitorEventZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_b(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
2463 /* @internal */
2464 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_b(owner: number): number {
2465         if(!isWasmInitialized) {
2466                 throw new Error("initializeWasm() must be awaited first!");
2467         }
2468         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_b(owner);
2469         return nativeResponseValue;
2470 }
2471         // struct LDKPublicKey C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_c(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR owner);
2472 /* @internal */
2473 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_c(owner: number): number {
2474         if(!isWasmInitialized) {
2475                 throw new Error("initializeWasm() must be awaited first!");
2476         }
2477         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_get_c(owner);
2478         return nativeResponseValue;
2479 }
2480 /* @internal */
2481 export class LDKCOption_C2Tuple_usizeTransactionZZ {
2482         protected constructor() {}
2483 }
2484 /* @internal */
2485 export function LDKCOption_C2Tuple_usizeTransactionZZ_ty_from_ptr(ptr: number): number {
2486         if(!isWasmInitialized) {
2487                 throw new Error("initializeWasm() must be awaited first!");
2488         }
2489         const nativeResponseValue = wasm.TS_LDKCOption_C2Tuple_usizeTransactionZZ_ty_from_ptr(ptr);
2490         return nativeResponseValue;
2491 }
2492 /* @internal */
2493 export function LDKCOption_C2Tuple_usizeTransactionZZ_Some_get_some(ptr: number): number {
2494         if(!isWasmInitialized) {
2495                 throw new Error("initializeWasm() must be awaited first!");
2496         }
2497         const nativeResponseValue = wasm.TS_LDKCOption_C2Tuple_usizeTransactionZZ_Some_get_some(ptr);
2498         return nativeResponseValue;
2499 }
2500         // struct LDKFixedPenaltyScorer CResult_FixedPenaltyScorerDecodeErrorZ_get_ok(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR owner);
2501 /* @internal */
2502 export function CResult_FixedPenaltyScorerDecodeErrorZ_get_ok(owner: number): number {
2503         if(!isWasmInitialized) {
2504                 throw new Error("initializeWasm() must be awaited first!");
2505         }
2506         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_get_ok(owner);
2507         return nativeResponseValue;
2508 }
2509         // struct LDKDecodeError CResult_FixedPenaltyScorerDecodeErrorZ_get_err(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR owner);
2510 /* @internal */
2511 export function CResult_FixedPenaltyScorerDecodeErrorZ_get_err(owner: number): number {
2512         if(!isWasmInitialized) {
2513                 throw new Error("initializeWasm() must be awaited first!");
2514         }
2515         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_get_err(owner);
2516         return nativeResponseValue;
2517 }
2518         // uint64_t C2Tuple_u64u64Z_get_a(LDKC2Tuple_u64u64Z *NONNULL_PTR owner);
2519 /* @internal */
2520 export function C2Tuple_u64u64Z_get_a(owner: number): bigint {
2521         if(!isWasmInitialized) {
2522                 throw new Error("initializeWasm() must be awaited first!");
2523         }
2524         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_get_a(owner);
2525         return nativeResponseValue;
2526 }
2527         // uint64_t C2Tuple_u64u64Z_get_b(LDKC2Tuple_u64u64Z *NONNULL_PTR owner);
2528 /* @internal */
2529 export function C2Tuple_u64u64Z_get_b(owner: number): bigint {
2530         if(!isWasmInitialized) {
2531                 throw new Error("initializeWasm() must be awaited first!");
2532         }
2533         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_get_b(owner);
2534         return nativeResponseValue;
2535 }
2536 /* @internal */
2537 export class LDKCOption_C2Tuple_u64u64ZZ {
2538         protected constructor() {}
2539 }
2540 /* @internal */
2541 export function LDKCOption_C2Tuple_u64u64ZZ_ty_from_ptr(ptr: number): number {
2542         if(!isWasmInitialized) {
2543                 throw new Error("initializeWasm() must be awaited first!");
2544         }
2545         const nativeResponseValue = wasm.TS_LDKCOption_C2Tuple_u64u64ZZ_ty_from_ptr(ptr);
2546         return nativeResponseValue;
2547 }
2548 /* @internal */
2549 export function LDKCOption_C2Tuple_u64u64ZZ_Some_get_some(ptr: number): number {
2550         if(!isWasmInitialized) {
2551                 throw new Error("initializeWasm() must be awaited first!");
2552         }
2553         const nativeResponseValue = wasm.TS_LDKCOption_C2Tuple_u64u64ZZ_Some_get_some(ptr);
2554         return nativeResponseValue;
2555 }
2556 /* @internal */
2557 export interface LDKLogger {
2558         log (record: number): void;
2559 }
2560
2561 /* @internal */
2562 export function LDKLogger_new(impl: LDKLogger): number {
2563         if(!isWasmInitialized) {
2564                 throw new Error("initializeWasm() must be awaited first!");
2565         }
2566         var new_obj_idx = js_objs.length;
2567         for (var i = 0; i < js_objs.length; i++) {
2568                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
2569         }
2570         js_objs[i] = new WeakRef(impl);
2571         return wasm.TS_LDKLogger_new(i);
2572 }
2573         // struct LDKProbabilisticScorer *CResult_ProbabilisticScorerDecodeErrorZ_get_ok(LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR owner);
2574 /* @internal */
2575 export function CResult_ProbabilisticScorerDecodeErrorZ_get_ok(owner: number): number {
2576         if(!isWasmInitialized) {
2577                 throw new Error("initializeWasm() must be awaited first!");
2578         }
2579         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_get_ok(owner);
2580         return nativeResponseValue;
2581 }
2582         // struct LDKDecodeError CResult_ProbabilisticScorerDecodeErrorZ_get_err(LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR owner);
2583 /* @internal */
2584 export function CResult_ProbabilisticScorerDecodeErrorZ_get_err(owner: number): number {
2585         if(!isWasmInitialized) {
2586                 throw new Error("initializeWasm() must be awaited first!");
2587         }
2588         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_get_err(owner);
2589         return nativeResponseValue;
2590 }
2591         // struct LDKInitFeatures CResult_InitFeaturesDecodeErrorZ_get_ok(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR owner);
2592 /* @internal */
2593 export function CResult_InitFeaturesDecodeErrorZ_get_ok(owner: number): number {
2594         if(!isWasmInitialized) {
2595                 throw new Error("initializeWasm() must be awaited first!");
2596         }
2597         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_get_ok(owner);
2598         return nativeResponseValue;
2599 }
2600         // struct LDKDecodeError CResult_InitFeaturesDecodeErrorZ_get_err(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR owner);
2601 /* @internal */
2602 export function CResult_InitFeaturesDecodeErrorZ_get_err(owner: number): number {
2603         if(!isWasmInitialized) {
2604                 throw new Error("initializeWasm() must be awaited first!");
2605         }
2606         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_get_err(owner);
2607         return nativeResponseValue;
2608 }
2609         // struct LDKChannelFeatures CResult_ChannelFeaturesDecodeErrorZ_get_ok(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR owner);
2610 /* @internal */
2611 export function CResult_ChannelFeaturesDecodeErrorZ_get_ok(owner: number): number {
2612         if(!isWasmInitialized) {
2613                 throw new Error("initializeWasm() must be awaited first!");
2614         }
2615         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_get_ok(owner);
2616         return nativeResponseValue;
2617 }
2618         // struct LDKDecodeError CResult_ChannelFeaturesDecodeErrorZ_get_err(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR owner);
2619 /* @internal */
2620 export function CResult_ChannelFeaturesDecodeErrorZ_get_err(owner: number): number {
2621         if(!isWasmInitialized) {
2622                 throw new Error("initializeWasm() must be awaited first!");
2623         }
2624         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_get_err(owner);
2625         return nativeResponseValue;
2626 }
2627         // struct LDKNodeFeatures CResult_NodeFeaturesDecodeErrorZ_get_ok(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR owner);
2628 /* @internal */
2629 export function CResult_NodeFeaturesDecodeErrorZ_get_ok(owner: number): number {
2630         if(!isWasmInitialized) {
2631                 throw new Error("initializeWasm() must be awaited first!");
2632         }
2633         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_get_ok(owner);
2634         return nativeResponseValue;
2635 }
2636         // struct LDKDecodeError CResult_NodeFeaturesDecodeErrorZ_get_err(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR owner);
2637 /* @internal */
2638 export function CResult_NodeFeaturesDecodeErrorZ_get_err(owner: number): number {
2639         if(!isWasmInitialized) {
2640                 throw new Error("initializeWasm() must be awaited first!");
2641         }
2642         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_get_err(owner);
2643         return nativeResponseValue;
2644 }
2645         // struct LDKInvoiceFeatures CResult_InvoiceFeaturesDecodeErrorZ_get_ok(LDKCResult_InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
2646 /* @internal */
2647 export function CResult_InvoiceFeaturesDecodeErrorZ_get_ok(owner: number): number {
2648         if(!isWasmInitialized) {
2649                 throw new Error("initializeWasm() must be awaited first!");
2650         }
2651         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_get_ok(owner);
2652         return nativeResponseValue;
2653 }
2654         // struct LDKDecodeError CResult_InvoiceFeaturesDecodeErrorZ_get_err(LDKCResult_InvoiceFeaturesDecodeErrorZ *NONNULL_PTR owner);
2655 /* @internal */
2656 export function CResult_InvoiceFeaturesDecodeErrorZ_get_err(owner: number): number {
2657         if(!isWasmInitialized) {
2658                 throw new Error("initializeWasm() must be awaited first!");
2659         }
2660         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_get_err(owner);
2661         return nativeResponseValue;
2662 }
2663         // struct LDKChannelTypeFeatures CResult_ChannelTypeFeaturesDecodeErrorZ_get_ok(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR owner);
2664 /* @internal */
2665 export function CResult_ChannelTypeFeaturesDecodeErrorZ_get_ok(owner: number): number {
2666         if(!isWasmInitialized) {
2667                 throw new Error("initializeWasm() must be awaited first!");
2668         }
2669         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_get_ok(owner);
2670         return nativeResponseValue;
2671 }
2672         // struct LDKDecodeError CResult_ChannelTypeFeaturesDecodeErrorZ_get_err(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR owner);
2673 /* @internal */
2674 export function CResult_ChannelTypeFeaturesDecodeErrorZ_get_err(owner: number): number {
2675         if(!isWasmInitialized) {
2676                 throw new Error("initializeWasm() must be awaited first!");
2677         }
2678         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_get_err(owner);
2679         return nativeResponseValue;
2680 }
2681         // struct LDKNodeId CResult_NodeIdDecodeErrorZ_get_ok(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR owner);
2682 /* @internal */
2683 export function CResult_NodeIdDecodeErrorZ_get_ok(owner: number): number {
2684         if(!isWasmInitialized) {
2685                 throw new Error("initializeWasm() must be awaited first!");
2686         }
2687         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_get_ok(owner);
2688         return nativeResponseValue;
2689 }
2690         // struct LDKDecodeError CResult_NodeIdDecodeErrorZ_get_err(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR owner);
2691 /* @internal */
2692 export function CResult_NodeIdDecodeErrorZ_get_err(owner: number): number {
2693         if(!isWasmInitialized) {
2694                 throw new Error("initializeWasm() must be awaited first!");
2695         }
2696         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_get_err(owner);
2697         return nativeResponseValue;
2698 }
2699         // struct LDKCOption_NetworkUpdateZ CResult_COption_NetworkUpdateZDecodeErrorZ_get_ok(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR owner);
2700 /* @internal */
2701 export function CResult_COption_NetworkUpdateZDecodeErrorZ_get_ok(owner: number): number {
2702         if(!isWasmInitialized) {
2703                 throw new Error("initializeWasm() must be awaited first!");
2704         }
2705         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_get_ok(owner);
2706         return nativeResponseValue;
2707 }
2708         // struct LDKDecodeError CResult_COption_NetworkUpdateZDecodeErrorZ_get_err(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR owner);
2709 /* @internal */
2710 export function CResult_COption_NetworkUpdateZDecodeErrorZ_get_err(owner: number): number {
2711         if(!isWasmInitialized) {
2712                 throw new Error("initializeWasm() must be awaited first!");
2713         }
2714         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_get_err(owner);
2715         return nativeResponseValue;
2716 }
2717 /* @internal */
2718 export interface LDKAccess {
2719         get_utxo (genesis_hash: number, short_channel_id: bigint): number;
2720 }
2721
2722 /* @internal */
2723 export function LDKAccess_new(impl: LDKAccess): number {
2724         if(!isWasmInitialized) {
2725                 throw new Error("initializeWasm() must be awaited first!");
2726         }
2727         var new_obj_idx = js_objs.length;
2728         for (var i = 0; i < js_objs.length; i++) {
2729                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
2730         }
2731         js_objs[i] = new WeakRef(impl);
2732         return wasm.TS_LDKAccess_new(i);
2733 }
2734         // LDKCResult_TxOutAccessErrorZ Access_get_utxo LDKAccess *NONNULL_PTR this_arg, const uint8_t (*genesis_hash)[32], uint64_t short_channel_id
2735 /* @internal */
2736 export function Access_get_utxo(this_arg: number, genesis_hash: number, short_channel_id: bigint): number {
2737         if(!isWasmInitialized) {
2738                 throw new Error("initializeWasm() must be awaited first!");
2739         }
2740         const nativeResponseValue = wasm.TS_Access_get_utxo(this_arg, genesis_hash, short_channel_id);
2741         return nativeResponseValue;
2742 }
2743 /* @internal */
2744 export class LDKCOption_AccessZ {
2745         protected constructor() {}
2746 }
2747 /* @internal */
2748 export function LDKCOption_AccessZ_ty_from_ptr(ptr: number): number {
2749         if(!isWasmInitialized) {
2750                 throw new Error("initializeWasm() must be awaited first!");
2751         }
2752         const nativeResponseValue = wasm.TS_LDKCOption_AccessZ_ty_from_ptr(ptr);
2753         return nativeResponseValue;
2754 }
2755 /* @internal */
2756 export function LDKCOption_AccessZ_Some_get_some(ptr: number): number {
2757         if(!isWasmInitialized) {
2758                 throw new Error("initializeWasm() must be awaited first!");
2759         }
2760         const nativeResponseValue = wasm.TS_LDKCOption_AccessZ_Some_get_some(ptr);
2761         return nativeResponseValue;
2762 }
2763         // bool CResult_boolLightningErrorZ_get_ok(LDKCResult_boolLightningErrorZ *NONNULL_PTR owner);
2764 /* @internal */
2765 export function CResult_boolLightningErrorZ_get_ok(owner: number): boolean {
2766         if(!isWasmInitialized) {
2767                 throw new Error("initializeWasm() must be awaited first!");
2768         }
2769         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_get_ok(owner);
2770         return nativeResponseValue;
2771 }
2772         // struct LDKLightningError CResult_boolLightningErrorZ_get_err(LDKCResult_boolLightningErrorZ *NONNULL_PTR owner);
2773 /* @internal */
2774 export function CResult_boolLightningErrorZ_get_err(owner: number): number {
2775         if(!isWasmInitialized) {
2776                 throw new Error("initializeWasm() must be awaited first!");
2777         }
2778         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_get_err(owner);
2779         return nativeResponseValue;
2780 }
2781         // struct LDKChannelAnnouncement C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_a(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
2782 /* @internal */
2783 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_a(owner: number): number {
2784         if(!isWasmInitialized) {
2785                 throw new Error("initializeWasm() must be awaited first!");
2786         }
2787         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_a(owner);
2788         return nativeResponseValue;
2789 }
2790         // struct LDKChannelUpdate C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_b(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
2791 /* @internal */
2792 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_b(owner: number): number {
2793         if(!isWasmInitialized) {
2794                 throw new Error("initializeWasm() must be awaited first!");
2795         }
2796         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_b(owner);
2797         return nativeResponseValue;
2798 }
2799         // struct LDKChannelUpdate C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_c(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR owner);
2800 /* @internal */
2801 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_c(owner: number): number {
2802         if(!isWasmInitialized) {
2803                 throw new Error("initializeWasm() must be awaited first!");
2804         }
2805         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_get_c(owner);
2806         return nativeResponseValue;
2807 }
2808         // void CResult_NoneLightningErrorZ_get_ok(LDKCResult_NoneLightningErrorZ *NONNULL_PTR owner);
2809 /* @internal */
2810 export function CResult_NoneLightningErrorZ_get_ok(owner: number): void {
2811         if(!isWasmInitialized) {
2812                 throw new Error("initializeWasm() must be awaited first!");
2813         }
2814         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_get_ok(owner);
2815         // debug statements here
2816 }
2817         // struct LDKLightningError CResult_NoneLightningErrorZ_get_err(LDKCResult_NoneLightningErrorZ *NONNULL_PTR owner);
2818 /* @internal */
2819 export function CResult_NoneLightningErrorZ_get_err(owner: number): number {
2820         if(!isWasmInitialized) {
2821                 throw new Error("initializeWasm() must be awaited first!");
2822         }
2823         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_get_err(owner);
2824         return nativeResponseValue;
2825 }
2826         // struct LDKChannelUpdateInfo CResult_ChannelUpdateInfoDecodeErrorZ_get_ok(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR owner);
2827 /* @internal */
2828 export function CResult_ChannelUpdateInfoDecodeErrorZ_get_ok(owner: number): number {
2829         if(!isWasmInitialized) {
2830                 throw new Error("initializeWasm() must be awaited first!");
2831         }
2832         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_get_ok(owner);
2833         return nativeResponseValue;
2834 }
2835         // struct LDKDecodeError CResult_ChannelUpdateInfoDecodeErrorZ_get_err(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR owner);
2836 /* @internal */
2837 export function CResult_ChannelUpdateInfoDecodeErrorZ_get_err(owner: number): number {
2838         if(!isWasmInitialized) {
2839                 throw new Error("initializeWasm() must be awaited first!");
2840         }
2841         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_get_err(owner);
2842         return nativeResponseValue;
2843 }
2844         // struct LDKChannelInfo CResult_ChannelInfoDecodeErrorZ_get_ok(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR owner);
2845 /* @internal */
2846 export function CResult_ChannelInfoDecodeErrorZ_get_ok(owner: number): number {
2847         if(!isWasmInitialized) {
2848                 throw new Error("initializeWasm() must be awaited first!");
2849         }
2850         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_get_ok(owner);
2851         return nativeResponseValue;
2852 }
2853         // struct LDKDecodeError CResult_ChannelInfoDecodeErrorZ_get_err(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR owner);
2854 /* @internal */
2855 export function CResult_ChannelInfoDecodeErrorZ_get_err(owner: number): number {
2856         if(!isWasmInitialized) {
2857                 throw new Error("initializeWasm() must be awaited first!");
2858         }
2859         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_get_err(owner);
2860         return nativeResponseValue;
2861 }
2862         // struct LDKRoutingFees CResult_RoutingFeesDecodeErrorZ_get_ok(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR owner);
2863 /* @internal */
2864 export function CResult_RoutingFeesDecodeErrorZ_get_ok(owner: number): number {
2865         if(!isWasmInitialized) {
2866                 throw new Error("initializeWasm() must be awaited first!");
2867         }
2868         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_get_ok(owner);
2869         return nativeResponseValue;
2870 }
2871         // struct LDKDecodeError CResult_RoutingFeesDecodeErrorZ_get_err(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR owner);
2872 /* @internal */
2873 export function CResult_RoutingFeesDecodeErrorZ_get_err(owner: number): number {
2874         if(!isWasmInitialized) {
2875                 throw new Error("initializeWasm() must be awaited first!");
2876         }
2877         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_get_err(owner);
2878         return nativeResponseValue;
2879 }
2880 /* @internal */
2881 export class LDKNetAddress {
2882         protected constructor() {}
2883 }
2884 /* @internal */
2885 export function LDKNetAddress_ty_from_ptr(ptr: number): number {
2886         if(!isWasmInitialized) {
2887                 throw new Error("initializeWasm() must be awaited first!");
2888         }
2889         const nativeResponseValue = wasm.TS_LDKNetAddress_ty_from_ptr(ptr);
2890         return nativeResponseValue;
2891 }
2892 /* @internal */
2893 export function LDKNetAddress_IPv4_get_addr(ptr: number): number {
2894         if(!isWasmInitialized) {
2895                 throw new Error("initializeWasm() must be awaited first!");
2896         }
2897         const nativeResponseValue = wasm.TS_LDKNetAddress_IPv4_get_addr(ptr);
2898         return nativeResponseValue;
2899 }
2900 /* @internal */
2901 export function LDKNetAddress_IPv4_get_port(ptr: number): number {
2902         if(!isWasmInitialized) {
2903                 throw new Error("initializeWasm() must be awaited first!");
2904         }
2905         const nativeResponseValue = wasm.TS_LDKNetAddress_IPv4_get_port(ptr);
2906         return nativeResponseValue;
2907 }
2908 /* @internal */
2909 export function LDKNetAddress_IPv6_get_addr(ptr: number): number {
2910         if(!isWasmInitialized) {
2911                 throw new Error("initializeWasm() must be awaited first!");
2912         }
2913         const nativeResponseValue = wasm.TS_LDKNetAddress_IPv6_get_addr(ptr);
2914         return nativeResponseValue;
2915 }
2916 /* @internal */
2917 export function LDKNetAddress_IPv6_get_port(ptr: number): number {
2918         if(!isWasmInitialized) {
2919                 throw new Error("initializeWasm() must be awaited first!");
2920         }
2921         const nativeResponseValue = wasm.TS_LDKNetAddress_IPv6_get_port(ptr);
2922         return nativeResponseValue;
2923 }
2924 /* @internal */
2925 export function LDKNetAddress_OnionV2_get_onion_v2(ptr: number): number {
2926         if(!isWasmInitialized) {
2927                 throw new Error("initializeWasm() must be awaited first!");
2928         }
2929         const nativeResponseValue = wasm.TS_LDKNetAddress_OnionV2_get_onion_v2(ptr);
2930         return nativeResponseValue;
2931 }
2932 /* @internal */
2933 export function LDKNetAddress_OnionV3_get_ed25519_pubkey(ptr: number): number {
2934         if(!isWasmInitialized) {
2935                 throw new Error("initializeWasm() must be awaited first!");
2936         }
2937         const nativeResponseValue = wasm.TS_LDKNetAddress_OnionV3_get_ed25519_pubkey(ptr);
2938         return nativeResponseValue;
2939 }
2940 /* @internal */
2941 export function LDKNetAddress_OnionV3_get_checksum(ptr: number): number {
2942         if(!isWasmInitialized) {
2943                 throw new Error("initializeWasm() must be awaited first!");
2944         }
2945         const nativeResponseValue = wasm.TS_LDKNetAddress_OnionV3_get_checksum(ptr);
2946         return nativeResponseValue;
2947 }
2948 /* @internal */
2949 export function LDKNetAddress_OnionV3_get_version(ptr: number): number {
2950         if(!isWasmInitialized) {
2951                 throw new Error("initializeWasm() must be awaited first!");
2952         }
2953         const nativeResponseValue = wasm.TS_LDKNetAddress_OnionV3_get_version(ptr);
2954         return nativeResponseValue;
2955 }
2956 /* @internal */
2957 export function LDKNetAddress_OnionV3_get_port(ptr: number): number {
2958         if(!isWasmInitialized) {
2959                 throw new Error("initializeWasm() must be awaited first!");
2960         }
2961         const nativeResponseValue = wasm.TS_LDKNetAddress_OnionV3_get_port(ptr);
2962         return nativeResponseValue;
2963 }
2964 /* @internal */
2965 export function LDKNetAddress_Hostname_get_hostname(ptr: number): number {
2966         if(!isWasmInitialized) {
2967                 throw new Error("initializeWasm() must be awaited first!");
2968         }
2969         const nativeResponseValue = wasm.TS_LDKNetAddress_Hostname_get_hostname(ptr);
2970         return nativeResponseValue;
2971 }
2972 /* @internal */
2973 export function LDKNetAddress_Hostname_get_port(ptr: number): number {
2974         if(!isWasmInitialized) {
2975                 throw new Error("initializeWasm() must be awaited first!");
2976         }
2977         const nativeResponseValue = wasm.TS_LDKNetAddress_Hostname_get_port(ptr);
2978         return nativeResponseValue;
2979 }
2980         // struct LDKNodeAnnouncementInfo CResult_NodeAnnouncementInfoDecodeErrorZ_get_ok(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR owner);
2981 /* @internal */
2982 export function CResult_NodeAnnouncementInfoDecodeErrorZ_get_ok(owner: number): number {
2983         if(!isWasmInitialized) {
2984                 throw new Error("initializeWasm() must be awaited first!");
2985         }
2986         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_get_ok(owner);
2987         return nativeResponseValue;
2988 }
2989         // struct LDKDecodeError CResult_NodeAnnouncementInfoDecodeErrorZ_get_err(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR owner);
2990 /* @internal */
2991 export function CResult_NodeAnnouncementInfoDecodeErrorZ_get_err(owner: number): number {
2992         if(!isWasmInitialized) {
2993                 throw new Error("initializeWasm() must be awaited first!");
2994         }
2995         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_get_err(owner);
2996         return nativeResponseValue;
2997 }
2998         // struct LDKNodeAlias CResult_NodeAliasDecodeErrorZ_get_ok(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR owner);
2999 /* @internal */
3000 export function CResult_NodeAliasDecodeErrorZ_get_ok(owner: number): number {
3001         if(!isWasmInitialized) {
3002                 throw new Error("initializeWasm() must be awaited first!");
3003         }
3004         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_get_ok(owner);
3005         return nativeResponseValue;
3006 }
3007         // struct LDKDecodeError CResult_NodeAliasDecodeErrorZ_get_err(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR owner);
3008 /* @internal */
3009 export function CResult_NodeAliasDecodeErrorZ_get_err(owner: number): number {
3010         if(!isWasmInitialized) {
3011                 throw new Error("initializeWasm() must be awaited first!");
3012         }
3013         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_get_err(owner);
3014         return nativeResponseValue;
3015 }
3016         // struct LDKNodeInfo CResult_NodeInfoDecodeErrorZ_get_ok(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR owner);
3017 /* @internal */
3018 export function CResult_NodeInfoDecodeErrorZ_get_ok(owner: number): number {
3019         if(!isWasmInitialized) {
3020                 throw new Error("initializeWasm() must be awaited first!");
3021         }
3022         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_get_ok(owner);
3023         return nativeResponseValue;
3024 }
3025         // struct LDKDecodeError CResult_NodeInfoDecodeErrorZ_get_err(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR owner);
3026 /* @internal */
3027 export function CResult_NodeInfoDecodeErrorZ_get_err(owner: number): number {
3028         if(!isWasmInitialized) {
3029                 throw new Error("initializeWasm() must be awaited first!");
3030         }
3031         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_get_err(owner);
3032         return nativeResponseValue;
3033 }
3034         // struct LDKNetworkGraph *CResult_NetworkGraphDecodeErrorZ_get_ok(LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR owner);
3035 /* @internal */
3036 export function CResult_NetworkGraphDecodeErrorZ_get_ok(owner: number): number {
3037         if(!isWasmInitialized) {
3038                 throw new Error("initializeWasm() must be awaited first!");
3039         }
3040         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_get_ok(owner);
3041         return nativeResponseValue;
3042 }
3043         // struct LDKDecodeError CResult_NetworkGraphDecodeErrorZ_get_err(LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR owner);
3044 /* @internal */
3045 export function CResult_NetworkGraphDecodeErrorZ_get_err(owner: number): number {
3046         if(!isWasmInitialized) {
3047                 throw new Error("initializeWasm() must be awaited first!");
3048         }
3049         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_get_err(owner);
3050         return nativeResponseValue;
3051 }
3052 /* @internal */
3053 export class LDKCOption_CVec_NetAddressZZ {
3054         protected constructor() {}
3055 }
3056 /* @internal */
3057 export function LDKCOption_CVec_NetAddressZZ_ty_from_ptr(ptr: number): number {
3058         if(!isWasmInitialized) {
3059                 throw new Error("initializeWasm() must be awaited first!");
3060         }
3061         const nativeResponseValue = wasm.TS_LDKCOption_CVec_NetAddressZZ_ty_from_ptr(ptr);
3062         return nativeResponseValue;
3063 }
3064 /* @internal */
3065 export function LDKCOption_CVec_NetAddressZZ_Some_get_some(ptr: number): number {
3066         if(!isWasmInitialized) {
3067                 throw new Error("initializeWasm() must be awaited first!");
3068         }
3069         const nativeResponseValue = wasm.TS_LDKCOption_CVec_NetAddressZZ_Some_get_some(ptr);
3070         return nativeResponseValue;
3071 }
3072         // struct LDKDelayedPaymentOutputDescriptor CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3073 /* @internal */
3074 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_ok(owner: number): number {
3075         if(!isWasmInitialized) {
3076                 throw new Error("initializeWasm() must be awaited first!");
3077         }
3078         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_ok(owner);
3079         return nativeResponseValue;
3080 }
3081         // struct LDKDecodeError CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_err(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3082 /* @internal */
3083 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_err(owner: number): number {
3084         if(!isWasmInitialized) {
3085                 throw new Error("initializeWasm() must be awaited first!");
3086         }
3087         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_get_err(owner);
3088         return nativeResponseValue;
3089 }
3090         // struct LDKStaticPaymentOutputDescriptor CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3091 /* @internal */
3092 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_ok(owner: number): number {
3093         if(!isWasmInitialized) {
3094                 throw new Error("initializeWasm() must be awaited first!");
3095         }
3096         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_ok(owner);
3097         return nativeResponseValue;
3098 }
3099         // struct LDKDecodeError CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_err(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3100 /* @internal */
3101 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_err(owner: number): number {
3102         if(!isWasmInitialized) {
3103                 throw new Error("initializeWasm() must be awaited first!");
3104         }
3105         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_get_err(owner);
3106         return nativeResponseValue;
3107 }
3108         // struct LDKSpendableOutputDescriptor CResult_SpendableOutputDescriptorDecodeErrorZ_get_ok(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3109 /* @internal */
3110 export function CResult_SpendableOutputDescriptorDecodeErrorZ_get_ok(owner: number): number {
3111         if(!isWasmInitialized) {
3112                 throw new Error("initializeWasm() must be awaited first!");
3113         }
3114         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_get_ok(owner);
3115         return nativeResponseValue;
3116 }
3117         // struct LDKDecodeError CResult_SpendableOutputDescriptorDecodeErrorZ_get_err(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR owner);
3118 /* @internal */
3119 export function CResult_SpendableOutputDescriptorDecodeErrorZ_get_err(owner: number): number {
3120         if(!isWasmInitialized) {
3121                 throw new Error("initializeWasm() must be awaited first!");
3122         }
3123         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_get_err(owner);
3124         return nativeResponseValue;
3125 }
3126         // struct LDKSignature C2Tuple_SignatureCVec_SignatureZZ_get_a(LDKC2Tuple_SignatureCVec_SignatureZZ *NONNULL_PTR owner);
3127 /* @internal */
3128 export function C2Tuple_SignatureCVec_SignatureZZ_get_a(owner: number): number {
3129         if(!isWasmInitialized) {
3130                 throw new Error("initializeWasm() must be awaited first!");
3131         }
3132         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_get_a(owner);
3133         return nativeResponseValue;
3134 }
3135         // struct LDKCVec_SignatureZ C2Tuple_SignatureCVec_SignatureZZ_get_b(LDKC2Tuple_SignatureCVec_SignatureZZ *NONNULL_PTR owner);
3136 /* @internal */
3137 export function C2Tuple_SignatureCVec_SignatureZZ_get_b(owner: number): number {
3138         if(!isWasmInitialized) {
3139                 throw new Error("initializeWasm() must be awaited first!");
3140         }
3141         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_get_b(owner);
3142         return nativeResponseValue;
3143 }
3144         // struct LDKC2Tuple_SignatureCVec_SignatureZZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_ok(LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ *NONNULL_PTR owner);
3145 /* @internal */
3146 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_ok(owner: number): number {
3147         if(!isWasmInitialized) {
3148                 throw new Error("initializeWasm() must be awaited first!");
3149         }
3150         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_ok(owner);
3151         return nativeResponseValue;
3152 }
3153         // void CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_err(LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ *NONNULL_PTR owner);
3154 /* @internal */
3155 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_err(owner: number): void {
3156         if(!isWasmInitialized) {
3157                 throw new Error("initializeWasm() must be awaited first!");
3158         }
3159         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_get_err(owner);
3160         // debug statements here
3161 }
3162         // struct LDKSignature CResult_SignatureNoneZ_get_ok(LDKCResult_SignatureNoneZ *NONNULL_PTR owner);
3163 /* @internal */
3164 export function CResult_SignatureNoneZ_get_ok(owner: number): number {
3165         if(!isWasmInitialized) {
3166                 throw new Error("initializeWasm() must be awaited first!");
3167         }
3168         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_get_ok(owner);
3169         return nativeResponseValue;
3170 }
3171         // void CResult_SignatureNoneZ_get_err(LDKCResult_SignatureNoneZ *NONNULL_PTR owner);
3172 /* @internal */
3173 export function CResult_SignatureNoneZ_get_err(owner: number): void {
3174         if(!isWasmInitialized) {
3175                 throw new Error("initializeWasm() must be awaited first!");
3176         }
3177         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_get_err(owner);
3178         // debug statements here
3179 }
3180         // struct LDKSignature C2Tuple_SignatureSignatureZ_get_a(LDKC2Tuple_SignatureSignatureZ *NONNULL_PTR owner);
3181 /* @internal */
3182 export function C2Tuple_SignatureSignatureZ_get_a(owner: number): number {
3183         if(!isWasmInitialized) {
3184                 throw new Error("initializeWasm() must be awaited first!");
3185         }
3186         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_get_a(owner);
3187         return nativeResponseValue;
3188 }
3189         // struct LDKSignature C2Tuple_SignatureSignatureZ_get_b(LDKC2Tuple_SignatureSignatureZ *NONNULL_PTR owner);
3190 /* @internal */
3191 export function C2Tuple_SignatureSignatureZ_get_b(owner: number): number {
3192         if(!isWasmInitialized) {
3193                 throw new Error("initializeWasm() must be awaited first!");
3194         }
3195         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_get_b(owner);
3196         return nativeResponseValue;
3197 }
3198         // struct LDKC2Tuple_SignatureSignatureZ CResult_C2Tuple_SignatureSignatureZNoneZ_get_ok(LDKCResult_C2Tuple_SignatureSignatureZNoneZ *NONNULL_PTR owner);
3199 /* @internal */
3200 export function CResult_C2Tuple_SignatureSignatureZNoneZ_get_ok(owner: number): number {
3201         if(!isWasmInitialized) {
3202                 throw new Error("initializeWasm() must be awaited first!");
3203         }
3204         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_get_ok(owner);
3205         return nativeResponseValue;
3206 }
3207         // void CResult_C2Tuple_SignatureSignatureZNoneZ_get_err(LDKCResult_C2Tuple_SignatureSignatureZNoneZ *NONNULL_PTR owner);
3208 /* @internal */
3209 export function CResult_C2Tuple_SignatureSignatureZNoneZ_get_err(owner: number): void {
3210         if(!isWasmInitialized) {
3211                 throw new Error("initializeWasm() must be awaited first!");
3212         }
3213         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_get_err(owner);
3214         // debug statements here
3215 }
3216         // struct LDKSecretKey CResult_SecretKeyNoneZ_get_ok(LDKCResult_SecretKeyNoneZ *NONNULL_PTR owner);
3217 /* @internal */
3218 export function CResult_SecretKeyNoneZ_get_ok(owner: number): number {
3219         if(!isWasmInitialized) {
3220                 throw new Error("initializeWasm() must be awaited first!");
3221         }
3222         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_get_ok(owner);
3223         return nativeResponseValue;
3224 }
3225         // void CResult_SecretKeyNoneZ_get_err(LDKCResult_SecretKeyNoneZ *NONNULL_PTR owner);
3226 /* @internal */
3227 export function CResult_SecretKeyNoneZ_get_err(owner: number): void {
3228         if(!isWasmInitialized) {
3229                 throw new Error("initializeWasm() must be awaited first!");
3230         }
3231         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_get_err(owner);
3232         // debug statements here
3233 }
3234 /* @internal */
3235 export interface LDKBaseSign {
3236         get_per_commitment_point (idx: bigint): number;
3237         release_commitment_secret (idx: bigint): number;
3238         validate_holder_commitment (holder_tx: number, preimages: number): number;
3239         channel_keys_id (): number;
3240         sign_counterparty_commitment (commitment_tx: number, preimages: number): number;
3241         validate_counterparty_revocation (idx: bigint, secret: number): number;
3242         sign_holder_commitment_and_htlcs (commitment_tx: number): number;
3243         sign_justice_revoked_output (justice_tx: number, input: number, amount: bigint, per_commitment_key: number): number;
3244         sign_justice_revoked_htlc (justice_tx: number, input: number, amount: bigint, per_commitment_key: number, htlc: number): number;
3245         sign_counterparty_htlc_transaction (htlc_tx: number, input: number, amount: bigint, per_commitment_point: number, htlc: number): number;
3246         sign_closing_transaction (closing_tx: number): number;
3247         sign_channel_announcement (msg: number): number;
3248         ready_channel (channel_parameters: number): void;
3249 }
3250
3251 /* @internal */
3252 export function LDKBaseSign_new(impl: LDKBaseSign, pubkeys: number): number {
3253         if(!isWasmInitialized) {
3254                 throw new Error("initializeWasm() must be awaited first!");
3255         }
3256         var new_obj_idx = js_objs.length;
3257         for (var i = 0; i < js_objs.length; i++) {
3258                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
3259         }
3260         js_objs[i] = new WeakRef(impl);
3261         return wasm.TS_LDKBaseSign_new(i);
3262 }
3263         // LDKPublicKey BaseSign_get_per_commitment_point LDKBaseSign *NONNULL_PTR this_arg, uint64_t idx
3264 /* @internal */
3265 export function BaseSign_get_per_commitment_point(this_arg: number, idx: bigint): number {
3266         if(!isWasmInitialized) {
3267                 throw new Error("initializeWasm() must be awaited first!");
3268         }
3269         const nativeResponseValue = wasm.TS_BaseSign_get_per_commitment_point(this_arg, idx);
3270         return nativeResponseValue;
3271 }
3272         // LDKThirtyTwoBytes BaseSign_release_commitment_secret LDKBaseSign *NONNULL_PTR this_arg, uint64_t idx
3273 /* @internal */
3274 export function BaseSign_release_commitment_secret(this_arg: number, idx: bigint): number {
3275         if(!isWasmInitialized) {
3276                 throw new Error("initializeWasm() must be awaited first!");
3277         }
3278         const nativeResponseValue = wasm.TS_BaseSign_release_commitment_secret(this_arg, idx);
3279         return nativeResponseValue;
3280 }
3281         // LDKCResult_NoneNoneZ BaseSign_validate_holder_commitment LDKBaseSign *NONNULL_PTR this_arg, const struct LDKHolderCommitmentTransaction *NONNULL_PTR holder_tx, struct LDKCVec_PaymentPreimageZ preimages
3282 /* @internal */
3283 export function BaseSign_validate_holder_commitment(this_arg: number, holder_tx: number, preimages: number): number {
3284         if(!isWasmInitialized) {
3285                 throw new Error("initializeWasm() must be awaited first!");
3286         }
3287         const nativeResponseValue = wasm.TS_BaseSign_validate_holder_commitment(this_arg, holder_tx, preimages);
3288         return nativeResponseValue;
3289 }
3290         // LDKThirtyTwoBytes BaseSign_channel_keys_id LDKBaseSign *NONNULL_PTR this_arg
3291 /* @internal */
3292 export function BaseSign_channel_keys_id(this_arg: number): number {
3293         if(!isWasmInitialized) {
3294                 throw new Error("initializeWasm() must be awaited first!");
3295         }
3296         const nativeResponseValue = wasm.TS_BaseSign_channel_keys_id(this_arg);
3297         return nativeResponseValue;
3298 }
3299         // LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ BaseSign_sign_counterparty_commitment LDKBaseSign *NONNULL_PTR this_arg, const struct LDKCommitmentTransaction *NONNULL_PTR commitment_tx, struct LDKCVec_PaymentPreimageZ preimages
3300 /* @internal */
3301 export function BaseSign_sign_counterparty_commitment(this_arg: number, commitment_tx: number, preimages: number): number {
3302         if(!isWasmInitialized) {
3303                 throw new Error("initializeWasm() must be awaited first!");
3304         }
3305         const nativeResponseValue = wasm.TS_BaseSign_sign_counterparty_commitment(this_arg, commitment_tx, preimages);
3306         return nativeResponseValue;
3307 }
3308         // LDKCResult_NoneNoneZ BaseSign_validate_counterparty_revocation LDKBaseSign *NONNULL_PTR this_arg, uint64_t idx, const uint8_t (*secret)[32]
3309 /* @internal */
3310 export function BaseSign_validate_counterparty_revocation(this_arg: number, idx: bigint, secret: number): number {
3311         if(!isWasmInitialized) {
3312                 throw new Error("initializeWasm() must be awaited first!");
3313         }
3314         const nativeResponseValue = wasm.TS_BaseSign_validate_counterparty_revocation(this_arg, idx, secret);
3315         return nativeResponseValue;
3316 }
3317         // LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ BaseSign_sign_holder_commitment_and_htlcs LDKBaseSign *NONNULL_PTR this_arg, const struct LDKHolderCommitmentTransaction *NONNULL_PTR commitment_tx
3318 /* @internal */
3319 export function BaseSign_sign_holder_commitment_and_htlcs(this_arg: number, commitment_tx: number): number {
3320         if(!isWasmInitialized) {
3321                 throw new Error("initializeWasm() must be awaited first!");
3322         }
3323         const nativeResponseValue = wasm.TS_BaseSign_sign_holder_commitment_and_htlcs(this_arg, commitment_tx);
3324         return nativeResponseValue;
3325 }
3326         // LDKCResult_SignatureNoneZ BaseSign_sign_justice_revoked_output LDKBaseSign *NONNULL_PTR this_arg, struct LDKTransaction justice_tx, uintptr_t input, uint64_t amount, const uint8_t (*per_commitment_key)[32]
3327 /* @internal */
3328 export function BaseSign_sign_justice_revoked_output(this_arg: number, justice_tx: number, input: number, amount: bigint, per_commitment_key: number): number {
3329         if(!isWasmInitialized) {
3330                 throw new Error("initializeWasm() must be awaited first!");
3331         }
3332         const nativeResponseValue = wasm.TS_BaseSign_sign_justice_revoked_output(this_arg, justice_tx, input, amount, per_commitment_key);
3333         return nativeResponseValue;
3334 }
3335         // LDKCResult_SignatureNoneZ BaseSign_sign_justice_revoked_htlc LDKBaseSign *NONNULL_PTR this_arg, struct LDKTransaction justice_tx, uintptr_t input, uint64_t amount, const uint8_t (*per_commitment_key)[32], const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc
3336 /* @internal */
3337 export function BaseSign_sign_justice_revoked_htlc(this_arg: number, justice_tx: number, input: number, amount: bigint, per_commitment_key: number, htlc: number): number {
3338         if(!isWasmInitialized) {
3339                 throw new Error("initializeWasm() must be awaited first!");
3340         }
3341         const nativeResponseValue = wasm.TS_BaseSign_sign_justice_revoked_htlc(this_arg, justice_tx, input, amount, per_commitment_key, htlc);
3342         return nativeResponseValue;
3343 }
3344         // LDKCResult_SignatureNoneZ BaseSign_sign_counterparty_htlc_transaction LDKBaseSign *NONNULL_PTR this_arg, struct LDKTransaction htlc_tx, uintptr_t input, uint64_t amount, struct LDKPublicKey per_commitment_point, const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc
3345 /* @internal */
3346 export function BaseSign_sign_counterparty_htlc_transaction(this_arg: number, htlc_tx: number, input: number, amount: bigint, per_commitment_point: number, htlc: number): number {
3347         if(!isWasmInitialized) {
3348                 throw new Error("initializeWasm() must be awaited first!");
3349         }
3350         const nativeResponseValue = wasm.TS_BaseSign_sign_counterparty_htlc_transaction(this_arg, htlc_tx, input, amount, per_commitment_point, htlc);
3351         return nativeResponseValue;
3352 }
3353         // LDKCResult_SignatureNoneZ BaseSign_sign_closing_transaction LDKBaseSign *NONNULL_PTR this_arg, const struct LDKClosingTransaction *NONNULL_PTR closing_tx
3354 /* @internal */
3355 export function BaseSign_sign_closing_transaction(this_arg: number, closing_tx: number): number {
3356         if(!isWasmInitialized) {
3357                 throw new Error("initializeWasm() must be awaited first!");
3358         }
3359         const nativeResponseValue = wasm.TS_BaseSign_sign_closing_transaction(this_arg, closing_tx);
3360         return nativeResponseValue;
3361 }
3362         // LDKCResult_C2Tuple_SignatureSignatureZNoneZ BaseSign_sign_channel_announcement LDKBaseSign *NONNULL_PTR this_arg, const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR msg
3363 /* @internal */
3364 export function BaseSign_sign_channel_announcement(this_arg: number, msg: number): number {
3365         if(!isWasmInitialized) {
3366                 throw new Error("initializeWasm() must be awaited first!");
3367         }
3368         const nativeResponseValue = wasm.TS_BaseSign_sign_channel_announcement(this_arg, msg);
3369         return nativeResponseValue;
3370 }
3371         // void BaseSign_ready_channel LDKBaseSign *NONNULL_PTR this_arg, const struct LDKChannelTransactionParameters *NONNULL_PTR channel_parameters
3372 /* @internal */
3373 export function BaseSign_ready_channel(this_arg: number, channel_parameters: number): void {
3374         if(!isWasmInitialized) {
3375                 throw new Error("initializeWasm() must be awaited first!");
3376         }
3377         const nativeResponseValue = wasm.TS_BaseSign_ready_channel(this_arg, channel_parameters);
3378         // debug statements here
3379 }
3380         // LDKChannelPublicKeys BaseSign_get_pubkeys LDKBaseSign *NONNULL_PTR this_arg
3381 /* @internal */
3382 export function BaseSign_get_pubkeys(this_arg: number): number {
3383         if(!isWasmInitialized) {
3384                 throw new Error("initializeWasm() must be awaited first!");
3385         }
3386         const nativeResponseValue = wasm.TS_BaseSign_get_pubkeys(this_arg);
3387         return nativeResponseValue;
3388 }
3389 /* @internal */
3390 export interface LDKSign {
3391         write (): number;
3392 }
3393
3394 /* @internal */
3395 export function LDKSign_new(impl: LDKSign, BaseSign: LDKBaseSign, pubkeys: number): number {
3396         if(!isWasmInitialized) {
3397                 throw new Error("initializeWasm() must be awaited first!");
3398         }
3399         var new_obj_idx = js_objs.length;
3400         for (var i = 0; i < js_objs.length; i++) {
3401                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
3402         }
3403         js_objs[i] = new WeakRef(impl);
3404         return wasm.TS_LDKSign_new(i);
3405 }
3406         // LDKCVec_u8Z Sign_write LDKSign *NONNULL_PTR this_arg
3407 /* @internal */
3408 export function Sign_write(this_arg: number): number {
3409         if(!isWasmInitialized) {
3410                 throw new Error("initializeWasm() must be awaited first!");
3411         }
3412         const nativeResponseValue = wasm.TS_Sign_write(this_arg);
3413         return nativeResponseValue;
3414 }
3415         // struct LDKSign CResult_SignDecodeErrorZ_get_ok(LDKCResult_SignDecodeErrorZ *NONNULL_PTR owner);
3416 /* @internal */
3417 export function CResult_SignDecodeErrorZ_get_ok(owner: number): number {
3418         if(!isWasmInitialized) {
3419                 throw new Error("initializeWasm() must be awaited first!");
3420         }
3421         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_get_ok(owner);
3422         return nativeResponseValue;
3423 }
3424         // struct LDKDecodeError CResult_SignDecodeErrorZ_get_err(LDKCResult_SignDecodeErrorZ *NONNULL_PTR owner);
3425 /* @internal */
3426 export function CResult_SignDecodeErrorZ_get_err(owner: number): number {
3427         if(!isWasmInitialized) {
3428                 throw new Error("initializeWasm() must be awaited first!");
3429         }
3430         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_get_err(owner);
3431         return nativeResponseValue;
3432 }
3433         // struct LDKRecoverableSignature CResult_RecoverableSignatureNoneZ_get_ok(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR owner);
3434 /* @internal */
3435 export function CResult_RecoverableSignatureNoneZ_get_ok(owner: number): number {
3436         if(!isWasmInitialized) {
3437                 throw new Error("initializeWasm() must be awaited first!");
3438         }
3439         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_get_ok(owner);
3440         return nativeResponseValue;
3441 }
3442         // void CResult_RecoverableSignatureNoneZ_get_err(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR owner);
3443 /* @internal */
3444 export function CResult_RecoverableSignatureNoneZ_get_err(owner: number): void {
3445         if(!isWasmInitialized) {
3446                 throw new Error("initializeWasm() must be awaited first!");
3447         }
3448         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_get_err(owner);
3449         // debug statements here
3450 }
3451         // struct LDKCVec_CVec_u8ZZ CResult_CVec_CVec_u8ZZNoneZ_get_ok(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR owner);
3452 /* @internal */
3453 export function CResult_CVec_CVec_u8ZZNoneZ_get_ok(owner: number): number {
3454         if(!isWasmInitialized) {
3455                 throw new Error("initializeWasm() must be awaited first!");
3456         }
3457         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_get_ok(owner);
3458         return nativeResponseValue;
3459 }
3460         // void CResult_CVec_CVec_u8ZZNoneZ_get_err(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR owner);
3461 /* @internal */
3462 export function CResult_CVec_CVec_u8ZZNoneZ_get_err(owner: number): void {
3463         if(!isWasmInitialized) {
3464                 throw new Error("initializeWasm() must be awaited first!");
3465         }
3466         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_get_err(owner);
3467         // debug statements here
3468 }
3469         // struct LDKInMemorySigner CResult_InMemorySignerDecodeErrorZ_get_ok(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR owner);
3470 /* @internal */
3471 export function CResult_InMemorySignerDecodeErrorZ_get_ok(owner: number): number {
3472         if(!isWasmInitialized) {
3473                 throw new Error("initializeWasm() must be awaited first!");
3474         }
3475         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_get_ok(owner);
3476         return nativeResponseValue;
3477 }
3478         // struct LDKDecodeError CResult_InMemorySignerDecodeErrorZ_get_err(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR owner);
3479 /* @internal */
3480 export function CResult_InMemorySignerDecodeErrorZ_get_err(owner: number): number {
3481         if(!isWasmInitialized) {
3482                 throw new Error("initializeWasm() must be awaited first!");
3483         }
3484         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_get_err(owner);
3485         return nativeResponseValue;
3486 }
3487         // struct LDKTransaction CResult_TransactionNoneZ_get_ok(LDKCResult_TransactionNoneZ *NONNULL_PTR owner);
3488 /* @internal */
3489 export function CResult_TransactionNoneZ_get_ok(owner: number): number {
3490         if(!isWasmInitialized) {
3491                 throw new Error("initializeWasm() must be awaited first!");
3492         }
3493         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_get_ok(owner);
3494         return nativeResponseValue;
3495 }
3496         // void CResult_TransactionNoneZ_get_err(LDKCResult_TransactionNoneZ *NONNULL_PTR owner);
3497 /* @internal */
3498 export function CResult_TransactionNoneZ_get_err(owner: number): void {
3499         if(!isWasmInitialized) {
3500                 throw new Error("initializeWasm() must be awaited first!");
3501         }
3502         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_get_err(owner);
3503         // debug statements here
3504 }
3505 /* @internal */
3506 export class LDKCOption_u16Z {
3507         protected constructor() {}
3508 }
3509 /* @internal */
3510 export function LDKCOption_u16Z_ty_from_ptr(ptr: number): number {
3511         if(!isWasmInitialized) {
3512                 throw new Error("initializeWasm() must be awaited first!");
3513         }
3514         const nativeResponseValue = wasm.TS_LDKCOption_u16Z_ty_from_ptr(ptr);
3515         return nativeResponseValue;
3516 }
3517 /* @internal */
3518 export function LDKCOption_u16Z_Some_get_some(ptr: number): number {
3519         if(!isWasmInitialized) {
3520                 throw new Error("initializeWasm() must be awaited first!");
3521         }
3522         const nativeResponseValue = wasm.TS_LDKCOption_u16Z_Some_get_some(ptr);
3523         return nativeResponseValue;
3524 }
3525 /* @internal */
3526 export class LDKAPIError {
3527         protected constructor() {}
3528 }
3529 /* @internal */
3530 export function LDKAPIError_ty_from_ptr(ptr: number): number {
3531         if(!isWasmInitialized) {
3532                 throw new Error("initializeWasm() must be awaited first!");
3533         }
3534         const nativeResponseValue = wasm.TS_LDKAPIError_ty_from_ptr(ptr);
3535         return nativeResponseValue;
3536 }
3537 /* @internal */
3538 export function LDKAPIError_APIMisuseError_get_err(ptr: number): number {
3539         if(!isWasmInitialized) {
3540                 throw new Error("initializeWasm() must be awaited first!");
3541         }
3542         const nativeResponseValue = wasm.TS_LDKAPIError_APIMisuseError_get_err(ptr);
3543         return nativeResponseValue;
3544 }
3545 /* @internal */
3546 export function LDKAPIError_FeeRateTooHigh_get_err(ptr: number): number {
3547         if(!isWasmInitialized) {
3548                 throw new Error("initializeWasm() must be awaited first!");
3549         }
3550         const nativeResponseValue = wasm.TS_LDKAPIError_FeeRateTooHigh_get_err(ptr);
3551         return nativeResponseValue;
3552 }
3553 /* @internal */
3554 export function LDKAPIError_FeeRateTooHigh_get_feerate(ptr: number): number {
3555         if(!isWasmInitialized) {
3556                 throw new Error("initializeWasm() must be awaited first!");
3557         }
3558         const nativeResponseValue = wasm.TS_LDKAPIError_FeeRateTooHigh_get_feerate(ptr);
3559         return nativeResponseValue;
3560 }
3561 /* @internal */
3562 export function LDKAPIError_RouteError_get_err(ptr: number): number {
3563         if(!isWasmInitialized) {
3564                 throw new Error("initializeWasm() must be awaited first!");
3565         }
3566         const nativeResponseValue = wasm.TS_LDKAPIError_RouteError_get_err(ptr);
3567         return nativeResponseValue;
3568 }
3569 /* @internal */
3570 export function LDKAPIError_ChannelUnavailable_get_err(ptr: number): number {
3571         if(!isWasmInitialized) {
3572                 throw new Error("initializeWasm() must be awaited first!");
3573         }
3574         const nativeResponseValue = wasm.TS_LDKAPIError_ChannelUnavailable_get_err(ptr);
3575         return nativeResponseValue;
3576 }
3577 /* @internal */
3578 export function LDKAPIError_IncompatibleShutdownScript_get_script(ptr: number): number {
3579         if(!isWasmInitialized) {
3580                 throw new Error("initializeWasm() must be awaited first!");
3581         }
3582         const nativeResponseValue = wasm.TS_LDKAPIError_IncompatibleShutdownScript_get_script(ptr);
3583         return nativeResponseValue;
3584 }
3585         // void CResult_NoneAPIErrorZ_get_ok(LDKCResult_NoneAPIErrorZ *NONNULL_PTR owner);
3586 /* @internal */
3587 export function CResult_NoneAPIErrorZ_get_ok(owner: number): void {
3588         if(!isWasmInitialized) {
3589                 throw new Error("initializeWasm() must be awaited first!");
3590         }
3591         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_get_ok(owner);
3592         // debug statements here
3593 }
3594         // struct LDKAPIError CResult_NoneAPIErrorZ_get_err(LDKCResult_NoneAPIErrorZ *NONNULL_PTR owner);
3595 /* @internal */
3596 export function CResult_NoneAPIErrorZ_get_err(owner: number): number {
3597         if(!isWasmInitialized) {
3598                 throw new Error("initializeWasm() must be awaited first!");
3599         }
3600         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_get_err(owner);
3601         return nativeResponseValue;
3602 }
3603         // struct LDKThirtyTwoBytes CResult__u832APIErrorZ_get_ok(LDKCResult__u832APIErrorZ *NONNULL_PTR owner);
3604 /* @internal */
3605 export function CResult__u832APIErrorZ_get_ok(owner: number): number {
3606         if(!isWasmInitialized) {
3607                 throw new Error("initializeWasm() must be awaited first!");
3608         }
3609         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_get_ok(owner);
3610         return nativeResponseValue;
3611 }
3612         // struct LDKAPIError CResult__u832APIErrorZ_get_err(LDKCResult__u832APIErrorZ *NONNULL_PTR owner);
3613 /* @internal */
3614 export function CResult__u832APIErrorZ_get_err(owner: number): number {
3615         if(!isWasmInitialized) {
3616                 throw new Error("initializeWasm() must be awaited first!");
3617         }
3618         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_get_err(owner);
3619         return nativeResponseValue;
3620 }
3621 /* @internal */
3622 export class LDKPaymentSendFailure {
3623         protected constructor() {}
3624 }
3625 /* @internal */
3626 export function LDKPaymentSendFailure_ty_from_ptr(ptr: number): number {
3627         if(!isWasmInitialized) {
3628                 throw new Error("initializeWasm() must be awaited first!");
3629         }
3630         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_ty_from_ptr(ptr);
3631         return nativeResponseValue;
3632 }
3633 /* @internal */
3634 export function LDKPaymentSendFailure_ParameterError_get_parameter_error(ptr: number): number {
3635         if(!isWasmInitialized) {
3636                 throw new Error("initializeWasm() must be awaited first!");
3637         }
3638         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_ParameterError_get_parameter_error(ptr);
3639         return nativeResponseValue;
3640 }
3641 /* @internal */
3642 export function LDKPaymentSendFailure_PathParameterError_get_path_parameter_error(ptr: number): number {
3643         if(!isWasmInitialized) {
3644                 throw new Error("initializeWasm() must be awaited first!");
3645         }
3646         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_PathParameterError_get_path_parameter_error(ptr);
3647         return nativeResponseValue;
3648 }
3649 /* @internal */
3650 export function LDKPaymentSendFailure_AllFailedRetrySafe_get_all_failed_retry_safe(ptr: number): number {
3651         if(!isWasmInitialized) {
3652                 throw new Error("initializeWasm() must be awaited first!");
3653         }
3654         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_AllFailedRetrySafe_get_all_failed_retry_safe(ptr);
3655         return nativeResponseValue;
3656 }
3657 /* @internal */
3658 export function LDKPaymentSendFailure_PartialFailure_get_results(ptr: number): number {
3659         if(!isWasmInitialized) {
3660                 throw new Error("initializeWasm() must be awaited first!");
3661         }
3662         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_PartialFailure_get_results(ptr);
3663         return nativeResponseValue;
3664 }
3665 /* @internal */
3666 export function LDKPaymentSendFailure_PartialFailure_get_failed_paths_retry(ptr: number): number {
3667         if(!isWasmInitialized) {
3668                 throw new Error("initializeWasm() must be awaited first!");
3669         }
3670         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_PartialFailure_get_failed_paths_retry(ptr);
3671         return nativeResponseValue;
3672 }
3673 /* @internal */
3674 export function LDKPaymentSendFailure_PartialFailure_get_payment_id(ptr: number): number {
3675         if(!isWasmInitialized) {
3676                 throw new Error("initializeWasm() must be awaited first!");
3677         }
3678         const nativeResponseValue = wasm.TS_LDKPaymentSendFailure_PartialFailure_get_payment_id(ptr);
3679         return nativeResponseValue;
3680 }
3681         // struct LDKThirtyTwoBytes CResult_PaymentIdPaymentSendFailureZ_get_ok(LDKCResult_PaymentIdPaymentSendFailureZ *NONNULL_PTR owner);
3682 /* @internal */
3683 export function CResult_PaymentIdPaymentSendFailureZ_get_ok(owner: number): number {
3684         if(!isWasmInitialized) {
3685                 throw new Error("initializeWasm() must be awaited first!");
3686         }
3687         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_get_ok(owner);
3688         return nativeResponseValue;
3689 }
3690         // struct LDKPaymentSendFailure CResult_PaymentIdPaymentSendFailureZ_get_err(LDKCResult_PaymentIdPaymentSendFailureZ *NONNULL_PTR owner);
3691 /* @internal */
3692 export function CResult_PaymentIdPaymentSendFailureZ_get_err(owner: number): number {
3693         if(!isWasmInitialized) {
3694                 throw new Error("initializeWasm() must be awaited first!");
3695         }
3696         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_get_err(owner);
3697         return nativeResponseValue;
3698 }
3699         // void CResult_NonePaymentSendFailureZ_get_ok(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR owner);
3700 /* @internal */
3701 export function CResult_NonePaymentSendFailureZ_get_ok(owner: number): void {
3702         if(!isWasmInitialized) {
3703                 throw new Error("initializeWasm() must be awaited first!");
3704         }
3705         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_get_ok(owner);
3706         // debug statements here
3707 }
3708         // struct LDKPaymentSendFailure CResult_NonePaymentSendFailureZ_get_err(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR owner);
3709 /* @internal */
3710 export function CResult_NonePaymentSendFailureZ_get_err(owner: number): number {
3711         if(!isWasmInitialized) {
3712                 throw new Error("initializeWasm() must be awaited first!");
3713         }
3714         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_get_err(owner);
3715         return nativeResponseValue;
3716 }
3717         // struct LDKThirtyTwoBytes C2Tuple_PaymentHashPaymentIdZ_get_a(LDKC2Tuple_PaymentHashPaymentIdZ *NONNULL_PTR owner);
3718 /* @internal */
3719 export function C2Tuple_PaymentHashPaymentIdZ_get_a(owner: number): number {
3720         if(!isWasmInitialized) {
3721                 throw new Error("initializeWasm() must be awaited first!");
3722         }
3723         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_get_a(owner);
3724         return nativeResponseValue;
3725 }
3726         // struct LDKThirtyTwoBytes C2Tuple_PaymentHashPaymentIdZ_get_b(LDKC2Tuple_PaymentHashPaymentIdZ *NONNULL_PTR owner);
3727 /* @internal */
3728 export function C2Tuple_PaymentHashPaymentIdZ_get_b(owner: number): number {
3729         if(!isWasmInitialized) {
3730                 throw new Error("initializeWasm() must be awaited first!");
3731         }
3732         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_get_b(owner);
3733         return nativeResponseValue;
3734 }
3735         // struct LDKC2Tuple_PaymentHashPaymentIdZ CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_ok(LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ *NONNULL_PTR owner);
3736 /* @internal */
3737 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_ok(owner: number): number {
3738         if(!isWasmInitialized) {
3739                 throw new Error("initializeWasm() must be awaited first!");
3740         }
3741         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_ok(owner);
3742         return nativeResponseValue;
3743 }
3744         // struct LDKPaymentSendFailure CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_err(LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ *NONNULL_PTR owner);
3745 /* @internal */
3746 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_err(owner: number): number {
3747         if(!isWasmInitialized) {
3748                 throw new Error("initializeWasm() must be awaited first!");
3749         }
3750         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_get_err(owner);
3751         return nativeResponseValue;
3752 }
3753         // struct LDKThirtyTwoBytes C2Tuple_PaymentHashPaymentSecretZ_get_a(LDKC2Tuple_PaymentHashPaymentSecretZ *NONNULL_PTR owner);
3754 /* @internal */
3755 export function C2Tuple_PaymentHashPaymentSecretZ_get_a(owner: number): number {
3756         if(!isWasmInitialized) {
3757                 throw new Error("initializeWasm() must be awaited first!");
3758         }
3759         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_get_a(owner);
3760         return nativeResponseValue;
3761 }
3762         // struct LDKThirtyTwoBytes C2Tuple_PaymentHashPaymentSecretZ_get_b(LDKC2Tuple_PaymentHashPaymentSecretZ *NONNULL_PTR owner);
3763 /* @internal */
3764 export function C2Tuple_PaymentHashPaymentSecretZ_get_b(owner: number): number {
3765         if(!isWasmInitialized) {
3766                 throw new Error("initializeWasm() must be awaited first!");
3767         }
3768         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_get_b(owner);
3769         return nativeResponseValue;
3770 }
3771         // struct LDKC2Tuple_PaymentHashPaymentSecretZ CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_ok(LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ *NONNULL_PTR owner);
3772 /* @internal */
3773 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_ok(owner: number): number {
3774         if(!isWasmInitialized) {
3775                 throw new Error("initializeWasm() must be awaited first!");
3776         }
3777         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_ok(owner);
3778         return nativeResponseValue;
3779 }
3780         // void CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_err(LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ *NONNULL_PTR owner);
3781 /* @internal */
3782 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_err(owner: number): void {
3783         if(!isWasmInitialized) {
3784                 throw new Error("initializeWasm() must be awaited first!");
3785         }
3786         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_get_err(owner);
3787         // debug statements here
3788 }
3789         // struct LDKC2Tuple_PaymentHashPaymentSecretZ CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_ok(LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ *NONNULL_PTR owner);
3790 /* @internal */
3791 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_ok(owner: number): number {
3792         if(!isWasmInitialized) {
3793                 throw new Error("initializeWasm() must be awaited first!");
3794         }
3795         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_ok(owner);
3796         return nativeResponseValue;
3797 }
3798         // struct LDKAPIError CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_err(LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ *NONNULL_PTR owner);
3799 /* @internal */
3800 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_err(owner: number): number {
3801         if(!isWasmInitialized) {
3802                 throw new Error("initializeWasm() must be awaited first!");
3803         }
3804         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_get_err(owner);
3805         return nativeResponseValue;
3806 }
3807         // struct LDKThirtyTwoBytes CResult_PaymentSecretNoneZ_get_ok(LDKCResult_PaymentSecretNoneZ *NONNULL_PTR owner);
3808 /* @internal */
3809 export function CResult_PaymentSecretNoneZ_get_ok(owner: number): number {
3810         if(!isWasmInitialized) {
3811                 throw new Error("initializeWasm() must be awaited first!");
3812         }
3813         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_get_ok(owner);
3814         return nativeResponseValue;
3815 }
3816         // void CResult_PaymentSecretNoneZ_get_err(LDKCResult_PaymentSecretNoneZ *NONNULL_PTR owner);
3817 /* @internal */
3818 export function CResult_PaymentSecretNoneZ_get_err(owner: number): void {
3819         if(!isWasmInitialized) {
3820                 throw new Error("initializeWasm() must be awaited first!");
3821         }
3822         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_get_err(owner);
3823         // debug statements here
3824 }
3825         // struct LDKThirtyTwoBytes CResult_PaymentSecretAPIErrorZ_get_ok(LDKCResult_PaymentSecretAPIErrorZ *NONNULL_PTR owner);
3826 /* @internal */
3827 export function CResult_PaymentSecretAPIErrorZ_get_ok(owner: number): number {
3828         if(!isWasmInitialized) {
3829                 throw new Error("initializeWasm() must be awaited first!");
3830         }
3831         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_get_ok(owner);
3832         return nativeResponseValue;
3833 }
3834         // struct LDKAPIError CResult_PaymentSecretAPIErrorZ_get_err(LDKCResult_PaymentSecretAPIErrorZ *NONNULL_PTR owner);
3835 /* @internal */
3836 export function CResult_PaymentSecretAPIErrorZ_get_err(owner: number): number {
3837         if(!isWasmInitialized) {
3838                 throw new Error("initializeWasm() must be awaited first!");
3839         }
3840         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_get_err(owner);
3841         return nativeResponseValue;
3842 }
3843         // struct LDKThirtyTwoBytes CResult_PaymentPreimageAPIErrorZ_get_ok(LDKCResult_PaymentPreimageAPIErrorZ *NONNULL_PTR owner);
3844 /* @internal */
3845 export function CResult_PaymentPreimageAPIErrorZ_get_ok(owner: number): number {
3846         if(!isWasmInitialized) {
3847                 throw new Error("initializeWasm() must be awaited first!");
3848         }
3849         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_get_ok(owner);
3850         return nativeResponseValue;
3851 }
3852         // struct LDKAPIError CResult_PaymentPreimageAPIErrorZ_get_err(LDKCResult_PaymentPreimageAPIErrorZ *NONNULL_PTR owner);
3853 /* @internal */
3854 export function CResult_PaymentPreimageAPIErrorZ_get_err(owner: number): number {
3855         if(!isWasmInitialized) {
3856                 throw new Error("initializeWasm() must be awaited first!");
3857         }
3858         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_get_err(owner);
3859         return nativeResponseValue;
3860 }
3861         // struct LDKCounterpartyForwardingInfo CResult_CounterpartyForwardingInfoDecodeErrorZ_get_ok(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR owner);
3862 /* @internal */
3863 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_get_ok(owner: number): number {
3864         if(!isWasmInitialized) {
3865                 throw new Error("initializeWasm() must be awaited first!");
3866         }
3867         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_get_ok(owner);
3868         return nativeResponseValue;
3869 }
3870         // struct LDKDecodeError CResult_CounterpartyForwardingInfoDecodeErrorZ_get_err(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR owner);
3871 /* @internal */
3872 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_get_err(owner: number): number {
3873         if(!isWasmInitialized) {
3874                 throw new Error("initializeWasm() must be awaited first!");
3875         }
3876         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_get_err(owner);
3877         return nativeResponseValue;
3878 }
3879         // struct LDKChannelCounterparty CResult_ChannelCounterpartyDecodeErrorZ_get_ok(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR owner);
3880 /* @internal */
3881 export function CResult_ChannelCounterpartyDecodeErrorZ_get_ok(owner: number): number {
3882         if(!isWasmInitialized) {
3883                 throw new Error("initializeWasm() must be awaited first!");
3884         }
3885         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_get_ok(owner);
3886         return nativeResponseValue;
3887 }
3888         // struct LDKDecodeError CResult_ChannelCounterpartyDecodeErrorZ_get_err(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR owner);
3889 /* @internal */
3890 export function CResult_ChannelCounterpartyDecodeErrorZ_get_err(owner: number): number {
3891         if(!isWasmInitialized) {
3892                 throw new Error("initializeWasm() must be awaited first!");
3893         }
3894         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_get_err(owner);
3895         return nativeResponseValue;
3896 }
3897         // struct LDKChannelDetails CResult_ChannelDetailsDecodeErrorZ_get_ok(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR owner);
3898 /* @internal */
3899 export function CResult_ChannelDetailsDecodeErrorZ_get_ok(owner: number): number {
3900         if(!isWasmInitialized) {
3901                 throw new Error("initializeWasm() must be awaited first!");
3902         }
3903         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_get_ok(owner);
3904         return nativeResponseValue;
3905 }
3906         // struct LDKDecodeError CResult_ChannelDetailsDecodeErrorZ_get_err(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR owner);
3907 /* @internal */
3908 export function CResult_ChannelDetailsDecodeErrorZ_get_err(owner: number): number {
3909         if(!isWasmInitialized) {
3910                 throw new Error("initializeWasm() must be awaited first!");
3911         }
3912         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_get_err(owner);
3913         return nativeResponseValue;
3914 }
3915         // struct LDKPhantomRouteHints CResult_PhantomRouteHintsDecodeErrorZ_get_ok(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR owner);
3916 /* @internal */
3917 export function CResult_PhantomRouteHintsDecodeErrorZ_get_ok(owner: number): number {
3918         if(!isWasmInitialized) {
3919                 throw new Error("initializeWasm() must be awaited first!");
3920         }
3921         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_get_ok(owner);
3922         return nativeResponseValue;
3923 }
3924         // struct LDKDecodeError CResult_PhantomRouteHintsDecodeErrorZ_get_err(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR owner);
3925 /* @internal */
3926 export function CResult_PhantomRouteHintsDecodeErrorZ_get_err(owner: number): number {
3927         if(!isWasmInitialized) {
3928                 throw new Error("initializeWasm() must be awaited first!");
3929         }
3930         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_get_err(owner);
3931         return nativeResponseValue;
3932 }
3933 /* @internal */
3934 export interface LDKWatch {
3935         watch_channel (funding_txo: number, monitor: number): number;
3936         update_channel (funding_txo: number, update: number): number;
3937         release_pending_monitor_events (): number;
3938 }
3939
3940 /* @internal */
3941 export function LDKWatch_new(impl: LDKWatch): number {
3942         if(!isWasmInitialized) {
3943                 throw new Error("initializeWasm() must be awaited first!");
3944         }
3945         var new_obj_idx = js_objs.length;
3946         for (var i = 0; i < js_objs.length; i++) {
3947                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
3948         }
3949         js_objs[i] = new WeakRef(impl);
3950         return wasm.TS_LDKWatch_new(i);
3951 }
3952         // LDKCResult_NoneChannelMonitorUpdateErrZ Watch_watch_channel LDKWatch *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, struct LDKChannelMonitor monitor
3953 /* @internal */
3954 export function Watch_watch_channel(this_arg: number, funding_txo: number, monitor: number): number {
3955         if(!isWasmInitialized) {
3956                 throw new Error("initializeWasm() must be awaited first!");
3957         }
3958         const nativeResponseValue = wasm.TS_Watch_watch_channel(this_arg, funding_txo, monitor);
3959         return nativeResponseValue;
3960 }
3961         // LDKCResult_NoneChannelMonitorUpdateErrZ Watch_update_channel LDKWatch *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, struct LDKChannelMonitorUpdate update
3962 /* @internal */
3963 export function Watch_update_channel(this_arg: number, funding_txo: number, update: number): number {
3964         if(!isWasmInitialized) {
3965                 throw new Error("initializeWasm() must be awaited first!");
3966         }
3967         const nativeResponseValue = wasm.TS_Watch_update_channel(this_arg, funding_txo, update);
3968         return nativeResponseValue;
3969 }
3970         // LDKCVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ Watch_release_pending_monitor_events LDKWatch *NONNULL_PTR this_arg
3971 /* @internal */
3972 export function Watch_release_pending_monitor_events(this_arg: number): number {
3973         if(!isWasmInitialized) {
3974                 throw new Error("initializeWasm() must be awaited first!");
3975         }
3976         const nativeResponseValue = wasm.TS_Watch_release_pending_monitor_events(this_arg);
3977         return nativeResponseValue;
3978 }
3979 /* @internal */
3980 export interface LDKBroadcasterInterface {
3981         broadcast_transaction (tx: number): void;
3982 }
3983
3984 /* @internal */
3985 export function LDKBroadcasterInterface_new(impl: LDKBroadcasterInterface): number {
3986         if(!isWasmInitialized) {
3987                 throw new Error("initializeWasm() must be awaited first!");
3988         }
3989         var new_obj_idx = js_objs.length;
3990         for (var i = 0; i < js_objs.length; i++) {
3991                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
3992         }
3993         js_objs[i] = new WeakRef(impl);
3994         return wasm.TS_LDKBroadcasterInterface_new(i);
3995 }
3996         // void BroadcasterInterface_broadcast_transaction LDKBroadcasterInterface *NONNULL_PTR this_arg, struct LDKTransaction tx
3997 /* @internal */
3998 export function BroadcasterInterface_broadcast_transaction(this_arg: number, tx: number): void {
3999         if(!isWasmInitialized) {
4000                 throw new Error("initializeWasm() must be awaited first!");
4001         }
4002         const nativeResponseValue = wasm.TS_BroadcasterInterface_broadcast_transaction(this_arg, tx);
4003         // debug statements here
4004 }
4005 /* @internal */
4006 export interface LDKKeysInterface {
4007         get_node_secret (recipient: Recipient): number;
4008         get_destination_script (): number;
4009         get_shutdown_scriptpubkey (): number;
4010         get_channel_signer (inbound: boolean, channel_value_satoshis: bigint): number;
4011         get_secure_random_bytes (): number;
4012         read_chan_signer (reader: number): number;
4013         sign_invoice (hrp_bytes: number, invoice_data: number, receipient: Recipient): number;
4014         get_inbound_payment_key_material (): number;
4015 }
4016
4017 /* @internal */
4018 export function LDKKeysInterface_new(impl: LDKKeysInterface): number {
4019         if(!isWasmInitialized) {
4020                 throw new Error("initializeWasm() must be awaited first!");
4021         }
4022         var new_obj_idx = js_objs.length;
4023         for (var i = 0; i < js_objs.length; i++) {
4024                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
4025         }
4026         js_objs[i] = new WeakRef(impl);
4027         return wasm.TS_LDKKeysInterface_new(i);
4028 }
4029         // LDKCResult_SecretKeyNoneZ KeysInterface_get_node_secret LDKKeysInterface *NONNULL_PTR this_arg, enum LDKRecipient recipient
4030 /* @internal */
4031 export function KeysInterface_get_node_secret(this_arg: number, recipient: Recipient): number {
4032         if(!isWasmInitialized) {
4033                 throw new Error("initializeWasm() must be awaited first!");
4034         }
4035         const nativeResponseValue = wasm.TS_KeysInterface_get_node_secret(this_arg, recipient);
4036         return nativeResponseValue;
4037 }
4038         // LDKCVec_u8Z KeysInterface_get_destination_script LDKKeysInterface *NONNULL_PTR this_arg
4039 /* @internal */
4040 export function KeysInterface_get_destination_script(this_arg: number): number {
4041         if(!isWasmInitialized) {
4042                 throw new Error("initializeWasm() must be awaited first!");
4043         }
4044         const nativeResponseValue = wasm.TS_KeysInterface_get_destination_script(this_arg);
4045         return nativeResponseValue;
4046 }
4047         // LDKShutdownScript KeysInterface_get_shutdown_scriptpubkey LDKKeysInterface *NONNULL_PTR this_arg
4048 /* @internal */
4049 export function KeysInterface_get_shutdown_scriptpubkey(this_arg: number): number {
4050         if(!isWasmInitialized) {
4051                 throw new Error("initializeWasm() must be awaited first!");
4052         }
4053         const nativeResponseValue = wasm.TS_KeysInterface_get_shutdown_scriptpubkey(this_arg);
4054         return nativeResponseValue;
4055 }
4056         // LDKSign KeysInterface_get_channel_signer LDKKeysInterface *NONNULL_PTR this_arg, bool inbound, uint64_t channel_value_satoshis
4057 /* @internal */
4058 export function KeysInterface_get_channel_signer(this_arg: number, inbound: boolean, channel_value_satoshis: bigint): number {
4059         if(!isWasmInitialized) {
4060                 throw new Error("initializeWasm() must be awaited first!");
4061         }
4062         const nativeResponseValue = wasm.TS_KeysInterface_get_channel_signer(this_arg, inbound, channel_value_satoshis);
4063         return nativeResponseValue;
4064 }
4065         // LDKThirtyTwoBytes KeysInterface_get_secure_random_bytes LDKKeysInterface *NONNULL_PTR this_arg
4066 /* @internal */
4067 export function KeysInterface_get_secure_random_bytes(this_arg: number): number {
4068         if(!isWasmInitialized) {
4069                 throw new Error("initializeWasm() must be awaited first!");
4070         }
4071         const nativeResponseValue = wasm.TS_KeysInterface_get_secure_random_bytes(this_arg);
4072         return nativeResponseValue;
4073 }
4074         // LDKCResult_SignDecodeErrorZ KeysInterface_read_chan_signer LDKKeysInterface *NONNULL_PTR this_arg, struct LDKu8slice reader
4075 /* @internal */
4076 export function KeysInterface_read_chan_signer(this_arg: number, reader: number): number {
4077         if(!isWasmInitialized) {
4078                 throw new Error("initializeWasm() must be awaited first!");
4079         }
4080         const nativeResponseValue = wasm.TS_KeysInterface_read_chan_signer(this_arg, reader);
4081         return nativeResponseValue;
4082 }
4083         // LDKCResult_RecoverableSignatureNoneZ KeysInterface_sign_invoice LDKKeysInterface *NONNULL_PTR this_arg, struct LDKu8slice hrp_bytes, struct LDKCVec_u5Z invoice_data, enum LDKRecipient receipient
4084 /* @internal */
4085 export function KeysInterface_sign_invoice(this_arg: number, hrp_bytes: number, invoice_data: number, receipient: Recipient): number {
4086         if(!isWasmInitialized) {
4087                 throw new Error("initializeWasm() must be awaited first!");
4088         }
4089         const nativeResponseValue = wasm.TS_KeysInterface_sign_invoice(this_arg, hrp_bytes, invoice_data, receipient);
4090         return nativeResponseValue;
4091 }
4092         // LDKThirtyTwoBytes KeysInterface_get_inbound_payment_key_material LDKKeysInterface *NONNULL_PTR this_arg
4093 /* @internal */
4094 export function KeysInterface_get_inbound_payment_key_material(this_arg: number): number {
4095         if(!isWasmInitialized) {
4096                 throw new Error("initializeWasm() must be awaited first!");
4097         }
4098         const nativeResponseValue = wasm.TS_KeysInterface_get_inbound_payment_key_material(this_arg);
4099         return nativeResponseValue;
4100 }
4101 /* @internal */
4102 export interface LDKFeeEstimator {
4103         get_est_sat_per_1000_weight (confirmation_target: ConfirmationTarget): number;
4104 }
4105
4106 /* @internal */
4107 export function LDKFeeEstimator_new(impl: LDKFeeEstimator): number {
4108         if(!isWasmInitialized) {
4109                 throw new Error("initializeWasm() must be awaited first!");
4110         }
4111         var new_obj_idx = js_objs.length;
4112         for (var i = 0; i < js_objs.length; i++) {
4113                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
4114         }
4115         js_objs[i] = new WeakRef(impl);
4116         return wasm.TS_LDKFeeEstimator_new(i);
4117 }
4118         // uint32_t FeeEstimator_get_est_sat_per_1000_weight LDKFeeEstimator *NONNULL_PTR this_arg, enum LDKConfirmationTarget confirmation_target
4119 /* @internal */
4120 export function FeeEstimator_get_est_sat_per_1000_weight(this_arg: number, confirmation_target: ConfirmationTarget): number {
4121         if(!isWasmInitialized) {
4122                 throw new Error("initializeWasm() must be awaited first!");
4123         }
4124         const nativeResponseValue = wasm.TS_FeeEstimator_get_est_sat_per_1000_weight(this_arg, confirmation_target);
4125         return nativeResponseValue;
4126 }
4127         // struct LDKThirtyTwoBytes C2Tuple_BlockHashChannelManagerZ_get_a(LDKC2Tuple_BlockHashChannelManagerZ *NONNULL_PTR owner);
4128 /* @internal */
4129 export function C2Tuple_BlockHashChannelManagerZ_get_a(owner: number): number {
4130         if(!isWasmInitialized) {
4131                 throw new Error("initializeWasm() must be awaited first!");
4132         }
4133         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelManagerZ_get_a(owner);
4134         return nativeResponseValue;
4135 }
4136         // struct LDKChannelManager *C2Tuple_BlockHashChannelManagerZ_get_b(LDKC2Tuple_BlockHashChannelManagerZ *NONNULL_PTR owner);
4137 /* @internal */
4138 export function C2Tuple_BlockHashChannelManagerZ_get_b(owner: number): number {
4139         if(!isWasmInitialized) {
4140                 throw new Error("initializeWasm() must be awaited first!");
4141         }
4142         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelManagerZ_get_b(owner);
4143         return nativeResponseValue;
4144 }
4145         // struct LDKC2Tuple_BlockHashChannelManagerZ *CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_ok(LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ *NONNULL_PTR owner);
4146 /* @internal */
4147 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_ok(owner: number): number {
4148         if(!isWasmInitialized) {
4149                 throw new Error("initializeWasm() must be awaited first!");
4150         }
4151         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_ok(owner);
4152         return nativeResponseValue;
4153 }
4154         // struct LDKDecodeError CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_err(LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ *NONNULL_PTR owner);
4155 /* @internal */
4156 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_err(owner: number): number {
4157         if(!isWasmInitialized) {
4158                 throw new Error("initializeWasm() must be awaited first!");
4159         }
4160         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_get_err(owner);
4161         return nativeResponseValue;
4162 }
4163         // struct LDKChannelConfig CResult_ChannelConfigDecodeErrorZ_get_ok(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR owner);
4164 /* @internal */
4165 export function CResult_ChannelConfigDecodeErrorZ_get_ok(owner: number): number {
4166         if(!isWasmInitialized) {
4167                 throw new Error("initializeWasm() must be awaited first!");
4168         }
4169         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_get_ok(owner);
4170         return nativeResponseValue;
4171 }
4172         // struct LDKDecodeError CResult_ChannelConfigDecodeErrorZ_get_err(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR owner);
4173 /* @internal */
4174 export function CResult_ChannelConfigDecodeErrorZ_get_err(owner: number): number {
4175         if(!isWasmInitialized) {
4176                 throw new Error("initializeWasm() must be awaited first!");
4177         }
4178         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_get_err(owner);
4179         return nativeResponseValue;
4180 }
4181         // struct LDKOutPoint CResult_OutPointDecodeErrorZ_get_ok(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR owner);
4182 /* @internal */
4183 export function CResult_OutPointDecodeErrorZ_get_ok(owner: number): number {
4184         if(!isWasmInitialized) {
4185                 throw new Error("initializeWasm() must be awaited first!");
4186         }
4187         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_get_ok(owner);
4188         return nativeResponseValue;
4189 }
4190         // struct LDKDecodeError CResult_OutPointDecodeErrorZ_get_err(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR owner);
4191 /* @internal */
4192 export function CResult_OutPointDecodeErrorZ_get_err(owner: number): number {
4193         if(!isWasmInitialized) {
4194                 throw new Error("initializeWasm() must be awaited first!");
4195         }
4196         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_get_err(owner);
4197         return nativeResponseValue;
4198 }
4199 /* @internal */
4200 export interface LDKType {
4201         type_id (): number;
4202         debug_str (): number;
4203         write (): number;
4204 }
4205
4206 /* @internal */
4207 export function LDKType_new(impl: LDKType): number {
4208         if(!isWasmInitialized) {
4209                 throw new Error("initializeWasm() must be awaited first!");
4210         }
4211         var new_obj_idx = js_objs.length;
4212         for (var i = 0; i < js_objs.length; i++) {
4213                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
4214         }
4215         js_objs[i] = new WeakRef(impl);
4216         return wasm.TS_LDKType_new(i);
4217 }
4218         // uint16_t Type_type_id LDKType *NONNULL_PTR this_arg
4219 /* @internal */
4220 export function Type_type_id(this_arg: number): number {
4221         if(!isWasmInitialized) {
4222                 throw new Error("initializeWasm() must be awaited first!");
4223         }
4224         const nativeResponseValue = wasm.TS_Type_type_id(this_arg);
4225         return nativeResponseValue;
4226 }
4227         // LDKStr Type_debug_str LDKType *NONNULL_PTR this_arg
4228 /* @internal */
4229 export function Type_debug_str(this_arg: number): number {
4230         if(!isWasmInitialized) {
4231                 throw new Error("initializeWasm() must be awaited first!");
4232         }
4233         const nativeResponseValue = wasm.TS_Type_debug_str(this_arg);
4234         return nativeResponseValue;
4235 }
4236         // LDKCVec_u8Z Type_write LDKType *NONNULL_PTR this_arg
4237 /* @internal */
4238 export function Type_write(this_arg: number): number {
4239         if(!isWasmInitialized) {
4240                 throw new Error("initializeWasm() must be awaited first!");
4241         }
4242         const nativeResponseValue = wasm.TS_Type_write(this_arg);
4243         return nativeResponseValue;
4244 }
4245 /* @internal */
4246 export class LDKCOption_TypeZ {
4247         protected constructor() {}
4248 }
4249 /* @internal */
4250 export function LDKCOption_TypeZ_ty_from_ptr(ptr: number): number {
4251         if(!isWasmInitialized) {
4252                 throw new Error("initializeWasm() must be awaited first!");
4253         }
4254         const nativeResponseValue = wasm.TS_LDKCOption_TypeZ_ty_from_ptr(ptr);
4255         return nativeResponseValue;
4256 }
4257 /* @internal */
4258 export function LDKCOption_TypeZ_Some_get_some(ptr: number): number {
4259         if(!isWasmInitialized) {
4260                 throw new Error("initializeWasm() must be awaited first!");
4261         }
4262         const nativeResponseValue = wasm.TS_LDKCOption_TypeZ_Some_get_some(ptr);
4263         return nativeResponseValue;
4264 }
4265         // struct LDKCOption_TypeZ CResult_COption_TypeZDecodeErrorZ_get_ok(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR owner);
4266 /* @internal */
4267 export function CResult_COption_TypeZDecodeErrorZ_get_ok(owner: number): number {
4268         if(!isWasmInitialized) {
4269                 throw new Error("initializeWasm() must be awaited first!");
4270         }
4271         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_get_ok(owner);
4272         return nativeResponseValue;
4273 }
4274         // struct LDKDecodeError CResult_COption_TypeZDecodeErrorZ_get_err(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR owner);
4275 /* @internal */
4276 export function CResult_COption_TypeZDecodeErrorZ_get_err(owner: number): number {
4277         if(!isWasmInitialized) {
4278                 throw new Error("initializeWasm() must be awaited first!");
4279         }
4280         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_get_err(owner);
4281         return nativeResponseValue;
4282 }
4283 /* @internal */
4284 export class LDKPaymentError {
4285         protected constructor() {}
4286 }
4287 /* @internal */
4288 export function LDKPaymentError_ty_from_ptr(ptr: number): number {
4289         if(!isWasmInitialized) {
4290                 throw new Error("initializeWasm() must be awaited first!");
4291         }
4292         const nativeResponseValue = wasm.TS_LDKPaymentError_ty_from_ptr(ptr);
4293         return nativeResponseValue;
4294 }
4295 /* @internal */
4296 export function LDKPaymentError_Invoice_get_invoice(ptr: number): number {
4297         if(!isWasmInitialized) {
4298                 throw new Error("initializeWasm() must be awaited first!");
4299         }
4300         const nativeResponseValue = wasm.TS_LDKPaymentError_Invoice_get_invoice(ptr);
4301         return nativeResponseValue;
4302 }
4303 /* @internal */
4304 export function LDKPaymentError_Routing_get_routing(ptr: number): number {
4305         if(!isWasmInitialized) {
4306                 throw new Error("initializeWasm() must be awaited first!");
4307         }
4308         const nativeResponseValue = wasm.TS_LDKPaymentError_Routing_get_routing(ptr);
4309         return nativeResponseValue;
4310 }
4311 /* @internal */
4312 export function LDKPaymentError_Sending_get_sending(ptr: number): number {
4313         if(!isWasmInitialized) {
4314                 throw new Error("initializeWasm() must be awaited first!");
4315         }
4316         const nativeResponseValue = wasm.TS_LDKPaymentError_Sending_get_sending(ptr);
4317         return nativeResponseValue;
4318 }
4319         // struct LDKThirtyTwoBytes CResult_PaymentIdPaymentErrorZ_get_ok(LDKCResult_PaymentIdPaymentErrorZ *NONNULL_PTR owner);
4320 /* @internal */
4321 export function CResult_PaymentIdPaymentErrorZ_get_ok(owner: number): number {
4322         if(!isWasmInitialized) {
4323                 throw new Error("initializeWasm() must be awaited first!");
4324         }
4325         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_get_ok(owner);
4326         return nativeResponseValue;
4327 }
4328         // struct LDKPaymentError CResult_PaymentIdPaymentErrorZ_get_err(LDKCResult_PaymentIdPaymentErrorZ *NONNULL_PTR owner);
4329 /* @internal */
4330 export function CResult_PaymentIdPaymentErrorZ_get_err(owner: number): number {
4331         if(!isWasmInitialized) {
4332                 throw new Error("initializeWasm() must be awaited first!");
4333         }
4334         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_get_err(owner);
4335         return nativeResponseValue;
4336 }
4337 /* @internal */
4338 export class LDKParseError {
4339         protected constructor() {}
4340 }
4341 /* @internal */
4342 export function LDKParseError_ty_from_ptr(ptr: number): number {
4343         if(!isWasmInitialized) {
4344                 throw new Error("initializeWasm() must be awaited first!");
4345         }
4346         const nativeResponseValue = wasm.TS_LDKParseError_ty_from_ptr(ptr);
4347         return nativeResponseValue;
4348 }
4349 /* @internal */
4350 export function LDKParseError_Bech32Error_get_bech32_error(ptr: number): number {
4351         if(!isWasmInitialized) {
4352                 throw new Error("initializeWasm() must be awaited first!");
4353         }
4354         const nativeResponseValue = wasm.TS_LDKParseError_Bech32Error_get_bech32_error(ptr);
4355         return nativeResponseValue;
4356 }
4357 /* @internal */
4358 export function LDKParseError_ParseAmountError_get_parse_amount_error(ptr: number): number {
4359         if(!isWasmInitialized) {
4360                 throw new Error("initializeWasm() must be awaited first!");
4361         }
4362         const nativeResponseValue = wasm.TS_LDKParseError_ParseAmountError_get_parse_amount_error(ptr);
4363         return nativeResponseValue;
4364 }
4365 /* @internal */
4366 export function LDKParseError_MalformedSignature_get_malformed_signature(ptr: number): Secp256k1Error {
4367         if(!isWasmInitialized) {
4368                 throw new Error("initializeWasm() must be awaited first!");
4369         }
4370         const nativeResponseValue = wasm.TS_LDKParseError_MalformedSignature_get_malformed_signature(ptr);
4371         return nativeResponseValue;
4372 }
4373 /* @internal */
4374 export function LDKParseError_DescriptionDecodeError_get_description_decode_error(ptr: number): number {
4375         if(!isWasmInitialized) {
4376                 throw new Error("initializeWasm() must be awaited first!");
4377         }
4378         const nativeResponseValue = wasm.TS_LDKParseError_DescriptionDecodeError_get_description_decode_error(ptr);
4379         return nativeResponseValue;
4380 }
4381 /* @internal */
4382 export function LDKParseError_InvalidSliceLength_get_invalid_slice_length(ptr: number): number {
4383         if(!isWasmInitialized) {
4384                 throw new Error("initializeWasm() must be awaited first!");
4385         }
4386         const nativeResponseValue = wasm.TS_LDKParseError_InvalidSliceLength_get_invalid_slice_length(ptr);
4387         return nativeResponseValue;
4388 }
4389         // enum LDKSiPrefix CResult_SiPrefixParseErrorZ_get_ok(LDKCResult_SiPrefixParseErrorZ *NONNULL_PTR owner);
4390 /* @internal */
4391 export function CResult_SiPrefixParseErrorZ_get_ok(owner: number): SiPrefix {
4392         if(!isWasmInitialized) {
4393                 throw new Error("initializeWasm() must be awaited first!");
4394         }
4395         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_get_ok(owner);
4396         return nativeResponseValue;
4397 }
4398         // struct LDKParseError CResult_SiPrefixParseErrorZ_get_err(LDKCResult_SiPrefixParseErrorZ *NONNULL_PTR owner);
4399 /* @internal */
4400 export function CResult_SiPrefixParseErrorZ_get_err(owner: number): number {
4401         if(!isWasmInitialized) {
4402                 throw new Error("initializeWasm() must be awaited first!");
4403         }
4404         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_get_err(owner);
4405         return nativeResponseValue;
4406 }
4407 /* @internal */
4408 export class LDKParseOrSemanticError {
4409         protected constructor() {}
4410 }
4411 /* @internal */
4412 export function LDKParseOrSemanticError_ty_from_ptr(ptr: number): number {
4413         if(!isWasmInitialized) {
4414                 throw new Error("initializeWasm() must be awaited first!");
4415         }
4416         const nativeResponseValue = wasm.TS_LDKParseOrSemanticError_ty_from_ptr(ptr);
4417         return nativeResponseValue;
4418 }
4419 /* @internal */
4420 export function LDKParseOrSemanticError_ParseError_get_parse_error(ptr: number): number {
4421         if(!isWasmInitialized) {
4422                 throw new Error("initializeWasm() must be awaited first!");
4423         }
4424         const nativeResponseValue = wasm.TS_LDKParseOrSemanticError_ParseError_get_parse_error(ptr);
4425         return nativeResponseValue;
4426 }
4427 /* @internal */
4428 export function LDKParseOrSemanticError_SemanticError_get_semantic_error(ptr: number): SemanticError {
4429         if(!isWasmInitialized) {
4430                 throw new Error("initializeWasm() must be awaited first!");
4431         }
4432         const nativeResponseValue = wasm.TS_LDKParseOrSemanticError_SemanticError_get_semantic_error(ptr);
4433         return nativeResponseValue;
4434 }
4435         // struct LDKInvoice CResult_InvoiceParseOrSemanticErrorZ_get_ok(LDKCResult_InvoiceParseOrSemanticErrorZ *NONNULL_PTR owner);
4436 /* @internal */
4437 export function CResult_InvoiceParseOrSemanticErrorZ_get_ok(owner: number): number {
4438         if(!isWasmInitialized) {
4439                 throw new Error("initializeWasm() must be awaited first!");
4440         }
4441         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_get_ok(owner);
4442         return nativeResponseValue;
4443 }
4444         // struct LDKParseOrSemanticError CResult_InvoiceParseOrSemanticErrorZ_get_err(LDKCResult_InvoiceParseOrSemanticErrorZ *NONNULL_PTR owner);
4445 /* @internal */
4446 export function CResult_InvoiceParseOrSemanticErrorZ_get_err(owner: number): number {
4447         if(!isWasmInitialized) {
4448                 throw new Error("initializeWasm() must be awaited first!");
4449         }
4450         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_get_err(owner);
4451         return nativeResponseValue;
4452 }
4453         // struct LDKSignedRawInvoice CResult_SignedRawInvoiceParseErrorZ_get_ok(LDKCResult_SignedRawInvoiceParseErrorZ *NONNULL_PTR owner);
4454 /* @internal */
4455 export function CResult_SignedRawInvoiceParseErrorZ_get_ok(owner: number): number {
4456         if(!isWasmInitialized) {
4457                 throw new Error("initializeWasm() must be awaited first!");
4458         }
4459         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_get_ok(owner);
4460         return nativeResponseValue;
4461 }
4462         // struct LDKParseError CResult_SignedRawInvoiceParseErrorZ_get_err(LDKCResult_SignedRawInvoiceParseErrorZ *NONNULL_PTR owner);
4463 /* @internal */
4464 export function CResult_SignedRawInvoiceParseErrorZ_get_err(owner: number): number {
4465         if(!isWasmInitialized) {
4466                 throw new Error("initializeWasm() must be awaited first!");
4467         }
4468         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_get_err(owner);
4469         return nativeResponseValue;
4470 }
4471         // struct LDKRawInvoice C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_a(LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ *NONNULL_PTR owner);
4472 /* @internal */
4473 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_a(owner: number): number {
4474         if(!isWasmInitialized) {
4475                 throw new Error("initializeWasm() must be awaited first!");
4476         }
4477         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_a(owner);
4478         return nativeResponseValue;
4479 }
4480         // struct LDKThirtyTwoBytes C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_b(LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ *NONNULL_PTR owner);
4481 /* @internal */
4482 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_b(owner: number): number {
4483         if(!isWasmInitialized) {
4484                 throw new Error("initializeWasm() must be awaited first!");
4485         }
4486         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_b(owner);
4487         return nativeResponseValue;
4488 }
4489         // struct LDKInvoiceSignature C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_c(LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ *NONNULL_PTR owner);
4490 /* @internal */
4491 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_c(owner: number): number {
4492         if(!isWasmInitialized) {
4493                 throw new Error("initializeWasm() must be awaited first!");
4494         }
4495         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_get_c(owner);
4496         return nativeResponseValue;
4497 }
4498         // struct LDKPayeePubKey CResult_PayeePubKeyErrorZ_get_ok(LDKCResult_PayeePubKeyErrorZ *NONNULL_PTR owner);
4499 /* @internal */
4500 export function CResult_PayeePubKeyErrorZ_get_ok(owner: number): number {
4501         if(!isWasmInitialized) {
4502                 throw new Error("initializeWasm() must be awaited first!");
4503         }
4504         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_get_ok(owner);
4505         return nativeResponseValue;
4506 }
4507         // enum LDKSecp256k1Error CResult_PayeePubKeyErrorZ_get_err(LDKCResult_PayeePubKeyErrorZ *NONNULL_PTR owner);
4508 /* @internal */
4509 export function CResult_PayeePubKeyErrorZ_get_err(owner: number): Secp256k1Error {
4510         if(!isWasmInitialized) {
4511                 throw new Error("initializeWasm() must be awaited first!");
4512         }
4513         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_get_err(owner);
4514         return nativeResponseValue;
4515 }
4516         // struct LDKPositiveTimestamp CResult_PositiveTimestampCreationErrorZ_get_ok(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR owner);
4517 /* @internal */
4518 export function CResult_PositiveTimestampCreationErrorZ_get_ok(owner: number): number {
4519         if(!isWasmInitialized) {
4520                 throw new Error("initializeWasm() must be awaited first!");
4521         }
4522         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_get_ok(owner);
4523         return nativeResponseValue;
4524 }
4525         // enum LDKCreationError CResult_PositiveTimestampCreationErrorZ_get_err(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR owner);
4526 /* @internal */
4527 export function CResult_PositiveTimestampCreationErrorZ_get_err(owner: number): CreationError {
4528         if(!isWasmInitialized) {
4529                 throw new Error("initializeWasm() must be awaited first!");
4530         }
4531         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_get_err(owner);
4532         return nativeResponseValue;
4533 }
4534         // void CResult_NoneSemanticErrorZ_get_ok(LDKCResult_NoneSemanticErrorZ *NONNULL_PTR owner);
4535 /* @internal */
4536 export function CResult_NoneSemanticErrorZ_get_ok(owner: number): void {
4537         if(!isWasmInitialized) {
4538                 throw new Error("initializeWasm() must be awaited first!");
4539         }
4540         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_get_ok(owner);
4541         // debug statements here
4542 }
4543         // enum LDKSemanticError CResult_NoneSemanticErrorZ_get_err(LDKCResult_NoneSemanticErrorZ *NONNULL_PTR owner);
4544 /* @internal */
4545 export function CResult_NoneSemanticErrorZ_get_err(owner: number): SemanticError {
4546         if(!isWasmInitialized) {
4547                 throw new Error("initializeWasm() must be awaited first!");
4548         }
4549         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_get_err(owner);
4550         return nativeResponseValue;
4551 }
4552         // struct LDKInvoice CResult_InvoiceSemanticErrorZ_get_ok(LDKCResult_InvoiceSemanticErrorZ *NONNULL_PTR owner);
4553 /* @internal */
4554 export function CResult_InvoiceSemanticErrorZ_get_ok(owner: number): number {
4555         if(!isWasmInitialized) {
4556                 throw new Error("initializeWasm() must be awaited first!");
4557         }
4558         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_get_ok(owner);
4559         return nativeResponseValue;
4560 }
4561         // enum LDKSemanticError CResult_InvoiceSemanticErrorZ_get_err(LDKCResult_InvoiceSemanticErrorZ *NONNULL_PTR owner);
4562 /* @internal */
4563 export function CResult_InvoiceSemanticErrorZ_get_err(owner: number): SemanticError {
4564         if(!isWasmInitialized) {
4565                 throw new Error("initializeWasm() must be awaited first!");
4566         }
4567         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_get_err(owner);
4568         return nativeResponseValue;
4569 }
4570         // struct LDKDescription CResult_DescriptionCreationErrorZ_get_ok(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR owner);
4571 /* @internal */
4572 export function CResult_DescriptionCreationErrorZ_get_ok(owner: number): number {
4573         if(!isWasmInitialized) {
4574                 throw new Error("initializeWasm() must be awaited first!");
4575         }
4576         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_get_ok(owner);
4577         return nativeResponseValue;
4578 }
4579         // enum LDKCreationError CResult_DescriptionCreationErrorZ_get_err(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR owner);
4580 /* @internal */
4581 export function CResult_DescriptionCreationErrorZ_get_err(owner: number): CreationError {
4582         if(!isWasmInitialized) {
4583                 throw new Error("initializeWasm() must be awaited first!");
4584         }
4585         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_get_err(owner);
4586         return nativeResponseValue;
4587 }
4588         // struct LDKPrivateRoute CResult_PrivateRouteCreationErrorZ_get_ok(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR owner);
4589 /* @internal */
4590 export function CResult_PrivateRouteCreationErrorZ_get_ok(owner: number): number {
4591         if(!isWasmInitialized) {
4592                 throw new Error("initializeWasm() must be awaited first!");
4593         }
4594         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_get_ok(owner);
4595         return nativeResponseValue;
4596 }
4597         // enum LDKCreationError CResult_PrivateRouteCreationErrorZ_get_err(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR owner);
4598 /* @internal */
4599 export function CResult_PrivateRouteCreationErrorZ_get_err(owner: number): CreationError {
4600         if(!isWasmInitialized) {
4601                 throw new Error("initializeWasm() must be awaited first!");
4602         }
4603         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_get_err(owner);
4604         return nativeResponseValue;
4605 }
4606         // struct LDKStr CResult_StringErrorZ_get_ok(LDKCResult_StringErrorZ *NONNULL_PTR owner);
4607 /* @internal */
4608 export function CResult_StringErrorZ_get_ok(owner: number): number {
4609         if(!isWasmInitialized) {
4610                 throw new Error("initializeWasm() must be awaited first!");
4611         }
4612         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_get_ok(owner);
4613         return nativeResponseValue;
4614 }
4615         // enum LDKSecp256k1Error CResult_StringErrorZ_get_err(LDKCResult_StringErrorZ *NONNULL_PTR owner);
4616 /* @internal */
4617 export function CResult_StringErrorZ_get_err(owner: number): Secp256k1Error {
4618         if(!isWasmInitialized) {
4619                 throw new Error("initializeWasm() must be awaited first!");
4620         }
4621         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_get_err(owner);
4622         return nativeResponseValue;
4623 }
4624         // struct LDKChannelMonitorUpdate CResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR owner);
4625 /* @internal */
4626 export function CResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(owner: number): number {
4627         if(!isWasmInitialized) {
4628                 throw new Error("initializeWasm() must be awaited first!");
4629         }
4630         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(owner);
4631         return nativeResponseValue;
4632 }
4633         // struct LDKDecodeError CResult_ChannelMonitorUpdateDecodeErrorZ_get_err(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR owner);
4634 /* @internal */
4635 export function CResult_ChannelMonitorUpdateDecodeErrorZ_get_err(owner: number): number {
4636         if(!isWasmInitialized) {
4637                 throw new Error("initializeWasm() must be awaited first!");
4638         }
4639         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_get_err(owner);
4640         return nativeResponseValue;
4641 }
4642 /* @internal */
4643 export class LDKCOption_MonitorEventZ {
4644         protected constructor() {}
4645 }
4646 /* @internal */
4647 export function LDKCOption_MonitorEventZ_ty_from_ptr(ptr: number): number {
4648         if(!isWasmInitialized) {
4649                 throw new Error("initializeWasm() must be awaited first!");
4650         }
4651         const nativeResponseValue = wasm.TS_LDKCOption_MonitorEventZ_ty_from_ptr(ptr);
4652         return nativeResponseValue;
4653 }
4654 /* @internal */
4655 export function LDKCOption_MonitorEventZ_Some_get_some(ptr: number): number {
4656         if(!isWasmInitialized) {
4657                 throw new Error("initializeWasm() must be awaited first!");
4658         }
4659         const nativeResponseValue = wasm.TS_LDKCOption_MonitorEventZ_Some_get_some(ptr);
4660         return nativeResponseValue;
4661 }
4662         // struct LDKCOption_MonitorEventZ CResult_COption_MonitorEventZDecodeErrorZ_get_ok(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR owner);
4663 /* @internal */
4664 export function CResult_COption_MonitorEventZDecodeErrorZ_get_ok(owner: number): number {
4665         if(!isWasmInitialized) {
4666                 throw new Error("initializeWasm() must be awaited first!");
4667         }
4668         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_get_ok(owner);
4669         return nativeResponseValue;
4670 }
4671         // struct LDKDecodeError CResult_COption_MonitorEventZDecodeErrorZ_get_err(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR owner);
4672 /* @internal */
4673 export function CResult_COption_MonitorEventZDecodeErrorZ_get_err(owner: number): number {
4674         if(!isWasmInitialized) {
4675                 throw new Error("initializeWasm() must be awaited first!");
4676         }
4677         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_get_err(owner);
4678         return nativeResponseValue;
4679 }
4680         // struct LDKHTLCUpdate CResult_HTLCUpdateDecodeErrorZ_get_ok(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR owner);
4681 /* @internal */
4682 export function CResult_HTLCUpdateDecodeErrorZ_get_ok(owner: number): number {
4683         if(!isWasmInitialized) {
4684                 throw new Error("initializeWasm() must be awaited first!");
4685         }
4686         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_get_ok(owner);
4687         return nativeResponseValue;
4688 }
4689         // struct LDKDecodeError CResult_HTLCUpdateDecodeErrorZ_get_err(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR owner);
4690 /* @internal */
4691 export function CResult_HTLCUpdateDecodeErrorZ_get_err(owner: number): number {
4692         if(!isWasmInitialized) {
4693                 throw new Error("initializeWasm() must be awaited first!");
4694         }
4695         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_get_err(owner);
4696         return nativeResponseValue;
4697 }
4698         // struct LDKOutPoint C2Tuple_OutPointScriptZ_get_a(LDKC2Tuple_OutPointScriptZ *NONNULL_PTR owner);
4699 /* @internal */
4700 export function C2Tuple_OutPointScriptZ_get_a(owner: number): number {
4701         if(!isWasmInitialized) {
4702                 throw new Error("initializeWasm() must be awaited first!");
4703         }
4704         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_get_a(owner);
4705         return nativeResponseValue;
4706 }
4707         // struct LDKCVec_u8Z C2Tuple_OutPointScriptZ_get_b(LDKC2Tuple_OutPointScriptZ *NONNULL_PTR owner);
4708 /* @internal */
4709 export function C2Tuple_OutPointScriptZ_get_b(owner: number): number {
4710         if(!isWasmInitialized) {
4711                 throw new Error("initializeWasm() must be awaited first!");
4712         }
4713         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_get_b(owner);
4714         return nativeResponseValue;
4715 }
4716         // uint32_t C2Tuple_u32ScriptZ_get_a(LDKC2Tuple_u32ScriptZ *NONNULL_PTR owner);
4717 /* @internal */
4718 export function C2Tuple_u32ScriptZ_get_a(owner: number): number {
4719         if(!isWasmInitialized) {
4720                 throw new Error("initializeWasm() must be awaited first!");
4721         }
4722         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_get_a(owner);
4723         return nativeResponseValue;
4724 }
4725         // struct LDKCVec_u8Z C2Tuple_u32ScriptZ_get_b(LDKC2Tuple_u32ScriptZ *NONNULL_PTR owner);
4726 /* @internal */
4727 export function C2Tuple_u32ScriptZ_get_b(owner: number): number {
4728         if(!isWasmInitialized) {
4729                 throw new Error("initializeWasm() must be awaited first!");
4730         }
4731         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_get_b(owner);
4732         return nativeResponseValue;
4733 }
4734         // struct LDKThirtyTwoBytes C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_a(LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ *NONNULL_PTR owner);
4735 /* @internal */
4736 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_a(owner: number): number {
4737         if(!isWasmInitialized) {
4738                 throw new Error("initializeWasm() must be awaited first!");
4739         }
4740         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_a(owner);
4741         return nativeResponseValue;
4742 }
4743         // struct LDKCVec_C2Tuple_u32ScriptZZ C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_b(LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ *NONNULL_PTR owner);
4744 /* @internal */
4745 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_b(owner: number): number {
4746         if(!isWasmInitialized) {
4747                 throw new Error("initializeWasm() must be awaited first!");
4748         }
4749         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_get_b(owner);
4750         return nativeResponseValue;
4751 }
4752         // uint32_t C2Tuple_u32TxOutZ_get_a(LDKC2Tuple_u32TxOutZ *NONNULL_PTR owner);
4753 /* @internal */
4754 export function C2Tuple_u32TxOutZ_get_a(owner: number): number {
4755         if(!isWasmInitialized) {
4756                 throw new Error("initializeWasm() must be awaited first!");
4757         }
4758         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_get_a(owner);
4759         return nativeResponseValue;
4760 }
4761         // struct LDKTxOut C2Tuple_u32TxOutZ_get_b(LDKC2Tuple_u32TxOutZ *NONNULL_PTR owner);
4762 /* @internal */
4763 export function C2Tuple_u32TxOutZ_get_b(owner: number): number {
4764         if(!isWasmInitialized) {
4765                 throw new Error("initializeWasm() must be awaited first!");
4766         }
4767         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_get_b(owner);
4768         return nativeResponseValue;
4769 }
4770         // struct LDKThirtyTwoBytes C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_a(LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR owner);
4771 /* @internal */
4772 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_a(owner: number): number {
4773         if(!isWasmInitialized) {
4774                 throw new Error("initializeWasm() must be awaited first!");
4775         }
4776         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_a(owner);
4777         return nativeResponseValue;
4778 }
4779         // struct LDKCVec_C2Tuple_u32TxOutZZ C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_b(LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR owner);
4780 /* @internal */
4781 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_b(owner: number): number {
4782         if(!isWasmInitialized) {
4783                 throw new Error("initializeWasm() must be awaited first!");
4784         }
4785         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_get_b(owner);
4786         return nativeResponseValue;
4787 }
4788 /* @internal */
4789 export class LDKBalance {
4790         protected constructor() {}
4791 }
4792 /* @internal */
4793 export function LDKBalance_ty_from_ptr(ptr: number): number {
4794         if(!isWasmInitialized) {
4795                 throw new Error("initializeWasm() must be awaited first!");
4796         }
4797         const nativeResponseValue = wasm.TS_LDKBalance_ty_from_ptr(ptr);
4798         return nativeResponseValue;
4799 }
4800 /* @internal */
4801 export function LDKBalance_ClaimableOnChannelClose_get_claimable_amount_satoshis(ptr: number): bigint {
4802         if(!isWasmInitialized) {
4803                 throw new Error("initializeWasm() must be awaited first!");
4804         }
4805         const nativeResponseValue = wasm.TS_LDKBalance_ClaimableOnChannelClose_get_claimable_amount_satoshis(ptr);
4806         return nativeResponseValue;
4807 }
4808 /* @internal */
4809 export function LDKBalance_ClaimableAwaitingConfirmations_get_claimable_amount_satoshis(ptr: number): bigint {
4810         if(!isWasmInitialized) {
4811                 throw new Error("initializeWasm() must be awaited first!");
4812         }
4813         const nativeResponseValue = wasm.TS_LDKBalance_ClaimableAwaitingConfirmations_get_claimable_amount_satoshis(ptr);
4814         return nativeResponseValue;
4815 }
4816 /* @internal */
4817 export function LDKBalance_ClaimableAwaitingConfirmations_get_confirmation_height(ptr: number): number {
4818         if(!isWasmInitialized) {
4819                 throw new Error("initializeWasm() must be awaited first!");
4820         }
4821         const nativeResponseValue = wasm.TS_LDKBalance_ClaimableAwaitingConfirmations_get_confirmation_height(ptr);
4822         return nativeResponseValue;
4823 }
4824 /* @internal */
4825 export function LDKBalance_ContentiousClaimable_get_claimable_amount_satoshis(ptr: number): bigint {
4826         if(!isWasmInitialized) {
4827                 throw new Error("initializeWasm() must be awaited first!");
4828         }
4829         const nativeResponseValue = wasm.TS_LDKBalance_ContentiousClaimable_get_claimable_amount_satoshis(ptr);
4830         return nativeResponseValue;
4831 }
4832 /* @internal */
4833 export function LDKBalance_ContentiousClaimable_get_timeout_height(ptr: number): number {
4834         if(!isWasmInitialized) {
4835                 throw new Error("initializeWasm() must be awaited first!");
4836         }
4837         const nativeResponseValue = wasm.TS_LDKBalance_ContentiousClaimable_get_timeout_height(ptr);
4838         return nativeResponseValue;
4839 }
4840 /* @internal */
4841 export function LDKBalance_MaybeClaimableHTLCAwaitingTimeout_get_claimable_amount_satoshis(ptr: number): bigint {
4842         if(!isWasmInitialized) {
4843                 throw new Error("initializeWasm() must be awaited first!");
4844         }
4845         const nativeResponseValue = wasm.TS_LDKBalance_MaybeClaimableHTLCAwaitingTimeout_get_claimable_amount_satoshis(ptr);
4846         return nativeResponseValue;
4847 }
4848 /* @internal */
4849 export function LDKBalance_MaybeClaimableHTLCAwaitingTimeout_get_claimable_height(ptr: number): number {
4850         if(!isWasmInitialized) {
4851                 throw new Error("initializeWasm() must be awaited first!");
4852         }
4853         const nativeResponseValue = wasm.TS_LDKBalance_MaybeClaimableHTLCAwaitingTimeout_get_claimable_height(ptr);
4854         return nativeResponseValue;
4855 }
4856         // struct LDKThirtyTwoBytes C2Tuple_BlockHashChannelMonitorZ_get_a(LDKC2Tuple_BlockHashChannelMonitorZ *NONNULL_PTR owner);
4857 /* @internal */
4858 export function C2Tuple_BlockHashChannelMonitorZ_get_a(owner: number): number {
4859         if(!isWasmInitialized) {
4860                 throw new Error("initializeWasm() must be awaited first!");
4861         }
4862         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_get_a(owner);
4863         return nativeResponseValue;
4864 }
4865         // struct LDKChannelMonitor C2Tuple_BlockHashChannelMonitorZ_get_b(LDKC2Tuple_BlockHashChannelMonitorZ *NONNULL_PTR owner);
4866 /* @internal */
4867 export function C2Tuple_BlockHashChannelMonitorZ_get_b(owner: number): number {
4868         if(!isWasmInitialized) {
4869                 throw new Error("initializeWasm() must be awaited first!");
4870         }
4871         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_get_b(owner);
4872         return nativeResponseValue;
4873 }
4874         // struct LDKC2Tuple_BlockHashChannelMonitorZ CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ *NONNULL_PTR owner);
4875 /* @internal */
4876 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(owner: number): number {
4877         if(!isWasmInitialized) {
4878                 throw new Error("initializeWasm() must be awaited first!");
4879         }
4880         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_ok(owner);
4881         return nativeResponseValue;
4882 }
4883         // struct LDKDecodeError CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ *NONNULL_PTR owner);
4884 /* @internal */
4885 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(owner: number): number {
4886         if(!isWasmInitialized) {
4887                 throw new Error("initializeWasm() must be awaited first!");
4888         }
4889         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_get_err(owner);
4890         return nativeResponseValue;
4891 }
4892         // struct LDKPublicKey C2Tuple_PublicKeyTypeZ_get_a(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR owner);
4893 /* @internal */
4894 export function C2Tuple_PublicKeyTypeZ_get_a(owner: number): number {
4895         if(!isWasmInitialized) {
4896                 throw new Error("initializeWasm() must be awaited first!");
4897         }
4898         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_get_a(owner);
4899         return nativeResponseValue;
4900 }
4901         // struct LDKType C2Tuple_PublicKeyTypeZ_get_b(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR owner);
4902 /* @internal */
4903 export function C2Tuple_PublicKeyTypeZ_get_b(owner: number): number {
4904         if(!isWasmInitialized) {
4905                 throw new Error("initializeWasm() must be awaited first!");
4906         }
4907         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_get_b(owner);
4908         return nativeResponseValue;
4909 }
4910 /* @internal */
4911 export class LDKCOption_NetAddressZ {
4912         protected constructor() {}
4913 }
4914 /* @internal */
4915 export function LDKCOption_NetAddressZ_ty_from_ptr(ptr: number): number {
4916         if(!isWasmInitialized) {
4917                 throw new Error("initializeWasm() must be awaited first!");
4918         }
4919         const nativeResponseValue = wasm.TS_LDKCOption_NetAddressZ_ty_from_ptr(ptr);
4920         return nativeResponseValue;
4921 }
4922 /* @internal */
4923 export function LDKCOption_NetAddressZ_Some_get_some(ptr: number): number {
4924         if(!isWasmInitialized) {
4925                 throw new Error("initializeWasm() must be awaited first!");
4926         }
4927         const nativeResponseValue = wasm.TS_LDKCOption_NetAddressZ_Some_get_some(ptr);
4928         return nativeResponseValue;
4929 }
4930         // struct LDKCVec_u8Z CResult_CVec_u8ZPeerHandleErrorZ_get_ok(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR owner);
4931 /* @internal */
4932 export function CResult_CVec_u8ZPeerHandleErrorZ_get_ok(owner: number): number {
4933         if(!isWasmInitialized) {
4934                 throw new Error("initializeWasm() must be awaited first!");
4935         }
4936         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_get_ok(owner);
4937         return nativeResponseValue;
4938 }
4939         // struct LDKPeerHandleError CResult_CVec_u8ZPeerHandleErrorZ_get_err(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR owner);
4940 /* @internal */
4941 export function CResult_CVec_u8ZPeerHandleErrorZ_get_err(owner: number): number {
4942         if(!isWasmInitialized) {
4943                 throw new Error("initializeWasm() must be awaited first!");
4944         }
4945         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_get_err(owner);
4946         return nativeResponseValue;
4947 }
4948         // void CResult_NonePeerHandleErrorZ_get_ok(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR owner);
4949 /* @internal */
4950 export function CResult_NonePeerHandleErrorZ_get_ok(owner: number): void {
4951         if(!isWasmInitialized) {
4952                 throw new Error("initializeWasm() must be awaited first!");
4953         }
4954         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_get_ok(owner);
4955         // debug statements here
4956 }
4957         // struct LDKPeerHandleError CResult_NonePeerHandleErrorZ_get_err(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR owner);
4958 /* @internal */
4959 export function CResult_NonePeerHandleErrorZ_get_err(owner: number): number {
4960         if(!isWasmInitialized) {
4961                 throw new Error("initializeWasm() must be awaited first!");
4962         }
4963         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_get_err(owner);
4964         return nativeResponseValue;
4965 }
4966         // bool CResult_boolPeerHandleErrorZ_get_ok(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR owner);
4967 /* @internal */
4968 export function CResult_boolPeerHandleErrorZ_get_ok(owner: number): boolean {
4969         if(!isWasmInitialized) {
4970                 throw new Error("initializeWasm() must be awaited first!");
4971         }
4972         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_get_ok(owner);
4973         return nativeResponseValue;
4974 }
4975         // struct LDKPeerHandleError CResult_boolPeerHandleErrorZ_get_err(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR owner);
4976 /* @internal */
4977 export function CResult_boolPeerHandleErrorZ_get_err(owner: number): number {
4978         if(!isWasmInitialized) {
4979                 throw new Error("initializeWasm() must be awaited first!");
4980         }
4981         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_get_err(owner);
4982         return nativeResponseValue;
4983 }
4984         // void CResult_NoneErrorZ_get_ok(LDKCResult_NoneErrorZ *NONNULL_PTR owner);
4985 /* @internal */
4986 export function CResult_NoneErrorZ_get_ok(owner: number): void {
4987         if(!isWasmInitialized) {
4988                 throw new Error("initializeWasm() must be awaited first!");
4989         }
4990         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_get_ok(owner);
4991         // debug statements here
4992 }
4993         // enum LDKIOError CResult_NoneErrorZ_get_err(LDKCResult_NoneErrorZ *NONNULL_PTR owner);
4994 /* @internal */
4995 export function CResult_NoneErrorZ_get_err(owner: number): IOError {
4996         if(!isWasmInitialized) {
4997                 throw new Error("initializeWasm() must be awaited first!");
4998         }
4999         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_get_err(owner);
5000         return nativeResponseValue;
5001 }
5002         // struct LDKNetAddress CResult_NetAddressDecodeErrorZ_get_ok(LDKCResult_NetAddressDecodeErrorZ *NONNULL_PTR owner);
5003 /* @internal */
5004 export function CResult_NetAddressDecodeErrorZ_get_ok(owner: number): number {
5005         if(!isWasmInitialized) {
5006                 throw new Error("initializeWasm() must be awaited first!");
5007         }
5008         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_get_ok(owner);
5009         return nativeResponseValue;
5010 }
5011         // struct LDKDecodeError CResult_NetAddressDecodeErrorZ_get_err(LDKCResult_NetAddressDecodeErrorZ *NONNULL_PTR owner);
5012 /* @internal */
5013 export function CResult_NetAddressDecodeErrorZ_get_err(owner: number): number {
5014         if(!isWasmInitialized) {
5015                 throw new Error("initializeWasm() must be awaited first!");
5016         }
5017         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_get_err(owner);
5018         return nativeResponseValue;
5019 }
5020         // struct LDKAcceptChannel CResult_AcceptChannelDecodeErrorZ_get_ok(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR owner);
5021 /* @internal */
5022 export function CResult_AcceptChannelDecodeErrorZ_get_ok(owner: number): number {
5023         if(!isWasmInitialized) {
5024                 throw new Error("initializeWasm() must be awaited first!");
5025         }
5026         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_get_ok(owner);
5027         return nativeResponseValue;
5028 }
5029         // struct LDKDecodeError CResult_AcceptChannelDecodeErrorZ_get_err(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR owner);
5030 /* @internal */
5031 export function CResult_AcceptChannelDecodeErrorZ_get_err(owner: number): number {
5032         if(!isWasmInitialized) {
5033                 throw new Error("initializeWasm() must be awaited first!");
5034         }
5035         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_get_err(owner);
5036         return nativeResponseValue;
5037 }
5038         // struct LDKAnnouncementSignatures CResult_AnnouncementSignaturesDecodeErrorZ_get_ok(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR owner);
5039 /* @internal */
5040 export function CResult_AnnouncementSignaturesDecodeErrorZ_get_ok(owner: number): number {
5041         if(!isWasmInitialized) {
5042                 throw new Error("initializeWasm() must be awaited first!");
5043         }
5044         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_get_ok(owner);
5045         return nativeResponseValue;
5046 }
5047         // struct LDKDecodeError CResult_AnnouncementSignaturesDecodeErrorZ_get_err(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR owner);
5048 /* @internal */
5049 export function CResult_AnnouncementSignaturesDecodeErrorZ_get_err(owner: number): number {
5050         if(!isWasmInitialized) {
5051                 throw new Error("initializeWasm() must be awaited first!");
5052         }
5053         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_get_err(owner);
5054         return nativeResponseValue;
5055 }
5056         // struct LDKChannelReestablish CResult_ChannelReestablishDecodeErrorZ_get_ok(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR owner);
5057 /* @internal */
5058 export function CResult_ChannelReestablishDecodeErrorZ_get_ok(owner: number): number {
5059         if(!isWasmInitialized) {
5060                 throw new Error("initializeWasm() must be awaited first!");
5061         }
5062         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_get_ok(owner);
5063         return nativeResponseValue;
5064 }
5065         // struct LDKDecodeError CResult_ChannelReestablishDecodeErrorZ_get_err(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR owner);
5066 /* @internal */
5067 export function CResult_ChannelReestablishDecodeErrorZ_get_err(owner: number): number {
5068         if(!isWasmInitialized) {
5069                 throw new Error("initializeWasm() must be awaited first!");
5070         }
5071         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_get_err(owner);
5072         return nativeResponseValue;
5073 }
5074         // struct LDKClosingSigned CResult_ClosingSignedDecodeErrorZ_get_ok(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR owner);
5075 /* @internal */
5076 export function CResult_ClosingSignedDecodeErrorZ_get_ok(owner: number): number {
5077         if(!isWasmInitialized) {
5078                 throw new Error("initializeWasm() must be awaited first!");
5079         }
5080         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_get_ok(owner);
5081         return nativeResponseValue;
5082 }
5083         // struct LDKDecodeError CResult_ClosingSignedDecodeErrorZ_get_err(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR owner);
5084 /* @internal */
5085 export function CResult_ClosingSignedDecodeErrorZ_get_err(owner: number): number {
5086         if(!isWasmInitialized) {
5087                 throw new Error("initializeWasm() must be awaited first!");
5088         }
5089         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_get_err(owner);
5090         return nativeResponseValue;
5091 }
5092         // struct LDKClosingSignedFeeRange CResult_ClosingSignedFeeRangeDecodeErrorZ_get_ok(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR owner);
5093 /* @internal */
5094 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_get_ok(owner: number): number {
5095         if(!isWasmInitialized) {
5096                 throw new Error("initializeWasm() must be awaited first!");
5097         }
5098         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_get_ok(owner);
5099         return nativeResponseValue;
5100 }
5101         // struct LDKDecodeError CResult_ClosingSignedFeeRangeDecodeErrorZ_get_err(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR owner);
5102 /* @internal */
5103 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_get_err(owner: number): number {
5104         if(!isWasmInitialized) {
5105                 throw new Error("initializeWasm() must be awaited first!");
5106         }
5107         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_get_err(owner);
5108         return nativeResponseValue;
5109 }
5110         // struct LDKCommitmentSigned CResult_CommitmentSignedDecodeErrorZ_get_ok(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR owner);
5111 /* @internal */
5112 export function CResult_CommitmentSignedDecodeErrorZ_get_ok(owner: number): number {
5113         if(!isWasmInitialized) {
5114                 throw new Error("initializeWasm() must be awaited first!");
5115         }
5116         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_get_ok(owner);
5117         return nativeResponseValue;
5118 }
5119         // struct LDKDecodeError CResult_CommitmentSignedDecodeErrorZ_get_err(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR owner);
5120 /* @internal */
5121 export function CResult_CommitmentSignedDecodeErrorZ_get_err(owner: number): number {
5122         if(!isWasmInitialized) {
5123                 throw new Error("initializeWasm() must be awaited first!");
5124         }
5125         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_get_err(owner);
5126         return nativeResponseValue;
5127 }
5128         // struct LDKFundingCreated CResult_FundingCreatedDecodeErrorZ_get_ok(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR owner);
5129 /* @internal */
5130 export function CResult_FundingCreatedDecodeErrorZ_get_ok(owner: number): number {
5131         if(!isWasmInitialized) {
5132                 throw new Error("initializeWasm() must be awaited first!");
5133         }
5134         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_get_ok(owner);
5135         return nativeResponseValue;
5136 }
5137         // struct LDKDecodeError CResult_FundingCreatedDecodeErrorZ_get_err(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR owner);
5138 /* @internal */
5139 export function CResult_FundingCreatedDecodeErrorZ_get_err(owner: number): number {
5140         if(!isWasmInitialized) {
5141                 throw new Error("initializeWasm() must be awaited first!");
5142         }
5143         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_get_err(owner);
5144         return nativeResponseValue;
5145 }
5146         // struct LDKFundingSigned CResult_FundingSignedDecodeErrorZ_get_ok(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR owner);
5147 /* @internal */
5148 export function CResult_FundingSignedDecodeErrorZ_get_ok(owner: number): number {
5149         if(!isWasmInitialized) {
5150                 throw new Error("initializeWasm() must be awaited first!");
5151         }
5152         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_get_ok(owner);
5153         return nativeResponseValue;
5154 }
5155         // struct LDKDecodeError CResult_FundingSignedDecodeErrorZ_get_err(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR owner);
5156 /* @internal */
5157 export function CResult_FundingSignedDecodeErrorZ_get_err(owner: number): number {
5158         if(!isWasmInitialized) {
5159                 throw new Error("initializeWasm() must be awaited first!");
5160         }
5161         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_get_err(owner);
5162         return nativeResponseValue;
5163 }
5164         // struct LDKChannelReady CResult_ChannelReadyDecodeErrorZ_get_ok(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR owner);
5165 /* @internal */
5166 export function CResult_ChannelReadyDecodeErrorZ_get_ok(owner: number): number {
5167         if(!isWasmInitialized) {
5168                 throw new Error("initializeWasm() must be awaited first!");
5169         }
5170         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_get_ok(owner);
5171         return nativeResponseValue;
5172 }
5173         // struct LDKDecodeError CResult_ChannelReadyDecodeErrorZ_get_err(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR owner);
5174 /* @internal */
5175 export function CResult_ChannelReadyDecodeErrorZ_get_err(owner: number): number {
5176         if(!isWasmInitialized) {
5177                 throw new Error("initializeWasm() must be awaited first!");
5178         }
5179         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_get_err(owner);
5180         return nativeResponseValue;
5181 }
5182         // struct LDKInit CResult_InitDecodeErrorZ_get_ok(LDKCResult_InitDecodeErrorZ *NONNULL_PTR owner);
5183 /* @internal */
5184 export function CResult_InitDecodeErrorZ_get_ok(owner: number): number {
5185         if(!isWasmInitialized) {
5186                 throw new Error("initializeWasm() must be awaited first!");
5187         }
5188         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_get_ok(owner);
5189         return nativeResponseValue;
5190 }
5191         // struct LDKDecodeError CResult_InitDecodeErrorZ_get_err(LDKCResult_InitDecodeErrorZ *NONNULL_PTR owner);
5192 /* @internal */
5193 export function CResult_InitDecodeErrorZ_get_err(owner: number): number {
5194         if(!isWasmInitialized) {
5195                 throw new Error("initializeWasm() must be awaited first!");
5196         }
5197         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_get_err(owner);
5198         return nativeResponseValue;
5199 }
5200         // struct LDKOpenChannel CResult_OpenChannelDecodeErrorZ_get_ok(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR owner);
5201 /* @internal */
5202 export function CResult_OpenChannelDecodeErrorZ_get_ok(owner: number): number {
5203         if(!isWasmInitialized) {
5204                 throw new Error("initializeWasm() must be awaited first!");
5205         }
5206         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_get_ok(owner);
5207         return nativeResponseValue;
5208 }
5209         // struct LDKDecodeError CResult_OpenChannelDecodeErrorZ_get_err(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR owner);
5210 /* @internal */
5211 export function CResult_OpenChannelDecodeErrorZ_get_err(owner: number): number {
5212         if(!isWasmInitialized) {
5213                 throw new Error("initializeWasm() must be awaited first!");
5214         }
5215         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_get_err(owner);
5216         return nativeResponseValue;
5217 }
5218         // struct LDKRevokeAndACK CResult_RevokeAndACKDecodeErrorZ_get_ok(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR owner);
5219 /* @internal */
5220 export function CResult_RevokeAndACKDecodeErrorZ_get_ok(owner: number): number {
5221         if(!isWasmInitialized) {
5222                 throw new Error("initializeWasm() must be awaited first!");
5223         }
5224         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_get_ok(owner);
5225         return nativeResponseValue;
5226 }
5227         // struct LDKDecodeError CResult_RevokeAndACKDecodeErrorZ_get_err(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR owner);
5228 /* @internal */
5229 export function CResult_RevokeAndACKDecodeErrorZ_get_err(owner: number): number {
5230         if(!isWasmInitialized) {
5231                 throw new Error("initializeWasm() must be awaited first!");
5232         }
5233         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_get_err(owner);
5234         return nativeResponseValue;
5235 }
5236         // struct LDKShutdown CResult_ShutdownDecodeErrorZ_get_ok(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR owner);
5237 /* @internal */
5238 export function CResult_ShutdownDecodeErrorZ_get_ok(owner: number): number {
5239         if(!isWasmInitialized) {
5240                 throw new Error("initializeWasm() must be awaited first!");
5241         }
5242         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_get_ok(owner);
5243         return nativeResponseValue;
5244 }
5245         // struct LDKDecodeError CResult_ShutdownDecodeErrorZ_get_err(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR owner);
5246 /* @internal */
5247 export function CResult_ShutdownDecodeErrorZ_get_err(owner: number): number {
5248         if(!isWasmInitialized) {
5249                 throw new Error("initializeWasm() must be awaited first!");
5250         }
5251         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_get_err(owner);
5252         return nativeResponseValue;
5253 }
5254         // struct LDKUpdateFailHTLC CResult_UpdateFailHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR owner);
5255 /* @internal */
5256 export function CResult_UpdateFailHTLCDecodeErrorZ_get_ok(owner: number): number {
5257         if(!isWasmInitialized) {
5258                 throw new Error("initializeWasm() must be awaited first!");
5259         }
5260         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_get_ok(owner);
5261         return nativeResponseValue;
5262 }
5263         // struct LDKDecodeError CResult_UpdateFailHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR owner);
5264 /* @internal */
5265 export function CResult_UpdateFailHTLCDecodeErrorZ_get_err(owner: number): number {
5266         if(!isWasmInitialized) {
5267                 throw new Error("initializeWasm() must be awaited first!");
5268         }
5269         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_get_err(owner);
5270         return nativeResponseValue;
5271 }
5272         // struct LDKUpdateFailMalformedHTLC CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR owner);
5273 /* @internal */
5274 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_ok(owner: number): number {
5275         if(!isWasmInitialized) {
5276                 throw new Error("initializeWasm() must be awaited first!");
5277         }
5278         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_ok(owner);
5279         return nativeResponseValue;
5280 }
5281         // struct LDKDecodeError CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR owner);
5282 /* @internal */
5283 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_err(owner: number): number {
5284         if(!isWasmInitialized) {
5285                 throw new Error("initializeWasm() must be awaited first!");
5286         }
5287         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_get_err(owner);
5288         return nativeResponseValue;
5289 }
5290         // struct LDKUpdateFee CResult_UpdateFeeDecodeErrorZ_get_ok(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR owner);
5291 /* @internal */
5292 export function CResult_UpdateFeeDecodeErrorZ_get_ok(owner: number): number {
5293         if(!isWasmInitialized) {
5294                 throw new Error("initializeWasm() must be awaited first!");
5295         }
5296         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_get_ok(owner);
5297         return nativeResponseValue;
5298 }
5299         // struct LDKDecodeError CResult_UpdateFeeDecodeErrorZ_get_err(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR owner);
5300 /* @internal */
5301 export function CResult_UpdateFeeDecodeErrorZ_get_err(owner: number): number {
5302         if(!isWasmInitialized) {
5303                 throw new Error("initializeWasm() must be awaited first!");
5304         }
5305         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_get_err(owner);
5306         return nativeResponseValue;
5307 }
5308         // struct LDKUpdateFulfillHTLC CResult_UpdateFulfillHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR owner);
5309 /* @internal */
5310 export function CResult_UpdateFulfillHTLCDecodeErrorZ_get_ok(owner: number): number {
5311         if(!isWasmInitialized) {
5312                 throw new Error("initializeWasm() must be awaited first!");
5313         }
5314         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_get_ok(owner);
5315         return nativeResponseValue;
5316 }
5317         // struct LDKDecodeError CResult_UpdateFulfillHTLCDecodeErrorZ_get_err(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR owner);
5318 /* @internal */
5319 export function CResult_UpdateFulfillHTLCDecodeErrorZ_get_err(owner: number): number {
5320         if(!isWasmInitialized) {
5321                 throw new Error("initializeWasm() must be awaited first!");
5322         }
5323         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_get_err(owner);
5324         return nativeResponseValue;
5325 }
5326         // struct LDKUpdateAddHTLC CResult_UpdateAddHTLCDecodeErrorZ_get_ok(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR owner);
5327 /* @internal */
5328 export function CResult_UpdateAddHTLCDecodeErrorZ_get_ok(owner: number): number {
5329         if(!isWasmInitialized) {
5330                 throw new Error("initializeWasm() must be awaited first!");
5331         }
5332         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_get_ok(owner);
5333         return nativeResponseValue;
5334 }
5335         // struct LDKDecodeError CResult_UpdateAddHTLCDecodeErrorZ_get_err(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR owner);
5336 /* @internal */
5337 export function CResult_UpdateAddHTLCDecodeErrorZ_get_err(owner: number): number {
5338         if(!isWasmInitialized) {
5339                 throw new Error("initializeWasm() must be awaited first!");
5340         }
5341         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_get_err(owner);
5342         return nativeResponseValue;
5343 }
5344         // struct LDKPing CResult_PingDecodeErrorZ_get_ok(LDKCResult_PingDecodeErrorZ *NONNULL_PTR owner);
5345 /* @internal */
5346 export function CResult_PingDecodeErrorZ_get_ok(owner: number): number {
5347         if(!isWasmInitialized) {
5348                 throw new Error("initializeWasm() must be awaited first!");
5349         }
5350         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_get_ok(owner);
5351         return nativeResponseValue;
5352 }
5353         // struct LDKDecodeError CResult_PingDecodeErrorZ_get_err(LDKCResult_PingDecodeErrorZ *NONNULL_PTR owner);
5354 /* @internal */
5355 export function CResult_PingDecodeErrorZ_get_err(owner: number): number {
5356         if(!isWasmInitialized) {
5357                 throw new Error("initializeWasm() must be awaited first!");
5358         }
5359         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_get_err(owner);
5360         return nativeResponseValue;
5361 }
5362         // struct LDKPong CResult_PongDecodeErrorZ_get_ok(LDKCResult_PongDecodeErrorZ *NONNULL_PTR owner);
5363 /* @internal */
5364 export function CResult_PongDecodeErrorZ_get_ok(owner: number): number {
5365         if(!isWasmInitialized) {
5366                 throw new Error("initializeWasm() must be awaited first!");
5367         }
5368         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_get_ok(owner);
5369         return nativeResponseValue;
5370 }
5371         // struct LDKDecodeError CResult_PongDecodeErrorZ_get_err(LDKCResult_PongDecodeErrorZ *NONNULL_PTR owner);
5372 /* @internal */
5373 export function CResult_PongDecodeErrorZ_get_err(owner: number): number {
5374         if(!isWasmInitialized) {
5375                 throw new Error("initializeWasm() must be awaited first!");
5376         }
5377         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_get_err(owner);
5378         return nativeResponseValue;
5379 }
5380         // struct LDKUnsignedChannelAnnouncement CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_ok(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5381 /* @internal */
5382 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_ok(owner: number): number {
5383         if(!isWasmInitialized) {
5384                 throw new Error("initializeWasm() must be awaited first!");
5385         }
5386         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_ok(owner);
5387         return nativeResponseValue;
5388 }
5389         // struct LDKDecodeError CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_err(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5390 /* @internal */
5391 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_err(owner: number): number {
5392         if(!isWasmInitialized) {
5393                 throw new Error("initializeWasm() must be awaited first!");
5394         }
5395         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_get_err(owner);
5396         return nativeResponseValue;
5397 }
5398         // struct LDKChannelAnnouncement CResult_ChannelAnnouncementDecodeErrorZ_get_ok(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5399 /* @internal */
5400 export function CResult_ChannelAnnouncementDecodeErrorZ_get_ok(owner: number): number {
5401         if(!isWasmInitialized) {
5402                 throw new Error("initializeWasm() must be awaited first!");
5403         }
5404         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_get_ok(owner);
5405         return nativeResponseValue;
5406 }
5407         // struct LDKDecodeError CResult_ChannelAnnouncementDecodeErrorZ_get_err(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5408 /* @internal */
5409 export function CResult_ChannelAnnouncementDecodeErrorZ_get_err(owner: number): number {
5410         if(!isWasmInitialized) {
5411                 throw new Error("initializeWasm() must be awaited first!");
5412         }
5413         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_get_err(owner);
5414         return nativeResponseValue;
5415 }
5416         // struct LDKUnsignedChannelUpdate CResult_UnsignedChannelUpdateDecodeErrorZ_get_ok(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
5417 /* @internal */
5418 export function CResult_UnsignedChannelUpdateDecodeErrorZ_get_ok(owner: number): number {
5419         if(!isWasmInitialized) {
5420                 throw new Error("initializeWasm() must be awaited first!");
5421         }
5422         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_get_ok(owner);
5423         return nativeResponseValue;
5424 }
5425         // struct LDKDecodeError CResult_UnsignedChannelUpdateDecodeErrorZ_get_err(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
5426 /* @internal */
5427 export function CResult_UnsignedChannelUpdateDecodeErrorZ_get_err(owner: number): number {
5428         if(!isWasmInitialized) {
5429                 throw new Error("initializeWasm() must be awaited first!");
5430         }
5431         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_get_err(owner);
5432         return nativeResponseValue;
5433 }
5434         // struct LDKChannelUpdate CResult_ChannelUpdateDecodeErrorZ_get_ok(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
5435 /* @internal */
5436 export function CResult_ChannelUpdateDecodeErrorZ_get_ok(owner: number): number {
5437         if(!isWasmInitialized) {
5438                 throw new Error("initializeWasm() must be awaited first!");
5439         }
5440         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_get_ok(owner);
5441         return nativeResponseValue;
5442 }
5443         // struct LDKDecodeError CResult_ChannelUpdateDecodeErrorZ_get_err(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR owner);
5444 /* @internal */
5445 export function CResult_ChannelUpdateDecodeErrorZ_get_err(owner: number): number {
5446         if(!isWasmInitialized) {
5447                 throw new Error("initializeWasm() must be awaited first!");
5448         }
5449         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_get_err(owner);
5450         return nativeResponseValue;
5451 }
5452         // struct LDKErrorMessage CResult_ErrorMessageDecodeErrorZ_get_ok(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR owner);
5453 /* @internal */
5454 export function CResult_ErrorMessageDecodeErrorZ_get_ok(owner: number): number {
5455         if(!isWasmInitialized) {
5456                 throw new Error("initializeWasm() must be awaited first!");
5457         }
5458         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_get_ok(owner);
5459         return nativeResponseValue;
5460 }
5461         // struct LDKDecodeError CResult_ErrorMessageDecodeErrorZ_get_err(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR owner);
5462 /* @internal */
5463 export function CResult_ErrorMessageDecodeErrorZ_get_err(owner: number): number {
5464         if(!isWasmInitialized) {
5465                 throw new Error("initializeWasm() must be awaited first!");
5466         }
5467         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_get_err(owner);
5468         return nativeResponseValue;
5469 }
5470         // struct LDKWarningMessage CResult_WarningMessageDecodeErrorZ_get_ok(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR owner);
5471 /* @internal */
5472 export function CResult_WarningMessageDecodeErrorZ_get_ok(owner: number): number {
5473         if(!isWasmInitialized) {
5474                 throw new Error("initializeWasm() must be awaited first!");
5475         }
5476         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_get_ok(owner);
5477         return nativeResponseValue;
5478 }
5479         // struct LDKDecodeError CResult_WarningMessageDecodeErrorZ_get_err(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR owner);
5480 /* @internal */
5481 export function CResult_WarningMessageDecodeErrorZ_get_err(owner: number): number {
5482         if(!isWasmInitialized) {
5483                 throw new Error("initializeWasm() must be awaited first!");
5484         }
5485         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_get_err(owner);
5486         return nativeResponseValue;
5487 }
5488         // struct LDKUnsignedNodeAnnouncement CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_ok(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5489 /* @internal */
5490 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_ok(owner: number): number {
5491         if(!isWasmInitialized) {
5492                 throw new Error("initializeWasm() must be awaited first!");
5493         }
5494         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_ok(owner);
5495         return nativeResponseValue;
5496 }
5497         // struct LDKDecodeError CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_err(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5498 /* @internal */
5499 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_err(owner: number): number {
5500         if(!isWasmInitialized) {
5501                 throw new Error("initializeWasm() must be awaited first!");
5502         }
5503         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_get_err(owner);
5504         return nativeResponseValue;
5505 }
5506         // struct LDKNodeAnnouncement CResult_NodeAnnouncementDecodeErrorZ_get_ok(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5507 /* @internal */
5508 export function CResult_NodeAnnouncementDecodeErrorZ_get_ok(owner: number): number {
5509         if(!isWasmInitialized) {
5510                 throw new Error("initializeWasm() must be awaited first!");
5511         }
5512         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_get_ok(owner);
5513         return nativeResponseValue;
5514 }
5515         // struct LDKDecodeError CResult_NodeAnnouncementDecodeErrorZ_get_err(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR owner);
5516 /* @internal */
5517 export function CResult_NodeAnnouncementDecodeErrorZ_get_err(owner: number): number {
5518         if(!isWasmInitialized) {
5519                 throw new Error("initializeWasm() must be awaited first!");
5520         }
5521         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_get_err(owner);
5522         return nativeResponseValue;
5523 }
5524         // struct LDKQueryShortChannelIds CResult_QueryShortChannelIdsDecodeErrorZ_get_ok(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR owner);
5525 /* @internal */
5526 export function CResult_QueryShortChannelIdsDecodeErrorZ_get_ok(owner: number): number {
5527         if(!isWasmInitialized) {
5528                 throw new Error("initializeWasm() must be awaited first!");
5529         }
5530         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_get_ok(owner);
5531         return nativeResponseValue;
5532 }
5533         // struct LDKDecodeError CResult_QueryShortChannelIdsDecodeErrorZ_get_err(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR owner);
5534 /* @internal */
5535 export function CResult_QueryShortChannelIdsDecodeErrorZ_get_err(owner: number): number {
5536         if(!isWasmInitialized) {
5537                 throw new Error("initializeWasm() must be awaited first!");
5538         }
5539         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_get_err(owner);
5540         return nativeResponseValue;
5541 }
5542         // struct LDKReplyShortChannelIdsEnd CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR owner);
5543 /* @internal */
5544 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(owner: number): number {
5545         if(!isWasmInitialized) {
5546                 throw new Error("initializeWasm() must be awaited first!");
5547         }
5548         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_ok(owner);
5549         return nativeResponseValue;
5550 }
5551         // struct LDKDecodeError CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR owner);
5552 /* @internal */
5553 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(owner: number): number {
5554         if(!isWasmInitialized) {
5555                 throw new Error("initializeWasm() must be awaited first!");
5556         }
5557         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_get_err(owner);
5558         return nativeResponseValue;
5559 }
5560         // struct LDKQueryChannelRange CResult_QueryChannelRangeDecodeErrorZ_get_ok(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR owner);
5561 /* @internal */
5562 export function CResult_QueryChannelRangeDecodeErrorZ_get_ok(owner: number): number {
5563         if(!isWasmInitialized) {
5564                 throw new Error("initializeWasm() must be awaited first!");
5565         }
5566         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_get_ok(owner);
5567         return nativeResponseValue;
5568 }
5569         // struct LDKDecodeError CResult_QueryChannelRangeDecodeErrorZ_get_err(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR owner);
5570 /* @internal */
5571 export function CResult_QueryChannelRangeDecodeErrorZ_get_err(owner: number): number {
5572         if(!isWasmInitialized) {
5573                 throw new Error("initializeWasm() must be awaited first!");
5574         }
5575         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_get_err(owner);
5576         return nativeResponseValue;
5577 }
5578         // struct LDKReplyChannelRange CResult_ReplyChannelRangeDecodeErrorZ_get_ok(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR owner);
5579 /* @internal */
5580 export function CResult_ReplyChannelRangeDecodeErrorZ_get_ok(owner: number): number {
5581         if(!isWasmInitialized) {
5582                 throw new Error("initializeWasm() must be awaited first!");
5583         }
5584         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_get_ok(owner);
5585         return nativeResponseValue;
5586 }
5587         // struct LDKDecodeError CResult_ReplyChannelRangeDecodeErrorZ_get_err(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR owner);
5588 /* @internal */
5589 export function CResult_ReplyChannelRangeDecodeErrorZ_get_err(owner: number): number {
5590         if(!isWasmInitialized) {
5591                 throw new Error("initializeWasm() must be awaited first!");
5592         }
5593         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_get_err(owner);
5594         return nativeResponseValue;
5595 }
5596         // struct LDKGossipTimestampFilter CResult_GossipTimestampFilterDecodeErrorZ_get_ok(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR owner);
5597 /* @internal */
5598 export function CResult_GossipTimestampFilterDecodeErrorZ_get_ok(owner: number): number {
5599         if(!isWasmInitialized) {
5600                 throw new Error("initializeWasm() must be awaited first!");
5601         }
5602         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_get_ok(owner);
5603         return nativeResponseValue;
5604 }
5605         // struct LDKDecodeError CResult_GossipTimestampFilterDecodeErrorZ_get_err(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR owner);
5606 /* @internal */
5607 export function CResult_GossipTimestampFilterDecodeErrorZ_get_err(owner: number): number {
5608         if(!isWasmInitialized) {
5609                 throw new Error("initializeWasm() must be awaited first!");
5610         }
5611         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_get_err(owner);
5612         return nativeResponseValue;
5613 }
5614 /* @internal */
5615 export class LDKSignOrCreationError {
5616         protected constructor() {}
5617 }
5618 /* @internal */
5619 export function LDKSignOrCreationError_ty_from_ptr(ptr: number): number {
5620         if(!isWasmInitialized) {
5621                 throw new Error("initializeWasm() must be awaited first!");
5622         }
5623         const nativeResponseValue = wasm.TS_LDKSignOrCreationError_ty_from_ptr(ptr);
5624         return nativeResponseValue;
5625 }
5626 /* @internal */
5627 export function LDKSignOrCreationError_CreationError_get_creation_error(ptr: number): CreationError {
5628         if(!isWasmInitialized) {
5629                 throw new Error("initializeWasm() must be awaited first!");
5630         }
5631         const nativeResponseValue = wasm.TS_LDKSignOrCreationError_CreationError_get_creation_error(ptr);
5632         return nativeResponseValue;
5633 }
5634         // struct LDKInvoice CResult_InvoiceSignOrCreationErrorZ_get_ok(LDKCResult_InvoiceSignOrCreationErrorZ *NONNULL_PTR owner);
5635 /* @internal */
5636 export function CResult_InvoiceSignOrCreationErrorZ_get_ok(owner: number): number {
5637         if(!isWasmInitialized) {
5638                 throw new Error("initializeWasm() must be awaited first!");
5639         }
5640         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_get_ok(owner);
5641         return nativeResponseValue;
5642 }
5643         // struct LDKSignOrCreationError CResult_InvoiceSignOrCreationErrorZ_get_err(LDKCResult_InvoiceSignOrCreationErrorZ *NONNULL_PTR owner);
5644 /* @internal */
5645 export function CResult_InvoiceSignOrCreationErrorZ_get_err(owner: number): number {
5646         if(!isWasmInitialized) {
5647                 throw new Error("initializeWasm() must be awaited first!");
5648         }
5649         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_get_err(owner);
5650         return nativeResponseValue;
5651 }
5652 /* @internal */
5653 export interface LDKFilter {
5654         register_tx (txid: number, script_pubkey: number): void;
5655         register_output (output: number): number;
5656 }
5657
5658 /* @internal */
5659 export function LDKFilter_new(impl: LDKFilter): number {
5660         if(!isWasmInitialized) {
5661                 throw new Error("initializeWasm() must be awaited first!");
5662         }
5663         var new_obj_idx = js_objs.length;
5664         for (var i = 0; i < js_objs.length; i++) {
5665                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5666         }
5667         js_objs[i] = new WeakRef(impl);
5668         return wasm.TS_LDKFilter_new(i);
5669 }
5670         // void Filter_register_tx LDKFilter *NONNULL_PTR this_arg, const uint8_t (*txid)[32], struct LDKu8slice script_pubkey
5671 /* @internal */
5672 export function Filter_register_tx(this_arg: number, txid: number, script_pubkey: number): void {
5673         if(!isWasmInitialized) {
5674                 throw new Error("initializeWasm() must be awaited first!");
5675         }
5676         const nativeResponseValue = wasm.TS_Filter_register_tx(this_arg, txid, script_pubkey);
5677         // debug statements here
5678 }
5679         // LDKCOption_C2Tuple_usizeTransactionZZ Filter_register_output LDKFilter *NONNULL_PTR this_arg, struct LDKWatchedOutput output
5680 /* @internal */
5681 export function Filter_register_output(this_arg: number, output: number): number {
5682         if(!isWasmInitialized) {
5683                 throw new Error("initializeWasm() must be awaited first!");
5684         }
5685         const nativeResponseValue = wasm.TS_Filter_register_output(this_arg, output);
5686         return nativeResponseValue;
5687 }
5688 /* @internal */
5689 export class LDKCOption_FilterZ {
5690         protected constructor() {}
5691 }
5692 /* @internal */
5693 export function LDKCOption_FilterZ_ty_from_ptr(ptr: number): number {
5694         if(!isWasmInitialized) {
5695                 throw new Error("initializeWasm() must be awaited first!");
5696         }
5697         const nativeResponseValue = wasm.TS_LDKCOption_FilterZ_ty_from_ptr(ptr);
5698         return nativeResponseValue;
5699 }
5700 /* @internal */
5701 export function LDKCOption_FilterZ_Some_get_some(ptr: number): number {
5702         if(!isWasmInitialized) {
5703                 throw new Error("initializeWasm() must be awaited first!");
5704         }
5705         const nativeResponseValue = wasm.TS_LDKCOption_FilterZ_Some_get_some(ptr);
5706         return nativeResponseValue;
5707 }
5708         // struct LDKLockedChannelMonitor *CResult_LockedChannelMonitorNoneZ_get_ok(LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR owner);
5709 /* @internal */
5710 export function CResult_LockedChannelMonitorNoneZ_get_ok(owner: number): number {
5711         if(!isWasmInitialized) {
5712                 throw new Error("initializeWasm() must be awaited first!");
5713         }
5714         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_get_ok(owner);
5715         return nativeResponseValue;
5716 }
5717         // void CResult_LockedChannelMonitorNoneZ_get_err(LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR owner);
5718 /* @internal */
5719 export function CResult_LockedChannelMonitorNoneZ_get_err(owner: number): void {
5720         if(!isWasmInitialized) {
5721                 throw new Error("initializeWasm() must be awaited first!");
5722         }
5723         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_get_err(owner);
5724         // debug statements here
5725 }
5726 /* @internal */
5727 export interface LDKMessageSendEventsProvider {
5728         get_and_clear_pending_msg_events (): number;
5729 }
5730
5731 /* @internal */
5732 export function LDKMessageSendEventsProvider_new(impl: LDKMessageSendEventsProvider): number {
5733         if(!isWasmInitialized) {
5734                 throw new Error("initializeWasm() must be awaited first!");
5735         }
5736         var new_obj_idx = js_objs.length;
5737         for (var i = 0; i < js_objs.length; i++) {
5738                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5739         }
5740         js_objs[i] = new WeakRef(impl);
5741         return wasm.TS_LDKMessageSendEventsProvider_new(i);
5742 }
5743         // LDKCVec_MessageSendEventZ MessageSendEventsProvider_get_and_clear_pending_msg_events LDKMessageSendEventsProvider *NONNULL_PTR this_arg
5744 /* @internal */
5745 export function MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg: number): number {
5746         if(!isWasmInitialized) {
5747                 throw new Error("initializeWasm() must be awaited first!");
5748         }
5749         const nativeResponseValue = wasm.TS_MessageSendEventsProvider_get_and_clear_pending_msg_events(this_arg);
5750         return nativeResponseValue;
5751 }
5752 /* @internal */
5753 export interface LDKEventHandler {
5754         handle_event (event: number): void;
5755 }
5756
5757 /* @internal */
5758 export function LDKEventHandler_new(impl: LDKEventHandler): number {
5759         if(!isWasmInitialized) {
5760                 throw new Error("initializeWasm() must be awaited first!");
5761         }
5762         var new_obj_idx = js_objs.length;
5763         for (var i = 0; i < js_objs.length; i++) {
5764                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5765         }
5766         js_objs[i] = new WeakRef(impl);
5767         return wasm.TS_LDKEventHandler_new(i);
5768 }
5769         // void EventHandler_handle_event LDKEventHandler *NONNULL_PTR this_arg, const struct LDKEvent *NONNULL_PTR event
5770 /* @internal */
5771 export function EventHandler_handle_event(this_arg: number, event: number): void {
5772         if(!isWasmInitialized) {
5773                 throw new Error("initializeWasm() must be awaited first!");
5774         }
5775         const nativeResponseValue = wasm.TS_EventHandler_handle_event(this_arg, event);
5776         // debug statements here
5777 }
5778 /* @internal */
5779 export interface LDKEventsProvider {
5780         process_pending_events (handler: number): void;
5781 }
5782
5783 /* @internal */
5784 export function LDKEventsProvider_new(impl: LDKEventsProvider): number {
5785         if(!isWasmInitialized) {
5786                 throw new Error("initializeWasm() must be awaited first!");
5787         }
5788         var new_obj_idx = js_objs.length;
5789         for (var i = 0; i < js_objs.length; i++) {
5790                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5791         }
5792         js_objs[i] = new WeakRef(impl);
5793         return wasm.TS_LDKEventsProvider_new(i);
5794 }
5795         // void EventsProvider_process_pending_events LDKEventsProvider *NONNULL_PTR this_arg, struct LDKEventHandler handler
5796 /* @internal */
5797 export function EventsProvider_process_pending_events(this_arg: number, handler: number): void {
5798         if(!isWasmInitialized) {
5799                 throw new Error("initializeWasm() must be awaited first!");
5800         }
5801         const nativeResponseValue = wasm.TS_EventsProvider_process_pending_events(this_arg, handler);
5802         // debug statements here
5803 }
5804 /* @internal */
5805 export interface LDKScore {
5806         channel_penalty_msat (short_channel_id: bigint, source: number, target: number, usage: number): bigint;
5807         payment_path_failed (path: number, short_channel_id: bigint): void;
5808         payment_path_successful (path: number): void;
5809         probe_failed (path: number, short_channel_id: bigint): void;
5810         probe_successful (path: number): void;
5811         write (): number;
5812 }
5813
5814 /* @internal */
5815 export function LDKScore_new(impl: LDKScore): number {
5816         if(!isWasmInitialized) {
5817                 throw new Error("initializeWasm() must be awaited first!");
5818         }
5819         var new_obj_idx = js_objs.length;
5820         for (var i = 0; i < js_objs.length; i++) {
5821                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5822         }
5823         js_objs[i] = new WeakRef(impl);
5824         return wasm.TS_LDKScore_new(i);
5825 }
5826         // uint64_t Score_channel_penalty_msat LDKScore *NONNULL_PTR this_arg, uint64_t short_channel_id, const struct LDKNodeId *NONNULL_PTR source, const struct LDKNodeId *NONNULL_PTR target, struct LDKChannelUsage usage
5827 /* @internal */
5828 export function Score_channel_penalty_msat(this_arg: number, short_channel_id: bigint, source: number, target: number, usage: number): bigint {
5829         if(!isWasmInitialized) {
5830                 throw new Error("initializeWasm() must be awaited first!");
5831         }
5832         const nativeResponseValue = wasm.TS_Score_channel_penalty_msat(this_arg, short_channel_id, source, target, usage);
5833         return nativeResponseValue;
5834 }
5835         // void Score_payment_path_failed LDKScore *NONNULL_PTR this_arg, struct LDKCVec_RouteHopZ path, uint64_t short_channel_id
5836 /* @internal */
5837 export function Score_payment_path_failed(this_arg: number, path: number, short_channel_id: bigint): void {
5838         if(!isWasmInitialized) {
5839                 throw new Error("initializeWasm() must be awaited first!");
5840         }
5841         const nativeResponseValue = wasm.TS_Score_payment_path_failed(this_arg, path, short_channel_id);
5842         // debug statements here
5843 }
5844         // void Score_payment_path_successful LDKScore *NONNULL_PTR this_arg, struct LDKCVec_RouteHopZ path
5845 /* @internal */
5846 export function Score_payment_path_successful(this_arg: number, path: number): void {
5847         if(!isWasmInitialized) {
5848                 throw new Error("initializeWasm() must be awaited first!");
5849         }
5850         const nativeResponseValue = wasm.TS_Score_payment_path_successful(this_arg, path);
5851         // debug statements here
5852 }
5853         // void Score_probe_failed LDKScore *NONNULL_PTR this_arg, struct LDKCVec_RouteHopZ path, uint64_t short_channel_id
5854 /* @internal */
5855 export function Score_probe_failed(this_arg: number, path: number, short_channel_id: bigint): void {
5856         if(!isWasmInitialized) {
5857                 throw new Error("initializeWasm() must be awaited first!");
5858         }
5859         const nativeResponseValue = wasm.TS_Score_probe_failed(this_arg, path, short_channel_id);
5860         // debug statements here
5861 }
5862         // void Score_probe_successful LDKScore *NONNULL_PTR this_arg, struct LDKCVec_RouteHopZ path
5863 /* @internal */
5864 export function Score_probe_successful(this_arg: number, path: number): void {
5865         if(!isWasmInitialized) {
5866                 throw new Error("initializeWasm() must be awaited first!");
5867         }
5868         const nativeResponseValue = wasm.TS_Score_probe_successful(this_arg, path);
5869         // debug statements here
5870 }
5871         // LDKCVec_u8Z Score_write LDKScore *NONNULL_PTR this_arg
5872 /* @internal */
5873 export function Score_write(this_arg: number): number {
5874         if(!isWasmInitialized) {
5875                 throw new Error("initializeWasm() must be awaited first!");
5876         }
5877         const nativeResponseValue = wasm.TS_Score_write(this_arg);
5878         return nativeResponseValue;
5879 }
5880 /* @internal */
5881 export interface LDKPersister {
5882         persist_manager (channel_manager: number): number;
5883         persist_graph (network_graph: number): number;
5884         persist_scorer (scorer: number): number;
5885 }
5886
5887 /* @internal */
5888 export function LDKPersister_new(impl: LDKPersister): number {
5889         if(!isWasmInitialized) {
5890                 throw new Error("initializeWasm() must be awaited first!");
5891         }
5892         var new_obj_idx = js_objs.length;
5893         for (var i = 0; i < js_objs.length; i++) {
5894                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5895         }
5896         js_objs[i] = new WeakRef(impl);
5897         return wasm.TS_LDKPersister_new(i);
5898 }
5899         // LDKCResult_NoneErrorZ Persister_persist_manager LDKPersister *NONNULL_PTR this_arg, const struct LDKChannelManager *NONNULL_PTR channel_manager
5900 /* @internal */
5901 export function Persister_persist_manager(this_arg: number, channel_manager: number): number {
5902         if(!isWasmInitialized) {
5903                 throw new Error("initializeWasm() must be awaited first!");
5904         }
5905         const nativeResponseValue = wasm.TS_Persister_persist_manager(this_arg, channel_manager);
5906         return nativeResponseValue;
5907 }
5908         // LDKCResult_NoneErrorZ Persister_persist_graph LDKPersister *NONNULL_PTR this_arg, const struct LDKNetworkGraph *NONNULL_PTR network_graph
5909 /* @internal */
5910 export function Persister_persist_graph(this_arg: number, network_graph: number): number {
5911         if(!isWasmInitialized) {
5912                 throw new Error("initializeWasm() must be awaited first!");
5913         }
5914         const nativeResponseValue = wasm.TS_Persister_persist_graph(this_arg, network_graph);
5915         return nativeResponseValue;
5916 }
5917         // LDKCResult_NoneErrorZ Persister_persist_scorer LDKPersister *NONNULL_PTR this_arg, const struct LDKMultiThreadedLockableScore *NONNULL_PTR scorer
5918 /* @internal */
5919 export function Persister_persist_scorer(this_arg: number, scorer: number): number {
5920         if(!isWasmInitialized) {
5921                 throw new Error("initializeWasm() must be awaited first!");
5922         }
5923         const nativeResponseValue = wasm.TS_Persister_persist_scorer(this_arg, scorer);
5924         return nativeResponseValue;
5925 }
5926 /* @internal */
5927 export interface LDKListen {
5928         filtered_block_connected (header: number, txdata: number, height: number): void;
5929         block_connected (block: number, height: number): void;
5930         block_disconnected (header: number, height: number): void;
5931 }
5932
5933 /* @internal */
5934 export function LDKListen_new(impl: LDKListen): number {
5935         if(!isWasmInitialized) {
5936                 throw new Error("initializeWasm() must be awaited first!");
5937         }
5938         var new_obj_idx = js_objs.length;
5939         for (var i = 0; i < js_objs.length; i++) {
5940                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5941         }
5942         js_objs[i] = new WeakRef(impl);
5943         return wasm.TS_LDKListen_new(i);
5944 }
5945         // void Listen_filtered_block_connected LDKListen *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height
5946 /* @internal */
5947 export function Listen_filtered_block_connected(this_arg: number, header: number, txdata: number, height: number): void {
5948         if(!isWasmInitialized) {
5949                 throw new Error("initializeWasm() must be awaited first!");
5950         }
5951         const nativeResponseValue = wasm.TS_Listen_filtered_block_connected(this_arg, header, txdata, height);
5952         // debug statements here
5953 }
5954         // void Listen_block_connected LDKListen *NONNULL_PTR this_arg, struct LDKu8slice block, uint32_t height
5955 /* @internal */
5956 export function Listen_block_connected(this_arg: number, block: number, height: number): void {
5957         if(!isWasmInitialized) {
5958                 throw new Error("initializeWasm() must be awaited first!");
5959         }
5960         const nativeResponseValue = wasm.TS_Listen_block_connected(this_arg, block, height);
5961         // debug statements here
5962 }
5963         // void Listen_block_disconnected LDKListen *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height
5964 /* @internal */
5965 export function Listen_block_disconnected(this_arg: number, header: number, height: number): void {
5966         if(!isWasmInitialized) {
5967                 throw new Error("initializeWasm() must be awaited first!");
5968         }
5969         const nativeResponseValue = wasm.TS_Listen_block_disconnected(this_arg, header, height);
5970         // debug statements here
5971 }
5972 /* @internal */
5973 export interface LDKConfirm {
5974         transactions_confirmed (header: number, txdata: number, height: number): void;
5975         transaction_unconfirmed (txid: number): void;
5976         best_block_updated (header: number, height: number): void;
5977         get_relevant_txids (): number;
5978 }
5979
5980 /* @internal */
5981 export function LDKConfirm_new(impl: LDKConfirm): number {
5982         if(!isWasmInitialized) {
5983                 throw new Error("initializeWasm() must be awaited first!");
5984         }
5985         var new_obj_idx = js_objs.length;
5986         for (var i = 0; i < js_objs.length; i++) {
5987                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
5988         }
5989         js_objs[i] = new WeakRef(impl);
5990         return wasm.TS_LDKConfirm_new(i);
5991 }
5992         // void Confirm_transactions_confirmed LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height
5993 /* @internal */
5994 export function Confirm_transactions_confirmed(this_arg: number, header: number, txdata: number, height: number): void {
5995         if(!isWasmInitialized) {
5996                 throw new Error("initializeWasm() must be awaited first!");
5997         }
5998         const nativeResponseValue = wasm.TS_Confirm_transactions_confirmed(this_arg, header, txdata, height);
5999         // debug statements here
6000 }
6001         // void Confirm_transaction_unconfirmed LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*txid)[32]
6002 /* @internal */
6003 export function Confirm_transaction_unconfirmed(this_arg: number, txid: number): void {
6004         if(!isWasmInitialized) {
6005                 throw new Error("initializeWasm() must be awaited first!");
6006         }
6007         const nativeResponseValue = wasm.TS_Confirm_transaction_unconfirmed(this_arg, txid);
6008         // debug statements here
6009 }
6010         // void Confirm_best_block_updated LDKConfirm *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height
6011 /* @internal */
6012 export function Confirm_best_block_updated(this_arg: number, header: number, height: number): void {
6013         if(!isWasmInitialized) {
6014                 throw new Error("initializeWasm() must be awaited first!");
6015         }
6016         const nativeResponseValue = wasm.TS_Confirm_best_block_updated(this_arg, header, height);
6017         // debug statements here
6018 }
6019         // LDKCVec_TxidZ Confirm_get_relevant_txids LDKConfirm *NONNULL_PTR this_arg
6020 /* @internal */
6021 export function Confirm_get_relevant_txids(this_arg: number): number {
6022         if(!isWasmInitialized) {
6023                 throw new Error("initializeWasm() must be awaited first!");
6024         }
6025         const nativeResponseValue = wasm.TS_Confirm_get_relevant_txids(this_arg);
6026         return nativeResponseValue;
6027 }
6028 /* @internal */
6029 export interface LDKPersist {
6030         persist_new_channel (channel_id: number, data: number, update_id: number): number;
6031         update_persisted_channel (channel_id: number, update: number, data: number, update_id: number): number;
6032 }
6033
6034 /* @internal */
6035 export function LDKPersist_new(impl: LDKPersist): number {
6036         if(!isWasmInitialized) {
6037                 throw new Error("initializeWasm() must be awaited first!");
6038         }
6039         var new_obj_idx = js_objs.length;
6040         for (var i = 0; i < js_objs.length; i++) {
6041                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6042         }
6043         js_objs[i] = new WeakRef(impl);
6044         return wasm.TS_LDKPersist_new(i);
6045 }
6046         // LDKCResult_NoneChannelMonitorUpdateErrZ Persist_persist_new_channel LDKPersist *NONNULL_PTR this_arg, struct LDKOutPoint channel_id, const struct LDKChannelMonitor *NONNULL_PTR data, struct LDKMonitorUpdateId update_id
6047 /* @internal */
6048 export function Persist_persist_new_channel(this_arg: number, channel_id: number, data: number, update_id: number): number {
6049         if(!isWasmInitialized) {
6050                 throw new Error("initializeWasm() must be awaited first!");
6051         }
6052         const nativeResponseValue = wasm.TS_Persist_persist_new_channel(this_arg, channel_id, data, update_id);
6053         return nativeResponseValue;
6054 }
6055         // LDKCResult_NoneChannelMonitorUpdateErrZ Persist_update_persisted_channel LDKPersist *NONNULL_PTR this_arg, struct LDKOutPoint channel_id, const struct LDKChannelMonitorUpdate *NONNULL_PTR update, const struct LDKChannelMonitor *NONNULL_PTR data, struct LDKMonitorUpdateId update_id
6056 /* @internal */
6057 export function Persist_update_persisted_channel(this_arg: number, channel_id: number, update: number, data: number, update_id: number): number {
6058         if(!isWasmInitialized) {
6059                 throw new Error("initializeWasm() must be awaited first!");
6060         }
6061         const nativeResponseValue = wasm.TS_Persist_update_persisted_channel(this_arg, channel_id, update, data, update_id);
6062         return nativeResponseValue;
6063 }
6064 /* @internal */
6065 export interface LDKChannelMessageHandler {
6066         handle_open_channel (their_node_id: number, their_features: number, msg: number): void;
6067         handle_accept_channel (their_node_id: number, their_features: number, msg: number): void;
6068         handle_funding_created (their_node_id: number, msg: number): void;
6069         handle_funding_signed (their_node_id: number, msg: number): void;
6070         handle_channel_ready (their_node_id: number, msg: number): void;
6071         handle_shutdown (their_node_id: number, their_features: number, msg: number): void;
6072         handle_closing_signed (their_node_id: number, msg: number): void;
6073         handle_update_add_htlc (their_node_id: number, msg: number): void;
6074         handle_update_fulfill_htlc (their_node_id: number, msg: number): void;
6075         handle_update_fail_htlc (their_node_id: number, msg: number): void;
6076         handle_update_fail_malformed_htlc (their_node_id: number, msg: number): void;
6077         handle_commitment_signed (their_node_id: number, msg: number): void;
6078         handle_revoke_and_ack (their_node_id: number, msg: number): void;
6079         handle_update_fee (their_node_id: number, msg: number): void;
6080         handle_announcement_signatures (their_node_id: number, msg: number): void;
6081         peer_disconnected (their_node_id: number, no_connection_possible: boolean): void;
6082         peer_connected (their_node_id: number, msg: number): void;
6083         handle_channel_reestablish (their_node_id: number, msg: number): void;
6084         handle_channel_update (their_node_id: number, msg: number): void;
6085         handle_error (their_node_id: number, msg: number): void;
6086 }
6087
6088 /* @internal */
6089 export function LDKChannelMessageHandler_new(impl: LDKChannelMessageHandler, MessageSendEventsProvider: LDKMessageSendEventsProvider): number {
6090         if(!isWasmInitialized) {
6091                 throw new Error("initializeWasm() must be awaited first!");
6092         }
6093         var new_obj_idx = js_objs.length;
6094         for (var i = 0; i < js_objs.length; i++) {
6095                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6096         }
6097         js_objs[i] = new WeakRef(impl);
6098         return wasm.TS_LDKChannelMessageHandler_new(i);
6099 }
6100         // void ChannelMessageHandler_handle_open_channel LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKInitFeatures their_features, const struct LDKOpenChannel *NONNULL_PTR msg
6101 /* @internal */
6102 export function ChannelMessageHandler_handle_open_channel(this_arg: number, their_node_id: number, their_features: number, msg: number): void {
6103         if(!isWasmInitialized) {
6104                 throw new Error("initializeWasm() must be awaited first!");
6105         }
6106         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_open_channel(this_arg, their_node_id, their_features, msg);
6107         // debug statements here
6108 }
6109         // void ChannelMessageHandler_handle_accept_channel LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKInitFeatures their_features, const struct LDKAcceptChannel *NONNULL_PTR msg
6110 /* @internal */
6111 export function ChannelMessageHandler_handle_accept_channel(this_arg: number, their_node_id: number, their_features: number, msg: number): void {
6112         if(!isWasmInitialized) {
6113                 throw new Error("initializeWasm() must be awaited first!");
6114         }
6115         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_accept_channel(this_arg, their_node_id, their_features, msg);
6116         // debug statements here
6117 }
6118         // void ChannelMessageHandler_handle_funding_created LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingCreated *NONNULL_PTR msg
6119 /* @internal */
6120 export function ChannelMessageHandler_handle_funding_created(this_arg: number, their_node_id: number, msg: number): void {
6121         if(!isWasmInitialized) {
6122                 throw new Error("initializeWasm() must be awaited first!");
6123         }
6124         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_funding_created(this_arg, their_node_id, msg);
6125         // debug statements here
6126 }
6127         // void ChannelMessageHandler_handle_funding_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKFundingSigned *NONNULL_PTR msg
6128 /* @internal */
6129 export function ChannelMessageHandler_handle_funding_signed(this_arg: number, their_node_id: number, msg: number): void {
6130         if(!isWasmInitialized) {
6131                 throw new Error("initializeWasm() must be awaited first!");
6132         }
6133         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_funding_signed(this_arg, their_node_id, msg);
6134         // debug statements here
6135 }
6136         // void ChannelMessageHandler_handle_channel_ready LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelReady *NONNULL_PTR msg
6137 /* @internal */
6138 export function ChannelMessageHandler_handle_channel_ready(this_arg: number, their_node_id: number, msg: number): void {
6139         if(!isWasmInitialized) {
6140                 throw new Error("initializeWasm() must be awaited first!");
6141         }
6142         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_channel_ready(this_arg, their_node_id, msg);
6143         // debug statements here
6144 }
6145         // void ChannelMessageHandler_handle_shutdown LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInitFeatures *NONNULL_PTR their_features, const struct LDKShutdown *NONNULL_PTR msg
6146 /* @internal */
6147 export function ChannelMessageHandler_handle_shutdown(this_arg: number, their_node_id: number, their_features: number, msg: number): void {
6148         if(!isWasmInitialized) {
6149                 throw new Error("initializeWasm() must be awaited first!");
6150         }
6151         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_shutdown(this_arg, their_node_id, their_features, msg);
6152         // debug statements here
6153 }
6154         // void ChannelMessageHandler_handle_closing_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKClosingSigned *NONNULL_PTR msg
6155 /* @internal */
6156 export function ChannelMessageHandler_handle_closing_signed(this_arg: number, their_node_id: number, msg: number): void {
6157         if(!isWasmInitialized) {
6158                 throw new Error("initializeWasm() must be awaited first!");
6159         }
6160         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_closing_signed(this_arg, their_node_id, msg);
6161         // debug statements here
6162 }
6163         // void ChannelMessageHandler_handle_update_add_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateAddHTLC *NONNULL_PTR msg
6164 /* @internal */
6165 export function ChannelMessageHandler_handle_update_add_htlc(this_arg: number, their_node_id: number, msg: number): void {
6166         if(!isWasmInitialized) {
6167                 throw new Error("initializeWasm() must be awaited first!");
6168         }
6169         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_update_add_htlc(this_arg, their_node_id, msg);
6170         // debug statements here
6171 }
6172         // void ChannelMessageHandler_handle_update_fulfill_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFulfillHTLC *NONNULL_PTR msg
6173 /* @internal */
6174 export function ChannelMessageHandler_handle_update_fulfill_htlc(this_arg: number, their_node_id: number, msg: number): void {
6175         if(!isWasmInitialized) {
6176                 throw new Error("initializeWasm() must be awaited first!");
6177         }
6178         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_update_fulfill_htlc(this_arg, their_node_id, msg);
6179         // debug statements here
6180 }
6181         // void ChannelMessageHandler_handle_update_fail_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailHTLC *NONNULL_PTR msg
6182 /* @internal */
6183 export function ChannelMessageHandler_handle_update_fail_htlc(this_arg: number, their_node_id: number, msg: number): void {
6184         if(!isWasmInitialized) {
6185                 throw new Error("initializeWasm() must be awaited first!");
6186         }
6187         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_update_fail_htlc(this_arg, their_node_id, msg);
6188         // debug statements here
6189 }
6190         // void ChannelMessageHandler_handle_update_fail_malformed_htlc LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR msg
6191 /* @internal */
6192 export function ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg: number, their_node_id: number, msg: number): void {
6193         if(!isWasmInitialized) {
6194                 throw new Error("initializeWasm() must be awaited first!");
6195         }
6196         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_update_fail_malformed_htlc(this_arg, their_node_id, msg);
6197         // debug statements here
6198 }
6199         // void ChannelMessageHandler_handle_commitment_signed LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKCommitmentSigned *NONNULL_PTR msg
6200 /* @internal */
6201 export function ChannelMessageHandler_handle_commitment_signed(this_arg: number, their_node_id: number, msg: number): void {
6202         if(!isWasmInitialized) {
6203                 throw new Error("initializeWasm() must be awaited first!");
6204         }
6205         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_commitment_signed(this_arg, their_node_id, msg);
6206         // debug statements here
6207 }
6208         // void ChannelMessageHandler_handle_revoke_and_ack LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKRevokeAndACK *NONNULL_PTR msg
6209 /* @internal */
6210 export function ChannelMessageHandler_handle_revoke_and_ack(this_arg: number, their_node_id: number, msg: number): void {
6211         if(!isWasmInitialized) {
6212                 throw new Error("initializeWasm() must be awaited first!");
6213         }
6214         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_revoke_and_ack(this_arg, their_node_id, msg);
6215         // debug statements here
6216 }
6217         // void ChannelMessageHandler_handle_update_fee LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKUpdateFee *NONNULL_PTR msg
6218 /* @internal */
6219 export function ChannelMessageHandler_handle_update_fee(this_arg: number, their_node_id: number, msg: number): void {
6220         if(!isWasmInitialized) {
6221                 throw new Error("initializeWasm() must be awaited first!");
6222         }
6223         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_update_fee(this_arg, their_node_id, msg);
6224         // debug statements here
6225 }
6226         // void ChannelMessageHandler_handle_announcement_signatures LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKAnnouncementSignatures *NONNULL_PTR msg
6227 /* @internal */
6228 export function ChannelMessageHandler_handle_announcement_signatures(this_arg: number, their_node_id: number, msg: number): void {
6229         if(!isWasmInitialized) {
6230                 throw new Error("initializeWasm() must be awaited first!");
6231         }
6232         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_announcement_signatures(this_arg, their_node_id, msg);
6233         // debug statements here
6234 }
6235         // void ChannelMessageHandler_peer_disconnected LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, bool no_connection_possible
6236 /* @internal */
6237 export function ChannelMessageHandler_peer_disconnected(this_arg: number, their_node_id: number, no_connection_possible: boolean): void {
6238         if(!isWasmInitialized) {
6239                 throw new Error("initializeWasm() must be awaited first!");
6240         }
6241         const nativeResponseValue = wasm.TS_ChannelMessageHandler_peer_disconnected(this_arg, their_node_id, no_connection_possible);
6242         // debug statements here
6243 }
6244         // void ChannelMessageHandler_peer_connected LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *NONNULL_PTR msg
6245 /* @internal */
6246 export function ChannelMessageHandler_peer_connected(this_arg: number, their_node_id: number, msg: number): void {
6247         if(!isWasmInitialized) {
6248                 throw new Error("initializeWasm() must be awaited first!");
6249         }
6250         const nativeResponseValue = wasm.TS_ChannelMessageHandler_peer_connected(this_arg, their_node_id, msg);
6251         // debug statements here
6252 }
6253         // void ChannelMessageHandler_handle_channel_reestablish LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelReestablish *NONNULL_PTR msg
6254 /* @internal */
6255 export function ChannelMessageHandler_handle_channel_reestablish(this_arg: number, their_node_id: number, msg: number): void {
6256         if(!isWasmInitialized) {
6257                 throw new Error("initializeWasm() must be awaited first!");
6258         }
6259         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_channel_reestablish(this_arg, their_node_id, msg);
6260         // debug statements here
6261 }
6262         // void ChannelMessageHandler_handle_channel_update LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKChannelUpdate *NONNULL_PTR msg
6263 /* @internal */
6264 export function ChannelMessageHandler_handle_channel_update(this_arg: number, their_node_id: number, msg: number): void {
6265         if(!isWasmInitialized) {
6266                 throw new Error("initializeWasm() must be awaited first!");
6267         }
6268         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_channel_update(this_arg, their_node_id, msg);
6269         // debug statements here
6270 }
6271         // void ChannelMessageHandler_handle_error LDKChannelMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKErrorMessage *NONNULL_PTR msg
6272 /* @internal */
6273 export function ChannelMessageHandler_handle_error(this_arg: number, their_node_id: number, msg: number): void {
6274         if(!isWasmInitialized) {
6275                 throw new Error("initializeWasm() must be awaited first!");
6276         }
6277         const nativeResponseValue = wasm.TS_ChannelMessageHandler_handle_error(this_arg, their_node_id, msg);
6278         // debug statements here
6279 }
6280 /* @internal */
6281 export interface LDKRoutingMessageHandler {
6282         handle_node_announcement (msg: number): number;
6283         handle_channel_announcement (msg: number): number;
6284         handle_channel_update (msg: number): number;
6285         get_next_channel_announcements (starting_point: bigint, batch_amount: number): number;
6286         get_next_node_announcements (starting_point: number, batch_amount: number): number;
6287         peer_connected (their_node_id: number, init: number): void;
6288         handle_reply_channel_range (their_node_id: number, msg: number): number;
6289         handle_reply_short_channel_ids_end (their_node_id: number, msg: number): number;
6290         handle_query_channel_range (their_node_id: number, msg: number): number;
6291         handle_query_short_channel_ids (their_node_id: number, msg: number): number;
6292 }
6293
6294 /* @internal */
6295 export function LDKRoutingMessageHandler_new(impl: LDKRoutingMessageHandler, MessageSendEventsProvider: LDKMessageSendEventsProvider): number {
6296         if(!isWasmInitialized) {
6297                 throw new Error("initializeWasm() must be awaited first!");
6298         }
6299         var new_obj_idx = js_objs.length;
6300         for (var i = 0; i < js_objs.length; i++) {
6301                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6302         }
6303         js_objs[i] = new WeakRef(impl);
6304         return wasm.TS_LDKRoutingMessageHandler_new(i);
6305 }
6306         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_node_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKNodeAnnouncement *NONNULL_PTR msg
6307 /* @internal */
6308 export function RoutingMessageHandler_handle_node_announcement(this_arg: number, msg: number): number {
6309         if(!isWasmInitialized) {
6310                 throw new Error("initializeWasm() must be awaited first!");
6311         }
6312         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_node_announcement(this_arg, msg);
6313         return nativeResponseValue;
6314 }
6315         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_channel_announcement LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKChannelAnnouncement *NONNULL_PTR msg
6316 /* @internal */
6317 export function RoutingMessageHandler_handle_channel_announcement(this_arg: number, msg: number): number {
6318         if(!isWasmInitialized) {
6319                 throw new Error("initializeWasm() must be awaited first!");
6320         }
6321         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_channel_announcement(this_arg, msg);
6322         return nativeResponseValue;
6323 }
6324         // LDKCResult_boolLightningErrorZ RoutingMessageHandler_handle_channel_update LDKRoutingMessageHandler *NONNULL_PTR this_arg, const struct LDKChannelUpdate *NONNULL_PTR msg
6325 /* @internal */
6326 export function RoutingMessageHandler_handle_channel_update(this_arg: number, msg: number): number {
6327         if(!isWasmInitialized) {
6328                 throw new Error("initializeWasm() must be awaited first!");
6329         }
6330         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_channel_update(this_arg, msg);
6331         return nativeResponseValue;
6332 }
6333         // LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ RoutingMessageHandler_get_next_channel_announcements LDKRoutingMessageHandler *NONNULL_PTR this_arg, uint64_t starting_point, uint8_t batch_amount
6334 /* @internal */
6335 export function RoutingMessageHandler_get_next_channel_announcements(this_arg: number, starting_point: bigint, batch_amount: number): number {
6336         if(!isWasmInitialized) {
6337                 throw new Error("initializeWasm() must be awaited first!");
6338         }
6339         const nativeResponseValue = wasm.TS_RoutingMessageHandler_get_next_channel_announcements(this_arg, starting_point, batch_amount);
6340         return nativeResponseValue;
6341 }
6342         // LDKCVec_NodeAnnouncementZ RoutingMessageHandler_get_next_node_announcements LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey starting_point, uint8_t batch_amount
6343 /* @internal */
6344 export function RoutingMessageHandler_get_next_node_announcements(this_arg: number, starting_point: number, batch_amount: number): number {
6345         if(!isWasmInitialized) {
6346                 throw new Error("initializeWasm() must be awaited first!");
6347         }
6348         const nativeResponseValue = wasm.TS_RoutingMessageHandler_get_next_node_announcements(this_arg, starting_point, batch_amount);
6349         return nativeResponseValue;
6350 }
6351         // void RoutingMessageHandler_peer_connected LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, const struct LDKInit *NONNULL_PTR init
6352 /* @internal */
6353 export function RoutingMessageHandler_peer_connected(this_arg: number, their_node_id: number, init: number): void {
6354         if(!isWasmInitialized) {
6355                 throw new Error("initializeWasm() must be awaited first!");
6356         }
6357         const nativeResponseValue = wasm.TS_RoutingMessageHandler_peer_connected(this_arg, their_node_id, init);
6358         // debug statements here
6359 }
6360         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_reply_channel_range LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKReplyChannelRange msg
6361 /* @internal */
6362 export function RoutingMessageHandler_handle_reply_channel_range(this_arg: number, their_node_id: number, msg: number): number {
6363         if(!isWasmInitialized) {
6364                 throw new Error("initializeWasm() must be awaited first!");
6365         }
6366         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_reply_channel_range(this_arg, their_node_id, msg);
6367         return nativeResponseValue;
6368 }
6369         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_reply_short_channel_ids_end LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKReplyShortChannelIdsEnd msg
6370 /* @internal */
6371 export function RoutingMessageHandler_handle_reply_short_channel_ids_end(this_arg: number, their_node_id: number, msg: number): number {
6372         if(!isWasmInitialized) {
6373                 throw new Error("initializeWasm() must be awaited first!");
6374         }
6375         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_reply_short_channel_ids_end(this_arg, their_node_id, msg);
6376         return nativeResponseValue;
6377 }
6378         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_query_channel_range LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKQueryChannelRange msg
6379 /* @internal */
6380 export function RoutingMessageHandler_handle_query_channel_range(this_arg: number, their_node_id: number, msg: number): number {
6381         if(!isWasmInitialized) {
6382                 throw new Error("initializeWasm() must be awaited first!");
6383         }
6384         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_query_channel_range(this_arg, their_node_id, msg);
6385         return nativeResponseValue;
6386 }
6387         // LDKCResult_NoneLightningErrorZ RoutingMessageHandler_handle_query_short_channel_ids LDKRoutingMessageHandler *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKQueryShortChannelIds msg
6388 /* @internal */
6389 export function RoutingMessageHandler_handle_query_short_channel_ids(this_arg: number, their_node_id: number, msg: number): number {
6390         if(!isWasmInitialized) {
6391                 throw new Error("initializeWasm() must be awaited first!");
6392         }
6393         const nativeResponseValue = wasm.TS_RoutingMessageHandler_handle_query_short_channel_ids(this_arg, their_node_id, msg);
6394         return nativeResponseValue;
6395 }
6396 /* @internal */
6397 export interface LDKCustomMessageReader {
6398         read (message_type: number, buffer: number): number;
6399 }
6400
6401 /* @internal */
6402 export function LDKCustomMessageReader_new(impl: LDKCustomMessageReader): number {
6403         if(!isWasmInitialized) {
6404                 throw new Error("initializeWasm() must be awaited first!");
6405         }
6406         var new_obj_idx = js_objs.length;
6407         for (var i = 0; i < js_objs.length; i++) {
6408                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6409         }
6410         js_objs[i] = new WeakRef(impl);
6411         return wasm.TS_LDKCustomMessageReader_new(i);
6412 }
6413         // LDKCResult_COption_TypeZDecodeErrorZ CustomMessageReader_read LDKCustomMessageReader *NONNULL_PTR this_arg, uint16_t message_type, struct LDKu8slice buffer
6414 /* @internal */
6415 export function CustomMessageReader_read(this_arg: number, message_type: number, buffer: number): number {
6416         if(!isWasmInitialized) {
6417                 throw new Error("initializeWasm() must be awaited first!");
6418         }
6419         const nativeResponseValue = wasm.TS_CustomMessageReader_read(this_arg, message_type, buffer);
6420         return nativeResponseValue;
6421 }
6422 /* @internal */
6423 export interface LDKCustomMessageHandler {
6424         handle_custom_message (msg: number, sender_node_id: number): number;
6425         get_and_clear_pending_msg (): number;
6426 }
6427
6428 /* @internal */
6429 export function LDKCustomMessageHandler_new(impl: LDKCustomMessageHandler, CustomMessageReader: LDKCustomMessageReader): number {
6430         if(!isWasmInitialized) {
6431                 throw new Error("initializeWasm() must be awaited first!");
6432         }
6433         var new_obj_idx = js_objs.length;
6434         for (var i = 0; i < js_objs.length; i++) {
6435                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6436         }
6437         js_objs[i] = new WeakRef(impl);
6438         return wasm.TS_LDKCustomMessageHandler_new(i);
6439 }
6440         // LDKCResult_NoneLightningErrorZ CustomMessageHandler_handle_custom_message LDKCustomMessageHandler *NONNULL_PTR this_arg, struct LDKType msg, struct LDKPublicKey sender_node_id
6441 /* @internal */
6442 export function CustomMessageHandler_handle_custom_message(this_arg: number, msg: number, sender_node_id: number): number {
6443         if(!isWasmInitialized) {
6444                 throw new Error("initializeWasm() must be awaited first!");
6445         }
6446         const nativeResponseValue = wasm.TS_CustomMessageHandler_handle_custom_message(this_arg, msg, sender_node_id);
6447         return nativeResponseValue;
6448 }
6449         // LDKCVec_C2Tuple_PublicKeyTypeZZ CustomMessageHandler_get_and_clear_pending_msg LDKCustomMessageHandler *NONNULL_PTR this_arg
6450 /* @internal */
6451 export function CustomMessageHandler_get_and_clear_pending_msg(this_arg: number): number {
6452         if(!isWasmInitialized) {
6453                 throw new Error("initializeWasm() must be awaited first!");
6454         }
6455         const nativeResponseValue = wasm.TS_CustomMessageHandler_get_and_clear_pending_msg(this_arg);
6456         return nativeResponseValue;
6457 }
6458 /* @internal */
6459 export interface LDKSocketDescriptor {
6460         send_data (data: number, resume_read: boolean): number;
6461         disconnect_socket (): void;
6462         eq (other_arg: number): boolean;
6463         hash (): bigint;
6464 }
6465
6466 /* @internal */
6467 export function LDKSocketDescriptor_new(impl: LDKSocketDescriptor): number {
6468         if(!isWasmInitialized) {
6469                 throw new Error("initializeWasm() must be awaited first!");
6470         }
6471         var new_obj_idx = js_objs.length;
6472         for (var i = 0; i < js_objs.length; i++) {
6473                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6474         }
6475         js_objs[i] = new WeakRef(impl);
6476         return wasm.TS_LDKSocketDescriptor_new(i);
6477 }
6478         // uintptr_t SocketDescriptor_send_data LDKSocketDescriptor *NONNULL_PTR this_arg, struct LDKu8slice data, bool resume_read
6479 /* @internal */
6480 export function SocketDescriptor_send_data(this_arg: number, data: number, resume_read: boolean): number {
6481         if(!isWasmInitialized) {
6482                 throw new Error("initializeWasm() must be awaited first!");
6483         }
6484         const nativeResponseValue = wasm.TS_SocketDescriptor_send_data(this_arg, data, resume_read);
6485         return nativeResponseValue;
6486 }
6487         // void SocketDescriptor_disconnect_socket LDKSocketDescriptor *NONNULL_PTR this_arg
6488 /* @internal */
6489 export function SocketDescriptor_disconnect_socket(this_arg: number): void {
6490         if(!isWasmInitialized) {
6491                 throw new Error("initializeWasm() must be awaited first!");
6492         }
6493         const nativeResponseValue = wasm.TS_SocketDescriptor_disconnect_socket(this_arg);
6494         // debug statements here
6495 }
6496         // uint64_t SocketDescriptor_hash LDKSocketDescriptor *NONNULL_PTR this_arg
6497 /* @internal */
6498 export function SocketDescriptor_hash(this_arg: number): bigint {
6499         if(!isWasmInitialized) {
6500                 throw new Error("initializeWasm() must be awaited first!");
6501         }
6502         const nativeResponseValue = wasm.TS_SocketDescriptor_hash(this_arg);
6503         return nativeResponseValue;
6504 }
6505 /* @internal */
6506 export class LDKEffectiveCapacity {
6507         protected constructor() {}
6508 }
6509 /* @internal */
6510 export function LDKEffectiveCapacity_ty_from_ptr(ptr: number): number {
6511         if(!isWasmInitialized) {
6512                 throw new Error("initializeWasm() must be awaited first!");
6513         }
6514         const nativeResponseValue = wasm.TS_LDKEffectiveCapacity_ty_from_ptr(ptr);
6515         return nativeResponseValue;
6516 }
6517 /* @internal */
6518 export function LDKEffectiveCapacity_ExactLiquidity_get_liquidity_msat(ptr: number): bigint {
6519         if(!isWasmInitialized) {
6520                 throw new Error("initializeWasm() must be awaited first!");
6521         }
6522         const nativeResponseValue = wasm.TS_LDKEffectiveCapacity_ExactLiquidity_get_liquidity_msat(ptr);
6523         return nativeResponseValue;
6524 }
6525 /* @internal */
6526 export function LDKEffectiveCapacity_MaximumHTLC_get_amount_msat(ptr: number): bigint {
6527         if(!isWasmInitialized) {
6528                 throw new Error("initializeWasm() must be awaited first!");
6529         }
6530         const nativeResponseValue = wasm.TS_LDKEffectiveCapacity_MaximumHTLC_get_amount_msat(ptr);
6531         return nativeResponseValue;
6532 }
6533 /* @internal */
6534 export function LDKEffectiveCapacity_Total_get_capacity_msat(ptr: number): bigint {
6535         if(!isWasmInitialized) {
6536                 throw new Error("initializeWasm() must be awaited first!");
6537         }
6538         const nativeResponseValue = wasm.TS_LDKEffectiveCapacity_Total_get_capacity_msat(ptr);
6539         return nativeResponseValue;
6540 }
6541 /* @internal */
6542 export function LDKEffectiveCapacity_Total_get_htlc_maximum_msat(ptr: number): number {
6543         if(!isWasmInitialized) {
6544                 throw new Error("initializeWasm() must be awaited first!");
6545         }
6546         const nativeResponseValue = wasm.TS_LDKEffectiveCapacity_Total_get_htlc_maximum_msat(ptr);
6547         return nativeResponseValue;
6548 }
6549 /* @internal */
6550 export interface LDKLockableScore {
6551         lock (): number;
6552 }
6553
6554 /* @internal */
6555 export function LDKLockableScore_new(impl: LDKLockableScore): number {
6556         if(!isWasmInitialized) {
6557                 throw new Error("initializeWasm() must be awaited first!");
6558         }
6559         var new_obj_idx = js_objs.length;
6560         for (var i = 0; i < js_objs.length; i++) {
6561                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6562         }
6563         js_objs[i] = new WeakRef(impl);
6564         return wasm.TS_LDKLockableScore_new(i);
6565 }
6566         // LDKScore LockableScore_lock LDKLockableScore *NONNULL_PTR this_arg
6567 /* @internal */
6568 export function LockableScore_lock(this_arg: number): number {
6569         if(!isWasmInitialized) {
6570                 throw new Error("initializeWasm() must be awaited first!");
6571         }
6572         const nativeResponseValue = wasm.TS_LockableScore_lock(this_arg);
6573         return nativeResponseValue;
6574 }
6575 /* @internal */
6576 export class LDKFallback {
6577         protected constructor() {}
6578 }
6579 /* @internal */
6580 export function LDKFallback_ty_from_ptr(ptr: number): number {
6581         if(!isWasmInitialized) {
6582                 throw new Error("initializeWasm() must be awaited first!");
6583         }
6584         const nativeResponseValue = wasm.TS_LDKFallback_ty_from_ptr(ptr);
6585         return nativeResponseValue;
6586 }
6587 /* @internal */
6588 export function LDKFallback_SegWitProgram_get_version(ptr: number): number {
6589         if(!isWasmInitialized) {
6590                 throw new Error("initializeWasm() must be awaited first!");
6591         }
6592         const nativeResponseValue = wasm.TS_LDKFallback_SegWitProgram_get_version(ptr);
6593         return nativeResponseValue;
6594 }
6595 /* @internal */
6596 export function LDKFallback_SegWitProgram_get_program(ptr: number): number {
6597         if(!isWasmInitialized) {
6598                 throw new Error("initializeWasm() must be awaited first!");
6599         }
6600         const nativeResponseValue = wasm.TS_LDKFallback_SegWitProgram_get_program(ptr);
6601         return nativeResponseValue;
6602 }
6603 /* @internal */
6604 export function LDKFallback_PubKeyHash_get_pub_key_hash(ptr: number): number {
6605         if(!isWasmInitialized) {
6606                 throw new Error("initializeWasm() must be awaited first!");
6607         }
6608         const nativeResponseValue = wasm.TS_LDKFallback_PubKeyHash_get_pub_key_hash(ptr);
6609         return nativeResponseValue;
6610 }
6611 /* @internal */
6612 export function LDKFallback_ScriptHash_get_script_hash(ptr: number): number {
6613         if(!isWasmInitialized) {
6614                 throw new Error("initializeWasm() must be awaited first!");
6615         }
6616         const nativeResponseValue = wasm.TS_LDKFallback_ScriptHash_get_script_hash(ptr);
6617         return nativeResponseValue;
6618 }
6619 /* @internal */
6620 export interface LDKPayer {
6621         node_id (): number;
6622         first_hops (): number;
6623         send_payment (route: number, payment_hash: number, payment_secret: number): number;
6624         send_spontaneous_payment (route: number, payment_preimage: number): number;
6625         retry_payment (route: number, payment_id: number): number;
6626         abandon_payment (payment_id: number): void;
6627 }
6628
6629 /* @internal */
6630 export function LDKPayer_new(impl: LDKPayer): number {
6631         if(!isWasmInitialized) {
6632                 throw new Error("initializeWasm() must be awaited first!");
6633         }
6634         var new_obj_idx = js_objs.length;
6635         for (var i = 0; i < js_objs.length; i++) {
6636                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6637         }
6638         js_objs[i] = new WeakRef(impl);
6639         return wasm.TS_LDKPayer_new(i);
6640 }
6641         // LDKPublicKey Payer_node_id LDKPayer *NONNULL_PTR this_arg
6642 /* @internal */
6643 export function Payer_node_id(this_arg: number): number {
6644         if(!isWasmInitialized) {
6645                 throw new Error("initializeWasm() must be awaited first!");
6646         }
6647         const nativeResponseValue = wasm.TS_Payer_node_id(this_arg);
6648         return nativeResponseValue;
6649 }
6650         // LDKCVec_ChannelDetailsZ Payer_first_hops LDKPayer *NONNULL_PTR this_arg
6651 /* @internal */
6652 export function Payer_first_hops(this_arg: number): number {
6653         if(!isWasmInitialized) {
6654                 throw new Error("initializeWasm() must be awaited first!");
6655         }
6656         const nativeResponseValue = wasm.TS_Payer_first_hops(this_arg);
6657         return nativeResponseValue;
6658 }
6659         // LDKCResult_PaymentIdPaymentSendFailureZ Payer_send_payment LDKPayer *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_secret
6660 /* @internal */
6661 export function Payer_send_payment(this_arg: number, route: number, payment_hash: number, payment_secret: number): number {
6662         if(!isWasmInitialized) {
6663                 throw new Error("initializeWasm() must be awaited first!");
6664         }
6665         const nativeResponseValue = wasm.TS_Payer_send_payment(this_arg, route, payment_hash, payment_secret);
6666         return nativeResponseValue;
6667 }
6668         // LDKCResult_PaymentIdPaymentSendFailureZ Payer_send_spontaneous_payment LDKPayer *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_preimage
6669 /* @internal */
6670 export function Payer_send_spontaneous_payment(this_arg: number, route: number, payment_preimage: number): number {
6671         if(!isWasmInitialized) {
6672                 throw new Error("initializeWasm() must be awaited first!");
6673         }
6674         const nativeResponseValue = wasm.TS_Payer_send_spontaneous_payment(this_arg, route, payment_preimage);
6675         return nativeResponseValue;
6676 }
6677         // LDKCResult_NonePaymentSendFailureZ Payer_retry_payment LDKPayer *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_id
6678 /* @internal */
6679 export function Payer_retry_payment(this_arg: number, route: number, payment_id: number): number {
6680         if(!isWasmInitialized) {
6681                 throw new Error("initializeWasm() must be awaited first!");
6682         }
6683         const nativeResponseValue = wasm.TS_Payer_retry_payment(this_arg, route, payment_id);
6684         return nativeResponseValue;
6685 }
6686         // void Payer_abandon_payment LDKPayer *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_id
6687 /* @internal */
6688 export function Payer_abandon_payment(this_arg: number, payment_id: number): void {
6689         if(!isWasmInitialized) {
6690                 throw new Error("initializeWasm() must be awaited first!");
6691         }
6692         const nativeResponseValue = wasm.TS_Payer_abandon_payment(this_arg, payment_id);
6693         // debug statements here
6694 }
6695 /* @internal */
6696 export interface LDKRouter {
6697         find_route (payer: number, route_params: number, payment_hash: number, first_hops: number, scorer: number): number;
6698 }
6699
6700 /* @internal */
6701 export function LDKRouter_new(impl: LDKRouter): number {
6702         if(!isWasmInitialized) {
6703                 throw new Error("initializeWasm() must be awaited first!");
6704         }
6705         var new_obj_idx = js_objs.length;
6706         for (var i = 0; i < js_objs.length; i++) {
6707                 if (js_objs[i] == null || js_objs[i] == undefined) { new_obj_idx = i; break; }
6708         }
6709         js_objs[i] = new WeakRef(impl);
6710         return wasm.TS_LDKRouter_new(i);
6711 }
6712         // LDKCResult_RouteLightningErrorZ Router_find_route LDKRouter *NONNULL_PTR this_arg, struct LDKPublicKey payer, const struct LDKRouteParameters *NONNULL_PTR route_params, const uint8_t (*payment_hash)[32], struct LDKCVec_ChannelDetailsZ *first_hops, const struct LDKScore *NONNULL_PTR scorer
6713 /* @internal */
6714 export function Router_find_route(this_arg: number, payer: number, route_params: number, payment_hash: number, first_hops: number, scorer: number): number {
6715         if(!isWasmInitialized) {
6716                 throw new Error("initializeWasm() must be awaited first!");
6717         }
6718         const nativeResponseValue = wasm.TS_Router_find_route(this_arg, payer, route_params, payment_hash, first_hops, scorer);
6719         return nativeResponseValue;
6720 }
6721 /* @internal */
6722 export class LDKRetry {
6723         protected constructor() {}
6724 }
6725 /* @internal */
6726 export function LDKRetry_ty_from_ptr(ptr: number): number {
6727         if(!isWasmInitialized) {
6728                 throw new Error("initializeWasm() must be awaited first!");
6729         }
6730         const nativeResponseValue = wasm.TS_LDKRetry_ty_from_ptr(ptr);
6731         return nativeResponseValue;
6732 }
6733 /* @internal */
6734 export function LDKRetry_Attempts_get_attempts(ptr: number): number {
6735         if(!isWasmInitialized) {
6736                 throw new Error("initializeWasm() must be awaited first!");
6737         }
6738         const nativeResponseValue = wasm.TS_LDKRetry_Attempts_get_attempts(ptr);
6739         return nativeResponseValue;
6740 }
6741         // struct LDKStr _ldk_get_compiled_version(void);
6742 /* @internal */
6743 export function _ldk_get_compiled_version(): number {
6744         if(!isWasmInitialized) {
6745                 throw new Error("initializeWasm() must be awaited first!");
6746         }
6747         const nativeResponseValue = wasm.TS__ldk_get_compiled_version();
6748         return nativeResponseValue;
6749 }
6750         // struct LDKStr _ldk_c_bindings_get_compiled_version(void);
6751 /* @internal */
6752 export function _ldk_c_bindings_get_compiled_version(): number {
6753         if(!isWasmInitialized) {
6754                 throw new Error("initializeWasm() must be awaited first!");
6755         }
6756         const nativeResponseValue = wasm.TS__ldk_c_bindings_get_compiled_version();
6757         return nativeResponseValue;
6758 }
6759         // uintptr_t Bech32Error_clone_ptr(LDKBech32Error *NONNULL_PTR arg);
6760 /* @internal */
6761 export function Bech32Error_clone_ptr(arg: number): number {
6762         if(!isWasmInitialized) {
6763                 throw new Error("initializeWasm() must be awaited first!");
6764         }
6765         const nativeResponseValue = wasm.TS_Bech32Error_clone_ptr(arg);
6766         return nativeResponseValue;
6767 }
6768         // struct LDKBech32Error Bech32Error_clone(const struct LDKBech32Error *NONNULL_PTR orig);
6769 /* @internal */
6770 export function Bech32Error_clone(orig: number): number {
6771         if(!isWasmInitialized) {
6772                 throw new Error("initializeWasm() must be awaited first!");
6773         }
6774         const nativeResponseValue = wasm.TS_Bech32Error_clone(orig);
6775         return nativeResponseValue;
6776 }
6777         // void Bech32Error_free(struct LDKBech32Error o);
6778 /* @internal */
6779 export function Bech32Error_free(o: number): void {
6780         if(!isWasmInitialized) {
6781                 throw new Error("initializeWasm() must be awaited first!");
6782         }
6783         const nativeResponseValue = wasm.TS_Bech32Error_free(o);
6784         // debug statements here
6785 }
6786         // void Transaction_free(struct LDKTransaction _res);
6787 /* @internal */
6788 export function Transaction_free(_res: number): void {
6789         if(!isWasmInitialized) {
6790                 throw new Error("initializeWasm() must be awaited first!");
6791         }
6792         const nativeResponseValue = wasm.TS_Transaction_free(_res);
6793         // debug statements here
6794 }
6795         // struct LDKTxOut TxOut_new(struct LDKCVec_u8Z script_pubkey, uint64_t value);
6796 /* @internal */
6797 export function TxOut_new(script_pubkey: number, value: bigint): number {
6798         if(!isWasmInitialized) {
6799                 throw new Error("initializeWasm() must be awaited first!");
6800         }
6801         const nativeResponseValue = wasm.TS_TxOut_new(script_pubkey, value);
6802         return nativeResponseValue;
6803 }
6804         // void TxOut_free(struct LDKTxOut _res);
6805 /* @internal */
6806 export function TxOut_free(_res: number): void {
6807         if(!isWasmInitialized) {
6808                 throw new Error("initializeWasm() must be awaited first!");
6809         }
6810         const nativeResponseValue = wasm.TS_TxOut_free(_res);
6811         // debug statements here
6812 }
6813         // uintptr_t TxOut_clone_ptr(LDKTxOut *NONNULL_PTR arg);
6814 /* @internal */
6815 export function TxOut_clone_ptr(arg: number): number {
6816         if(!isWasmInitialized) {
6817                 throw new Error("initializeWasm() must be awaited first!");
6818         }
6819         const nativeResponseValue = wasm.TS_TxOut_clone_ptr(arg);
6820         return nativeResponseValue;
6821 }
6822         // struct LDKTxOut TxOut_clone(const struct LDKTxOut *NONNULL_PTR orig);
6823 /* @internal */
6824 export function TxOut_clone(orig: number): number {
6825         if(!isWasmInitialized) {
6826                 throw new Error("initializeWasm() must be awaited first!");
6827         }
6828         const nativeResponseValue = wasm.TS_TxOut_clone(orig);
6829         return nativeResponseValue;
6830 }
6831         // void Str_free(struct LDKStr _res);
6832 /* @internal */
6833 export function Str_free(_res: number): void {
6834         if(!isWasmInitialized) {
6835                 throw new Error("initializeWasm() must be awaited first!");
6836         }
6837         const nativeResponseValue = wasm.TS_Str_free(_res);
6838         // debug statements here
6839 }
6840         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_ok(void);
6841 /* @internal */
6842 export function CResult_NoneNoneZ_ok(): number {
6843         if(!isWasmInitialized) {
6844                 throw new Error("initializeWasm() must be awaited first!");
6845         }
6846         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_ok();
6847         return nativeResponseValue;
6848 }
6849         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_err(void);
6850 /* @internal */
6851 export function CResult_NoneNoneZ_err(): number {
6852         if(!isWasmInitialized) {
6853                 throw new Error("initializeWasm() must be awaited first!");
6854         }
6855         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_err();
6856         return nativeResponseValue;
6857 }
6858         // bool CResult_NoneNoneZ_is_ok(const struct LDKCResult_NoneNoneZ *NONNULL_PTR o);
6859 /* @internal */
6860 export function CResult_NoneNoneZ_is_ok(o: number): boolean {
6861         if(!isWasmInitialized) {
6862                 throw new Error("initializeWasm() must be awaited first!");
6863         }
6864         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_is_ok(o);
6865         return nativeResponseValue;
6866 }
6867         // void CResult_NoneNoneZ_free(struct LDKCResult_NoneNoneZ _res);
6868 /* @internal */
6869 export function CResult_NoneNoneZ_free(_res: number): void {
6870         if(!isWasmInitialized) {
6871                 throw new Error("initializeWasm() must be awaited first!");
6872         }
6873         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_free(_res);
6874         // debug statements here
6875 }
6876         // uintptr_t CResult_NoneNoneZ_clone_ptr(LDKCResult_NoneNoneZ *NONNULL_PTR arg);
6877 /* @internal */
6878 export function CResult_NoneNoneZ_clone_ptr(arg: number): number {
6879         if(!isWasmInitialized) {
6880                 throw new Error("initializeWasm() must be awaited first!");
6881         }
6882         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_clone_ptr(arg);
6883         return nativeResponseValue;
6884 }
6885         // struct LDKCResult_NoneNoneZ CResult_NoneNoneZ_clone(const struct LDKCResult_NoneNoneZ *NONNULL_PTR orig);
6886 /* @internal */
6887 export function CResult_NoneNoneZ_clone(orig: number): number {
6888         if(!isWasmInitialized) {
6889                 throw new Error("initializeWasm() must be awaited first!");
6890         }
6891         const nativeResponseValue = wasm.TS_CResult_NoneNoneZ_clone(orig);
6892         return nativeResponseValue;
6893 }
6894         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_ok(struct LDKCounterpartyCommitmentSecrets o);
6895 /* @internal */
6896 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_ok(o: number): number {
6897         if(!isWasmInitialized) {
6898                 throw new Error("initializeWasm() must be awaited first!");
6899         }
6900         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_ok(o);
6901         return nativeResponseValue;
6902 }
6903         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_err(struct LDKDecodeError e);
6904 /* @internal */
6905 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_err(e: number): number {
6906         if(!isWasmInitialized) {
6907                 throw new Error("initializeWasm() must be awaited first!");
6908         }
6909         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_err(e);
6910         return nativeResponseValue;
6911 }
6912         // bool CResult_CounterpartyCommitmentSecretsDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR o);
6913 /* @internal */
6914 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_is_ok(o: number): boolean {
6915         if(!isWasmInitialized) {
6916                 throw new Error("initializeWasm() must be awaited first!");
6917         }
6918         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_is_ok(o);
6919         return nativeResponseValue;
6920 }
6921         // void CResult_CounterpartyCommitmentSecretsDecodeErrorZ_free(struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ _res);
6922 /* @internal */
6923 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_free(_res: number): void {
6924         if(!isWasmInitialized) {
6925                 throw new Error("initializeWasm() must be awaited first!");
6926         }
6927         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_free(_res);
6928         // debug statements here
6929 }
6930         // uintptr_t CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR arg);
6931 /* @internal */
6932 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone_ptr(arg: number): number {
6933         if(!isWasmInitialized) {
6934                 throw new Error("initializeWasm() must be awaited first!");
6935         }
6936         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone_ptr(arg);
6937         return nativeResponseValue;
6938 }
6939         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone(const struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ *NONNULL_PTR orig);
6940 /* @internal */
6941 export function CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone(orig: number): number {
6942         if(!isWasmInitialized) {
6943                 throw new Error("initializeWasm() must be awaited first!");
6944         }
6945         const nativeResponseValue = wasm.TS_CResult_CounterpartyCommitmentSecretsDecodeErrorZ_clone(orig);
6946         return nativeResponseValue;
6947 }
6948         // struct LDKCResult_SecretKeyErrorZ CResult_SecretKeyErrorZ_ok(struct LDKSecretKey o);
6949 /* @internal */
6950 export function CResult_SecretKeyErrorZ_ok(o: number): number {
6951         if(!isWasmInitialized) {
6952                 throw new Error("initializeWasm() must be awaited first!");
6953         }
6954         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_ok(o);
6955         return nativeResponseValue;
6956 }
6957         // struct LDKCResult_SecretKeyErrorZ CResult_SecretKeyErrorZ_err(enum LDKSecp256k1Error e);
6958 /* @internal */
6959 export function CResult_SecretKeyErrorZ_err(e: Secp256k1Error): number {
6960         if(!isWasmInitialized) {
6961                 throw new Error("initializeWasm() must be awaited first!");
6962         }
6963         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_err(e);
6964         return nativeResponseValue;
6965 }
6966         // bool CResult_SecretKeyErrorZ_is_ok(const struct LDKCResult_SecretKeyErrorZ *NONNULL_PTR o);
6967 /* @internal */
6968 export function CResult_SecretKeyErrorZ_is_ok(o: number): boolean {
6969         if(!isWasmInitialized) {
6970                 throw new Error("initializeWasm() must be awaited first!");
6971         }
6972         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_is_ok(o);
6973         return nativeResponseValue;
6974 }
6975         // void CResult_SecretKeyErrorZ_free(struct LDKCResult_SecretKeyErrorZ _res);
6976 /* @internal */
6977 export function CResult_SecretKeyErrorZ_free(_res: number): void {
6978         if(!isWasmInitialized) {
6979                 throw new Error("initializeWasm() must be awaited first!");
6980         }
6981         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_free(_res);
6982         // debug statements here
6983 }
6984         // uintptr_t CResult_SecretKeyErrorZ_clone_ptr(LDKCResult_SecretKeyErrorZ *NONNULL_PTR arg);
6985 /* @internal */
6986 export function CResult_SecretKeyErrorZ_clone_ptr(arg: number): number {
6987         if(!isWasmInitialized) {
6988                 throw new Error("initializeWasm() must be awaited first!");
6989         }
6990         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_clone_ptr(arg);
6991         return nativeResponseValue;
6992 }
6993         // struct LDKCResult_SecretKeyErrorZ CResult_SecretKeyErrorZ_clone(const struct LDKCResult_SecretKeyErrorZ *NONNULL_PTR orig);
6994 /* @internal */
6995 export function CResult_SecretKeyErrorZ_clone(orig: number): number {
6996         if(!isWasmInitialized) {
6997                 throw new Error("initializeWasm() must be awaited first!");
6998         }
6999         const nativeResponseValue = wasm.TS_CResult_SecretKeyErrorZ_clone(orig);
7000         return nativeResponseValue;
7001 }
7002         // struct LDKCResult_PublicKeyErrorZ CResult_PublicKeyErrorZ_ok(struct LDKPublicKey o);
7003 /* @internal */
7004 export function CResult_PublicKeyErrorZ_ok(o: number): number {
7005         if(!isWasmInitialized) {
7006                 throw new Error("initializeWasm() must be awaited first!");
7007         }
7008         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_ok(o);
7009         return nativeResponseValue;
7010 }
7011         // struct LDKCResult_PublicKeyErrorZ CResult_PublicKeyErrorZ_err(enum LDKSecp256k1Error e);
7012 /* @internal */
7013 export function CResult_PublicKeyErrorZ_err(e: Secp256k1Error): number {
7014         if(!isWasmInitialized) {
7015                 throw new Error("initializeWasm() must be awaited first!");
7016         }
7017         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_err(e);
7018         return nativeResponseValue;
7019 }
7020         // bool CResult_PublicKeyErrorZ_is_ok(const struct LDKCResult_PublicKeyErrorZ *NONNULL_PTR o);
7021 /* @internal */
7022 export function CResult_PublicKeyErrorZ_is_ok(o: number): boolean {
7023         if(!isWasmInitialized) {
7024                 throw new Error("initializeWasm() must be awaited first!");
7025         }
7026         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_is_ok(o);
7027         return nativeResponseValue;
7028 }
7029         // void CResult_PublicKeyErrorZ_free(struct LDKCResult_PublicKeyErrorZ _res);
7030 /* @internal */
7031 export function CResult_PublicKeyErrorZ_free(_res: number): void {
7032         if(!isWasmInitialized) {
7033                 throw new Error("initializeWasm() must be awaited first!");
7034         }
7035         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_free(_res);
7036         // debug statements here
7037 }
7038         // uintptr_t CResult_PublicKeyErrorZ_clone_ptr(LDKCResult_PublicKeyErrorZ *NONNULL_PTR arg);
7039 /* @internal */
7040 export function CResult_PublicKeyErrorZ_clone_ptr(arg: number): number {
7041         if(!isWasmInitialized) {
7042                 throw new Error("initializeWasm() must be awaited first!");
7043         }
7044         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_clone_ptr(arg);
7045         return nativeResponseValue;
7046 }
7047         // struct LDKCResult_PublicKeyErrorZ CResult_PublicKeyErrorZ_clone(const struct LDKCResult_PublicKeyErrorZ *NONNULL_PTR orig);
7048 /* @internal */
7049 export function CResult_PublicKeyErrorZ_clone(orig: number): number {
7050         if(!isWasmInitialized) {
7051                 throw new Error("initializeWasm() must be awaited first!");
7052         }
7053         const nativeResponseValue = wasm.TS_CResult_PublicKeyErrorZ_clone(orig);
7054         return nativeResponseValue;
7055 }
7056         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_ok(struct LDKTxCreationKeys o);
7057 /* @internal */
7058 export function CResult_TxCreationKeysDecodeErrorZ_ok(o: number): number {
7059         if(!isWasmInitialized) {
7060                 throw new Error("initializeWasm() must be awaited first!");
7061         }
7062         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_ok(o);
7063         return nativeResponseValue;
7064 }
7065         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_err(struct LDKDecodeError e);
7066 /* @internal */
7067 export function CResult_TxCreationKeysDecodeErrorZ_err(e: number): number {
7068         if(!isWasmInitialized) {
7069                 throw new Error("initializeWasm() must be awaited first!");
7070         }
7071         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_err(e);
7072         return nativeResponseValue;
7073 }
7074         // bool CResult_TxCreationKeysDecodeErrorZ_is_ok(const struct LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR o);
7075 /* @internal */
7076 export function CResult_TxCreationKeysDecodeErrorZ_is_ok(o: number): boolean {
7077         if(!isWasmInitialized) {
7078                 throw new Error("initializeWasm() must be awaited first!");
7079         }
7080         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_is_ok(o);
7081         return nativeResponseValue;
7082 }
7083         // void CResult_TxCreationKeysDecodeErrorZ_free(struct LDKCResult_TxCreationKeysDecodeErrorZ _res);
7084 /* @internal */
7085 export function CResult_TxCreationKeysDecodeErrorZ_free(_res: number): void {
7086         if(!isWasmInitialized) {
7087                 throw new Error("initializeWasm() must be awaited first!");
7088         }
7089         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_free(_res);
7090         // debug statements here
7091 }
7092         // uintptr_t CResult_TxCreationKeysDecodeErrorZ_clone_ptr(LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR arg);
7093 /* @internal */
7094 export function CResult_TxCreationKeysDecodeErrorZ_clone_ptr(arg: number): number {
7095         if(!isWasmInitialized) {
7096                 throw new Error("initializeWasm() must be awaited first!");
7097         }
7098         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_clone_ptr(arg);
7099         return nativeResponseValue;
7100 }
7101         // struct LDKCResult_TxCreationKeysDecodeErrorZ CResult_TxCreationKeysDecodeErrorZ_clone(const struct LDKCResult_TxCreationKeysDecodeErrorZ *NONNULL_PTR orig);
7102 /* @internal */
7103 export function CResult_TxCreationKeysDecodeErrorZ_clone(orig: number): number {
7104         if(!isWasmInitialized) {
7105                 throw new Error("initializeWasm() must be awaited first!");
7106         }
7107         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysDecodeErrorZ_clone(orig);
7108         return nativeResponseValue;
7109 }
7110         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_ok(struct LDKChannelPublicKeys o);
7111 /* @internal */
7112 export function CResult_ChannelPublicKeysDecodeErrorZ_ok(o: number): number {
7113         if(!isWasmInitialized) {
7114                 throw new Error("initializeWasm() must be awaited first!");
7115         }
7116         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_ok(o);
7117         return nativeResponseValue;
7118 }
7119         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_err(struct LDKDecodeError e);
7120 /* @internal */
7121 export function CResult_ChannelPublicKeysDecodeErrorZ_err(e: number): number {
7122         if(!isWasmInitialized) {
7123                 throw new Error("initializeWasm() must be awaited first!");
7124         }
7125         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_err(e);
7126         return nativeResponseValue;
7127 }
7128         // bool CResult_ChannelPublicKeysDecodeErrorZ_is_ok(const struct LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR o);
7129 /* @internal */
7130 export function CResult_ChannelPublicKeysDecodeErrorZ_is_ok(o: number): boolean {
7131         if(!isWasmInitialized) {
7132                 throw new Error("initializeWasm() must be awaited first!");
7133         }
7134         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_is_ok(o);
7135         return nativeResponseValue;
7136 }
7137         // void CResult_ChannelPublicKeysDecodeErrorZ_free(struct LDKCResult_ChannelPublicKeysDecodeErrorZ _res);
7138 /* @internal */
7139 export function CResult_ChannelPublicKeysDecodeErrorZ_free(_res: number): void {
7140         if(!isWasmInitialized) {
7141                 throw new Error("initializeWasm() must be awaited first!");
7142         }
7143         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_free(_res);
7144         // debug statements here
7145 }
7146         // uintptr_t CResult_ChannelPublicKeysDecodeErrorZ_clone_ptr(LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR arg);
7147 /* @internal */
7148 export function CResult_ChannelPublicKeysDecodeErrorZ_clone_ptr(arg: number): number {
7149         if(!isWasmInitialized) {
7150                 throw new Error("initializeWasm() must be awaited first!");
7151         }
7152         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_clone_ptr(arg);
7153         return nativeResponseValue;
7154 }
7155         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ CResult_ChannelPublicKeysDecodeErrorZ_clone(const struct LDKCResult_ChannelPublicKeysDecodeErrorZ *NONNULL_PTR orig);
7156 /* @internal */
7157 export function CResult_ChannelPublicKeysDecodeErrorZ_clone(orig: number): number {
7158         if(!isWasmInitialized) {
7159                 throw new Error("initializeWasm() must be awaited first!");
7160         }
7161         const nativeResponseValue = wasm.TS_CResult_ChannelPublicKeysDecodeErrorZ_clone(orig);
7162         return nativeResponseValue;
7163 }
7164         // struct LDKCResult_TxCreationKeysErrorZ CResult_TxCreationKeysErrorZ_ok(struct LDKTxCreationKeys o);
7165 /* @internal */
7166 export function CResult_TxCreationKeysErrorZ_ok(o: number): number {
7167         if(!isWasmInitialized) {
7168                 throw new Error("initializeWasm() must be awaited first!");
7169         }
7170         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_ok(o);
7171         return nativeResponseValue;
7172 }
7173         // struct LDKCResult_TxCreationKeysErrorZ CResult_TxCreationKeysErrorZ_err(enum LDKSecp256k1Error e);
7174 /* @internal */
7175 export function CResult_TxCreationKeysErrorZ_err(e: Secp256k1Error): number {
7176         if(!isWasmInitialized) {
7177                 throw new Error("initializeWasm() must be awaited first!");
7178         }
7179         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_err(e);
7180         return nativeResponseValue;
7181 }
7182         // bool CResult_TxCreationKeysErrorZ_is_ok(const struct LDKCResult_TxCreationKeysErrorZ *NONNULL_PTR o);
7183 /* @internal */
7184 export function CResult_TxCreationKeysErrorZ_is_ok(o: number): boolean {
7185         if(!isWasmInitialized) {
7186                 throw new Error("initializeWasm() must be awaited first!");
7187         }
7188         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_is_ok(o);
7189         return nativeResponseValue;
7190 }
7191         // void CResult_TxCreationKeysErrorZ_free(struct LDKCResult_TxCreationKeysErrorZ _res);
7192 /* @internal */
7193 export function CResult_TxCreationKeysErrorZ_free(_res: number): void {
7194         if(!isWasmInitialized) {
7195                 throw new Error("initializeWasm() must be awaited first!");
7196         }
7197         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_free(_res);
7198         // debug statements here
7199 }
7200         // uintptr_t CResult_TxCreationKeysErrorZ_clone_ptr(LDKCResult_TxCreationKeysErrorZ *NONNULL_PTR arg);
7201 /* @internal */
7202 export function CResult_TxCreationKeysErrorZ_clone_ptr(arg: number): number {
7203         if(!isWasmInitialized) {
7204                 throw new Error("initializeWasm() must be awaited first!");
7205         }
7206         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_clone_ptr(arg);
7207         return nativeResponseValue;
7208 }
7209         // struct LDKCResult_TxCreationKeysErrorZ CResult_TxCreationKeysErrorZ_clone(const struct LDKCResult_TxCreationKeysErrorZ *NONNULL_PTR orig);
7210 /* @internal */
7211 export function CResult_TxCreationKeysErrorZ_clone(orig: number): number {
7212         if(!isWasmInitialized) {
7213                 throw new Error("initializeWasm() must be awaited first!");
7214         }
7215         const nativeResponseValue = wasm.TS_CResult_TxCreationKeysErrorZ_clone(orig);
7216         return nativeResponseValue;
7217 }
7218         // struct LDKCOption_u32Z COption_u32Z_some(uint32_t o);
7219 /* @internal */
7220 export function COption_u32Z_some(o: number): number {
7221         if(!isWasmInitialized) {
7222                 throw new Error("initializeWasm() must be awaited first!");
7223         }
7224         const nativeResponseValue = wasm.TS_COption_u32Z_some(o);
7225         return nativeResponseValue;
7226 }
7227         // struct LDKCOption_u32Z COption_u32Z_none(void);
7228 /* @internal */
7229 export function COption_u32Z_none(): number {
7230         if(!isWasmInitialized) {
7231                 throw new Error("initializeWasm() must be awaited first!");
7232         }
7233         const nativeResponseValue = wasm.TS_COption_u32Z_none();
7234         return nativeResponseValue;
7235 }
7236         // void COption_u32Z_free(struct LDKCOption_u32Z _res);
7237 /* @internal */
7238 export function COption_u32Z_free(_res: number): void {
7239         if(!isWasmInitialized) {
7240                 throw new Error("initializeWasm() must be awaited first!");
7241         }
7242         const nativeResponseValue = wasm.TS_COption_u32Z_free(_res);
7243         // debug statements here
7244 }
7245         // uintptr_t COption_u32Z_clone_ptr(LDKCOption_u32Z *NONNULL_PTR arg);
7246 /* @internal */
7247 export function COption_u32Z_clone_ptr(arg: number): number {
7248         if(!isWasmInitialized) {
7249                 throw new Error("initializeWasm() must be awaited first!");
7250         }
7251         const nativeResponseValue = wasm.TS_COption_u32Z_clone_ptr(arg);
7252         return nativeResponseValue;
7253 }
7254         // struct LDKCOption_u32Z COption_u32Z_clone(const struct LDKCOption_u32Z *NONNULL_PTR orig);
7255 /* @internal */
7256 export function COption_u32Z_clone(orig: number): number {
7257         if(!isWasmInitialized) {
7258                 throw new Error("initializeWasm() must be awaited first!");
7259         }
7260         const nativeResponseValue = wasm.TS_COption_u32Z_clone(orig);
7261         return nativeResponseValue;
7262 }
7263         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_ok(struct LDKHTLCOutputInCommitment o);
7264 /* @internal */
7265 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_ok(o: number): number {
7266         if(!isWasmInitialized) {
7267                 throw new Error("initializeWasm() must be awaited first!");
7268         }
7269         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_ok(o);
7270         return nativeResponseValue;
7271 }
7272         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_err(struct LDKDecodeError e);
7273 /* @internal */
7274 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_err(e: number): number {
7275         if(!isWasmInitialized) {
7276                 throw new Error("initializeWasm() must be awaited first!");
7277         }
7278         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_err(e);
7279         return nativeResponseValue;
7280 }
7281         // bool CResult_HTLCOutputInCommitmentDecodeErrorZ_is_ok(const struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR o);
7282 /* @internal */
7283 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_is_ok(o: number): boolean {
7284         if(!isWasmInitialized) {
7285                 throw new Error("initializeWasm() must be awaited first!");
7286         }
7287         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_is_ok(o);
7288         return nativeResponseValue;
7289 }
7290         // void CResult_HTLCOutputInCommitmentDecodeErrorZ_free(struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ _res);
7291 /* @internal */
7292 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_free(_res: number): void {
7293         if(!isWasmInitialized) {
7294                 throw new Error("initializeWasm() must be awaited first!");
7295         }
7296         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_free(_res);
7297         // debug statements here
7298 }
7299         // uintptr_t CResult_HTLCOutputInCommitmentDecodeErrorZ_clone_ptr(LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR arg);
7300 /* @internal */
7301 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_clone_ptr(arg: number): number {
7302         if(!isWasmInitialized) {
7303                 throw new Error("initializeWasm() must be awaited first!");
7304         }
7305         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_clone_ptr(arg);
7306         return nativeResponseValue;
7307 }
7308         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ CResult_HTLCOutputInCommitmentDecodeErrorZ_clone(const struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ *NONNULL_PTR orig);
7309 /* @internal */
7310 export function CResult_HTLCOutputInCommitmentDecodeErrorZ_clone(orig: number): number {
7311         if(!isWasmInitialized) {
7312                 throw new Error("initializeWasm() must be awaited first!");
7313         }
7314         const nativeResponseValue = wasm.TS_CResult_HTLCOutputInCommitmentDecodeErrorZ_clone(orig);
7315         return nativeResponseValue;
7316 }
7317         // enum LDKCOption_NoneZ COption_NoneZ_some(void);
7318 /* @internal */
7319 export function COption_NoneZ_some(): COption_NoneZ {
7320         if(!isWasmInitialized) {
7321                 throw new Error("initializeWasm() must be awaited first!");
7322         }
7323         const nativeResponseValue = wasm.TS_COption_NoneZ_some();
7324         return nativeResponseValue;
7325 }
7326         // enum LDKCOption_NoneZ COption_NoneZ_none(void);
7327 /* @internal */
7328 export function COption_NoneZ_none(): COption_NoneZ {
7329         if(!isWasmInitialized) {
7330                 throw new Error("initializeWasm() must be awaited first!");
7331         }
7332         const nativeResponseValue = wasm.TS_COption_NoneZ_none();
7333         return nativeResponseValue;
7334 }
7335         // void COption_NoneZ_free(enum LDKCOption_NoneZ _res);
7336 /* @internal */
7337 export function COption_NoneZ_free(_res: COption_NoneZ): void {
7338         if(!isWasmInitialized) {
7339                 throw new Error("initializeWasm() must be awaited first!");
7340         }
7341         const nativeResponseValue = wasm.TS_COption_NoneZ_free(_res);
7342         // debug statements here
7343 }
7344         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_ok(struct LDKCounterpartyChannelTransactionParameters o);
7345 /* @internal */
7346 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_ok(o: number): number {
7347         if(!isWasmInitialized) {
7348                 throw new Error("initializeWasm() must be awaited first!");
7349         }
7350         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_ok(o);
7351         return nativeResponseValue;
7352 }
7353         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_err(struct LDKDecodeError e);
7354 /* @internal */
7355 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_err(e: number): number {
7356         if(!isWasmInitialized) {
7357                 throw new Error("initializeWasm() must be awaited first!");
7358         }
7359         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_err(e);
7360         return nativeResponseValue;
7361 }
7362         // bool CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR o);
7363 /* @internal */
7364 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_is_ok(o: number): boolean {
7365         if(!isWasmInitialized) {
7366                 throw new Error("initializeWasm() must be awaited first!");
7367         }
7368         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_is_ok(o);
7369         return nativeResponseValue;
7370 }
7371         // void CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_free(struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ _res);
7372 /* @internal */
7373 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_free(_res: number): void {
7374         if(!isWasmInitialized) {
7375                 throw new Error("initializeWasm() must be awaited first!");
7376         }
7377         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_free(_res);
7378         // debug statements here
7379 }
7380         // uintptr_t CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR arg);
7381 /* @internal */
7382 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone_ptr(arg: number): number {
7383         if(!isWasmInitialized) {
7384                 throw new Error("initializeWasm() must be awaited first!");
7385         }
7386         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone_ptr(arg);
7387         return nativeResponseValue;
7388 }
7389         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone(const struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ *NONNULL_PTR orig);
7390 /* @internal */
7391 export function CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone(orig: number): number {
7392         if(!isWasmInitialized) {
7393                 throw new Error("initializeWasm() must be awaited first!");
7394         }
7395         const nativeResponseValue = wasm.TS_CResult_CounterpartyChannelTransactionParametersDecodeErrorZ_clone(orig);
7396         return nativeResponseValue;
7397 }
7398         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_ok(struct LDKChannelTransactionParameters o);
7399 /* @internal */
7400 export function CResult_ChannelTransactionParametersDecodeErrorZ_ok(o: number): number {
7401         if(!isWasmInitialized) {
7402                 throw new Error("initializeWasm() must be awaited first!");
7403         }
7404         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_ok(o);
7405         return nativeResponseValue;
7406 }
7407         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_err(struct LDKDecodeError e);
7408 /* @internal */
7409 export function CResult_ChannelTransactionParametersDecodeErrorZ_err(e: number): number {
7410         if(!isWasmInitialized) {
7411                 throw new Error("initializeWasm() must be awaited first!");
7412         }
7413         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_err(e);
7414         return nativeResponseValue;
7415 }
7416         // bool CResult_ChannelTransactionParametersDecodeErrorZ_is_ok(const struct LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR o);
7417 /* @internal */
7418 export function CResult_ChannelTransactionParametersDecodeErrorZ_is_ok(o: number): boolean {
7419         if(!isWasmInitialized) {
7420                 throw new Error("initializeWasm() must be awaited first!");
7421         }
7422         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_is_ok(o);
7423         return nativeResponseValue;
7424 }
7425         // void CResult_ChannelTransactionParametersDecodeErrorZ_free(struct LDKCResult_ChannelTransactionParametersDecodeErrorZ _res);
7426 /* @internal */
7427 export function CResult_ChannelTransactionParametersDecodeErrorZ_free(_res: number): void {
7428         if(!isWasmInitialized) {
7429                 throw new Error("initializeWasm() must be awaited first!");
7430         }
7431         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_free(_res);
7432         // debug statements here
7433 }
7434         // uintptr_t CResult_ChannelTransactionParametersDecodeErrorZ_clone_ptr(LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR arg);
7435 /* @internal */
7436 export function CResult_ChannelTransactionParametersDecodeErrorZ_clone_ptr(arg: number): number {
7437         if(!isWasmInitialized) {
7438                 throw new Error("initializeWasm() must be awaited first!");
7439         }
7440         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_clone_ptr(arg);
7441         return nativeResponseValue;
7442 }
7443         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ CResult_ChannelTransactionParametersDecodeErrorZ_clone(const struct LDKCResult_ChannelTransactionParametersDecodeErrorZ *NONNULL_PTR orig);
7444 /* @internal */
7445 export function CResult_ChannelTransactionParametersDecodeErrorZ_clone(orig: number): number {
7446         if(!isWasmInitialized) {
7447                 throw new Error("initializeWasm() must be awaited first!");
7448         }
7449         const nativeResponseValue = wasm.TS_CResult_ChannelTransactionParametersDecodeErrorZ_clone(orig);
7450         return nativeResponseValue;
7451 }
7452         // void CVec_SignatureZ_free(struct LDKCVec_SignatureZ _res);
7453 /* @internal */
7454 export function CVec_SignatureZ_free(_res: number): void {
7455         if(!isWasmInitialized) {
7456                 throw new Error("initializeWasm() must be awaited first!");
7457         }
7458         const nativeResponseValue = wasm.TS_CVec_SignatureZ_free(_res);
7459         // debug statements here
7460 }
7461         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_ok(struct LDKHolderCommitmentTransaction o);
7462 /* @internal */
7463 export function CResult_HolderCommitmentTransactionDecodeErrorZ_ok(o: number): number {
7464         if(!isWasmInitialized) {
7465                 throw new Error("initializeWasm() must be awaited first!");
7466         }
7467         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_ok(o);
7468         return nativeResponseValue;
7469 }
7470         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
7471 /* @internal */
7472 export function CResult_HolderCommitmentTransactionDecodeErrorZ_err(e: number): number {
7473         if(!isWasmInitialized) {
7474                 throw new Error("initializeWasm() must be awaited first!");
7475         }
7476         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_err(e);
7477         return nativeResponseValue;
7478 }
7479         // bool CResult_HolderCommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
7480 /* @internal */
7481 export function CResult_HolderCommitmentTransactionDecodeErrorZ_is_ok(o: number): boolean {
7482         if(!isWasmInitialized) {
7483                 throw new Error("initializeWasm() must be awaited first!");
7484         }
7485         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_is_ok(o);
7486         return nativeResponseValue;
7487 }
7488         // void CResult_HolderCommitmentTransactionDecodeErrorZ_free(struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ _res);
7489 /* @internal */
7490 export function CResult_HolderCommitmentTransactionDecodeErrorZ_free(_res: number): void {
7491         if(!isWasmInitialized) {
7492                 throw new Error("initializeWasm() must be awaited first!");
7493         }
7494         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_free(_res);
7495         // debug statements here
7496 }
7497         // uintptr_t CResult_HolderCommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
7498 /* @internal */
7499 export function CResult_HolderCommitmentTransactionDecodeErrorZ_clone_ptr(arg: number): number {
7500         if(!isWasmInitialized) {
7501                 throw new Error("initializeWasm() must be awaited first!");
7502         }
7503         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_clone_ptr(arg);
7504         return nativeResponseValue;
7505 }
7506         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ CResult_HolderCommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
7507 /* @internal */
7508 export function CResult_HolderCommitmentTransactionDecodeErrorZ_clone(orig: number): number {
7509         if(!isWasmInitialized) {
7510                 throw new Error("initializeWasm() must be awaited first!");
7511         }
7512         const nativeResponseValue = wasm.TS_CResult_HolderCommitmentTransactionDecodeErrorZ_clone(orig);
7513         return nativeResponseValue;
7514 }
7515         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_ok(struct LDKBuiltCommitmentTransaction o);
7516 /* @internal */
7517 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_ok(o: number): number {
7518         if(!isWasmInitialized) {
7519                 throw new Error("initializeWasm() must be awaited first!");
7520         }
7521         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_ok(o);
7522         return nativeResponseValue;
7523 }
7524         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
7525 /* @internal */
7526 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_err(e: number): number {
7527         if(!isWasmInitialized) {
7528                 throw new Error("initializeWasm() must be awaited first!");
7529         }
7530         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_err(e);
7531         return nativeResponseValue;
7532 }
7533         // bool CResult_BuiltCommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
7534 /* @internal */
7535 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_is_ok(o: number): boolean {
7536         if(!isWasmInitialized) {
7537                 throw new Error("initializeWasm() must be awaited first!");
7538         }
7539         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_is_ok(o);
7540         return nativeResponseValue;
7541 }
7542         // void CResult_BuiltCommitmentTransactionDecodeErrorZ_free(struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ _res);
7543 /* @internal */
7544 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_free(_res: number): void {
7545         if(!isWasmInitialized) {
7546                 throw new Error("initializeWasm() must be awaited first!");
7547         }
7548         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_free(_res);
7549         // debug statements here
7550 }
7551         // uintptr_t CResult_BuiltCommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
7552 /* @internal */
7553 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_clone_ptr(arg: number): number {
7554         if(!isWasmInitialized) {
7555                 throw new Error("initializeWasm() must be awaited first!");
7556         }
7557         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_clone_ptr(arg);
7558         return nativeResponseValue;
7559 }
7560         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ CResult_BuiltCommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
7561 /* @internal */
7562 export function CResult_BuiltCommitmentTransactionDecodeErrorZ_clone(orig: number): number {
7563         if(!isWasmInitialized) {
7564                 throw new Error("initializeWasm() must be awaited first!");
7565         }
7566         const nativeResponseValue = wasm.TS_CResult_BuiltCommitmentTransactionDecodeErrorZ_clone(orig);
7567         return nativeResponseValue;
7568 }
7569         // struct LDKCResult_TrustedClosingTransactionNoneZ CResult_TrustedClosingTransactionNoneZ_ok(struct LDKTrustedClosingTransaction o);
7570 /* @internal */
7571 export function CResult_TrustedClosingTransactionNoneZ_ok(o: number): number {
7572         if(!isWasmInitialized) {
7573                 throw new Error("initializeWasm() must be awaited first!");
7574         }
7575         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_ok(o);
7576         return nativeResponseValue;
7577 }
7578         // struct LDKCResult_TrustedClosingTransactionNoneZ CResult_TrustedClosingTransactionNoneZ_err(void);
7579 /* @internal */
7580 export function CResult_TrustedClosingTransactionNoneZ_err(): number {
7581         if(!isWasmInitialized) {
7582                 throw new Error("initializeWasm() must be awaited first!");
7583         }
7584         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_err();
7585         return nativeResponseValue;
7586 }
7587         // bool CResult_TrustedClosingTransactionNoneZ_is_ok(const struct LDKCResult_TrustedClosingTransactionNoneZ *NONNULL_PTR o);
7588 /* @internal */
7589 export function CResult_TrustedClosingTransactionNoneZ_is_ok(o: number): boolean {
7590         if(!isWasmInitialized) {
7591                 throw new Error("initializeWasm() must be awaited first!");
7592         }
7593         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_is_ok(o);
7594         return nativeResponseValue;
7595 }
7596         // void CResult_TrustedClosingTransactionNoneZ_free(struct LDKCResult_TrustedClosingTransactionNoneZ _res);
7597 /* @internal */
7598 export function CResult_TrustedClosingTransactionNoneZ_free(_res: number): void {
7599         if(!isWasmInitialized) {
7600                 throw new Error("initializeWasm() must be awaited first!");
7601         }
7602         const nativeResponseValue = wasm.TS_CResult_TrustedClosingTransactionNoneZ_free(_res);
7603         // debug statements here
7604 }
7605         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_ok(struct LDKCommitmentTransaction o);
7606 /* @internal */
7607 export function CResult_CommitmentTransactionDecodeErrorZ_ok(o: number): number {
7608         if(!isWasmInitialized) {
7609                 throw new Error("initializeWasm() must be awaited first!");
7610         }
7611         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_ok(o);
7612         return nativeResponseValue;
7613 }
7614         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_err(struct LDKDecodeError e);
7615 /* @internal */
7616 export function CResult_CommitmentTransactionDecodeErrorZ_err(e: number): number {
7617         if(!isWasmInitialized) {
7618                 throw new Error("initializeWasm() must be awaited first!");
7619         }
7620         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_err(e);
7621         return nativeResponseValue;
7622 }
7623         // bool CResult_CommitmentTransactionDecodeErrorZ_is_ok(const struct LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR o);
7624 /* @internal */
7625 export function CResult_CommitmentTransactionDecodeErrorZ_is_ok(o: number): boolean {
7626         if(!isWasmInitialized) {
7627                 throw new Error("initializeWasm() must be awaited first!");
7628         }
7629         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_is_ok(o);
7630         return nativeResponseValue;
7631 }
7632         // void CResult_CommitmentTransactionDecodeErrorZ_free(struct LDKCResult_CommitmentTransactionDecodeErrorZ _res);
7633 /* @internal */
7634 export function CResult_CommitmentTransactionDecodeErrorZ_free(_res: number): void {
7635         if(!isWasmInitialized) {
7636                 throw new Error("initializeWasm() must be awaited first!");
7637         }
7638         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_free(_res);
7639         // debug statements here
7640 }
7641         // uintptr_t CResult_CommitmentTransactionDecodeErrorZ_clone_ptr(LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR arg);
7642 /* @internal */
7643 export function CResult_CommitmentTransactionDecodeErrorZ_clone_ptr(arg: number): number {
7644         if(!isWasmInitialized) {
7645                 throw new Error("initializeWasm() must be awaited first!");
7646         }
7647         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_clone_ptr(arg);
7648         return nativeResponseValue;
7649 }
7650         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CResult_CommitmentTransactionDecodeErrorZ_clone(const struct LDKCResult_CommitmentTransactionDecodeErrorZ *NONNULL_PTR orig);
7651 /* @internal */
7652 export function CResult_CommitmentTransactionDecodeErrorZ_clone(orig: number): number {
7653         if(!isWasmInitialized) {
7654                 throw new Error("initializeWasm() must be awaited first!");
7655         }
7656         const nativeResponseValue = wasm.TS_CResult_CommitmentTransactionDecodeErrorZ_clone(orig);
7657         return nativeResponseValue;
7658 }
7659         // struct LDKCResult_TrustedCommitmentTransactionNoneZ CResult_TrustedCommitmentTransactionNoneZ_ok(struct LDKTrustedCommitmentTransaction o);
7660 /* @internal */
7661 export function CResult_TrustedCommitmentTransactionNoneZ_ok(o: number): number {
7662         if(!isWasmInitialized) {
7663                 throw new Error("initializeWasm() must be awaited first!");
7664         }
7665         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_ok(o);
7666         return nativeResponseValue;
7667 }
7668         // struct LDKCResult_TrustedCommitmentTransactionNoneZ CResult_TrustedCommitmentTransactionNoneZ_err(void);
7669 /* @internal */
7670 export function CResult_TrustedCommitmentTransactionNoneZ_err(): number {
7671         if(!isWasmInitialized) {
7672                 throw new Error("initializeWasm() must be awaited first!");
7673         }
7674         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_err();
7675         return nativeResponseValue;
7676 }
7677         // bool CResult_TrustedCommitmentTransactionNoneZ_is_ok(const struct LDKCResult_TrustedCommitmentTransactionNoneZ *NONNULL_PTR o);
7678 /* @internal */
7679 export function CResult_TrustedCommitmentTransactionNoneZ_is_ok(o: number): boolean {
7680         if(!isWasmInitialized) {
7681                 throw new Error("initializeWasm() must be awaited first!");
7682         }
7683         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_is_ok(o);
7684         return nativeResponseValue;
7685 }
7686         // void CResult_TrustedCommitmentTransactionNoneZ_free(struct LDKCResult_TrustedCommitmentTransactionNoneZ _res);
7687 /* @internal */
7688 export function CResult_TrustedCommitmentTransactionNoneZ_free(_res: number): void {
7689         if(!isWasmInitialized) {
7690                 throw new Error("initializeWasm() must be awaited first!");
7691         }
7692         const nativeResponseValue = wasm.TS_CResult_TrustedCommitmentTransactionNoneZ_free(_res);
7693         // debug statements here
7694 }
7695         // struct LDKCResult_CVec_SignatureZNoneZ CResult_CVec_SignatureZNoneZ_ok(struct LDKCVec_SignatureZ o);
7696 /* @internal */
7697 export function CResult_CVec_SignatureZNoneZ_ok(o: number): number {
7698         if(!isWasmInitialized) {
7699                 throw new Error("initializeWasm() must be awaited first!");
7700         }
7701         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_ok(o);
7702         return nativeResponseValue;
7703 }
7704         // struct LDKCResult_CVec_SignatureZNoneZ CResult_CVec_SignatureZNoneZ_err(void);
7705 /* @internal */
7706 export function CResult_CVec_SignatureZNoneZ_err(): number {
7707         if(!isWasmInitialized) {
7708                 throw new Error("initializeWasm() must be awaited first!");
7709         }
7710         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_err();
7711         return nativeResponseValue;
7712 }
7713         // bool CResult_CVec_SignatureZNoneZ_is_ok(const struct LDKCResult_CVec_SignatureZNoneZ *NONNULL_PTR o);
7714 /* @internal */
7715 export function CResult_CVec_SignatureZNoneZ_is_ok(o: number): boolean {
7716         if(!isWasmInitialized) {
7717                 throw new Error("initializeWasm() must be awaited first!");
7718         }
7719         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_is_ok(o);
7720         return nativeResponseValue;
7721 }
7722         // void CResult_CVec_SignatureZNoneZ_free(struct LDKCResult_CVec_SignatureZNoneZ _res);
7723 /* @internal */
7724 export function CResult_CVec_SignatureZNoneZ_free(_res: number): void {
7725         if(!isWasmInitialized) {
7726                 throw new Error("initializeWasm() must be awaited first!");
7727         }
7728         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_free(_res);
7729         // debug statements here
7730 }
7731         // uintptr_t CResult_CVec_SignatureZNoneZ_clone_ptr(LDKCResult_CVec_SignatureZNoneZ *NONNULL_PTR arg);
7732 /* @internal */
7733 export function CResult_CVec_SignatureZNoneZ_clone_ptr(arg: number): number {
7734         if(!isWasmInitialized) {
7735                 throw new Error("initializeWasm() must be awaited first!");
7736         }
7737         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_clone_ptr(arg);
7738         return nativeResponseValue;
7739 }
7740         // struct LDKCResult_CVec_SignatureZNoneZ CResult_CVec_SignatureZNoneZ_clone(const struct LDKCResult_CVec_SignatureZNoneZ *NONNULL_PTR orig);
7741 /* @internal */
7742 export function CResult_CVec_SignatureZNoneZ_clone(orig: number): number {
7743         if(!isWasmInitialized) {
7744                 throw new Error("initializeWasm() must be awaited first!");
7745         }
7746         const nativeResponseValue = wasm.TS_CResult_CVec_SignatureZNoneZ_clone(orig);
7747         return nativeResponseValue;
7748 }
7749         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_ok(struct LDKShutdownScript o);
7750 /* @internal */
7751 export function CResult_ShutdownScriptDecodeErrorZ_ok(o: number): number {
7752         if(!isWasmInitialized) {
7753                 throw new Error("initializeWasm() must be awaited first!");
7754         }
7755         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_ok(o);
7756         return nativeResponseValue;
7757 }
7758         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_err(struct LDKDecodeError e);
7759 /* @internal */
7760 export function CResult_ShutdownScriptDecodeErrorZ_err(e: number): number {
7761         if(!isWasmInitialized) {
7762                 throw new Error("initializeWasm() must be awaited first!");
7763         }
7764         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_err(e);
7765         return nativeResponseValue;
7766 }
7767         // bool CResult_ShutdownScriptDecodeErrorZ_is_ok(const struct LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR o);
7768 /* @internal */
7769 export function CResult_ShutdownScriptDecodeErrorZ_is_ok(o: number): boolean {
7770         if(!isWasmInitialized) {
7771                 throw new Error("initializeWasm() must be awaited first!");
7772         }
7773         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_is_ok(o);
7774         return nativeResponseValue;
7775 }
7776         // void CResult_ShutdownScriptDecodeErrorZ_free(struct LDKCResult_ShutdownScriptDecodeErrorZ _res);
7777 /* @internal */
7778 export function CResult_ShutdownScriptDecodeErrorZ_free(_res: number): void {
7779         if(!isWasmInitialized) {
7780                 throw new Error("initializeWasm() must be awaited first!");
7781         }
7782         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_free(_res);
7783         // debug statements here
7784 }
7785         // uintptr_t CResult_ShutdownScriptDecodeErrorZ_clone_ptr(LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR arg);
7786 /* @internal */
7787 export function CResult_ShutdownScriptDecodeErrorZ_clone_ptr(arg: number): number {
7788         if(!isWasmInitialized) {
7789                 throw new Error("initializeWasm() must be awaited first!");
7790         }
7791         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_clone_ptr(arg);
7792         return nativeResponseValue;
7793 }
7794         // struct LDKCResult_ShutdownScriptDecodeErrorZ CResult_ShutdownScriptDecodeErrorZ_clone(const struct LDKCResult_ShutdownScriptDecodeErrorZ *NONNULL_PTR orig);
7795 /* @internal */
7796 export function CResult_ShutdownScriptDecodeErrorZ_clone(orig: number): number {
7797         if(!isWasmInitialized) {
7798                 throw new Error("initializeWasm() must be awaited first!");
7799         }
7800         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptDecodeErrorZ_clone(orig);
7801         return nativeResponseValue;
7802 }
7803         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_ok(struct LDKShutdownScript o);
7804 /* @internal */
7805 export function CResult_ShutdownScriptInvalidShutdownScriptZ_ok(o: number): number {
7806         if(!isWasmInitialized) {
7807                 throw new Error("initializeWasm() must be awaited first!");
7808         }
7809         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_ok(o);
7810         return nativeResponseValue;
7811 }
7812         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_err(struct LDKInvalidShutdownScript e);
7813 /* @internal */
7814 export function CResult_ShutdownScriptInvalidShutdownScriptZ_err(e: number): number {
7815         if(!isWasmInitialized) {
7816                 throw new Error("initializeWasm() must be awaited first!");
7817         }
7818         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_err(e);
7819         return nativeResponseValue;
7820 }
7821         // bool CResult_ShutdownScriptInvalidShutdownScriptZ_is_ok(const struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR o);
7822 /* @internal */
7823 export function CResult_ShutdownScriptInvalidShutdownScriptZ_is_ok(o: number): boolean {
7824         if(!isWasmInitialized) {
7825                 throw new Error("initializeWasm() must be awaited first!");
7826         }
7827         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_is_ok(o);
7828         return nativeResponseValue;
7829 }
7830         // void CResult_ShutdownScriptInvalidShutdownScriptZ_free(struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ _res);
7831 /* @internal */
7832 export function CResult_ShutdownScriptInvalidShutdownScriptZ_free(_res: number): void {
7833         if(!isWasmInitialized) {
7834                 throw new Error("initializeWasm() must be awaited first!");
7835         }
7836         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_free(_res);
7837         // debug statements here
7838 }
7839         // uintptr_t CResult_ShutdownScriptInvalidShutdownScriptZ_clone_ptr(LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR arg);
7840 /* @internal */
7841 export function CResult_ShutdownScriptInvalidShutdownScriptZ_clone_ptr(arg: number): number {
7842         if(!isWasmInitialized) {
7843                 throw new Error("initializeWasm() must be awaited first!");
7844         }
7845         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_clone_ptr(arg);
7846         return nativeResponseValue;
7847 }
7848         // struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ CResult_ShutdownScriptInvalidShutdownScriptZ_clone(const struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ *NONNULL_PTR orig);
7849 /* @internal */
7850 export function CResult_ShutdownScriptInvalidShutdownScriptZ_clone(orig: number): number {
7851         if(!isWasmInitialized) {
7852                 throw new Error("initializeWasm() must be awaited first!");
7853         }
7854         const nativeResponseValue = wasm.TS_CResult_ShutdownScriptInvalidShutdownScriptZ_clone(orig);
7855         return nativeResponseValue;
7856 }
7857         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_ok(struct LDKRouteHop o);
7858 /* @internal */
7859 export function CResult_RouteHopDecodeErrorZ_ok(o: number): number {
7860         if(!isWasmInitialized) {
7861                 throw new Error("initializeWasm() must be awaited first!");
7862         }
7863         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_ok(o);
7864         return nativeResponseValue;
7865 }
7866         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_err(struct LDKDecodeError e);
7867 /* @internal */
7868 export function CResult_RouteHopDecodeErrorZ_err(e: number): number {
7869         if(!isWasmInitialized) {
7870                 throw new Error("initializeWasm() must be awaited first!");
7871         }
7872         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_err(e);
7873         return nativeResponseValue;
7874 }
7875         // bool CResult_RouteHopDecodeErrorZ_is_ok(const struct LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR o);
7876 /* @internal */
7877 export function CResult_RouteHopDecodeErrorZ_is_ok(o: number): boolean {
7878         if(!isWasmInitialized) {
7879                 throw new Error("initializeWasm() must be awaited first!");
7880         }
7881         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_is_ok(o);
7882         return nativeResponseValue;
7883 }
7884         // void CResult_RouteHopDecodeErrorZ_free(struct LDKCResult_RouteHopDecodeErrorZ _res);
7885 /* @internal */
7886 export function CResult_RouteHopDecodeErrorZ_free(_res: number): void {
7887         if(!isWasmInitialized) {
7888                 throw new Error("initializeWasm() must be awaited first!");
7889         }
7890         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_free(_res);
7891         // debug statements here
7892 }
7893         // uintptr_t CResult_RouteHopDecodeErrorZ_clone_ptr(LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR arg);
7894 /* @internal */
7895 export function CResult_RouteHopDecodeErrorZ_clone_ptr(arg: number): number {
7896         if(!isWasmInitialized) {
7897                 throw new Error("initializeWasm() must be awaited first!");
7898         }
7899         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_clone_ptr(arg);
7900         return nativeResponseValue;
7901 }
7902         // struct LDKCResult_RouteHopDecodeErrorZ CResult_RouteHopDecodeErrorZ_clone(const struct LDKCResult_RouteHopDecodeErrorZ *NONNULL_PTR orig);
7903 /* @internal */
7904 export function CResult_RouteHopDecodeErrorZ_clone(orig: number): number {
7905         if(!isWasmInitialized) {
7906                 throw new Error("initializeWasm() must be awaited first!");
7907         }
7908         const nativeResponseValue = wasm.TS_CResult_RouteHopDecodeErrorZ_clone(orig);
7909         return nativeResponseValue;
7910 }
7911         // void CVec_RouteHopZ_free(struct LDKCVec_RouteHopZ _res);
7912 /* @internal */
7913 export function CVec_RouteHopZ_free(_res: number): void {
7914         if(!isWasmInitialized) {
7915                 throw new Error("initializeWasm() must be awaited first!");
7916         }
7917         const nativeResponseValue = wasm.TS_CVec_RouteHopZ_free(_res);
7918         // debug statements here
7919 }
7920         // void CVec_CVec_RouteHopZZ_free(struct LDKCVec_CVec_RouteHopZZ _res);
7921 /* @internal */
7922 export function CVec_CVec_RouteHopZZ_free(_res: number): void {
7923         if(!isWasmInitialized) {
7924                 throw new Error("initializeWasm() must be awaited first!");
7925         }
7926         const nativeResponseValue = wasm.TS_CVec_CVec_RouteHopZZ_free(_res);
7927         // debug statements here
7928 }
7929         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_ok(struct LDKRoute o);
7930 /* @internal */
7931 export function CResult_RouteDecodeErrorZ_ok(o: number): number {
7932         if(!isWasmInitialized) {
7933                 throw new Error("initializeWasm() must be awaited first!");
7934         }
7935         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_ok(o);
7936         return nativeResponseValue;
7937 }
7938         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_err(struct LDKDecodeError e);
7939 /* @internal */
7940 export function CResult_RouteDecodeErrorZ_err(e: number): number {
7941         if(!isWasmInitialized) {
7942                 throw new Error("initializeWasm() must be awaited first!");
7943         }
7944         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_err(e);
7945         return nativeResponseValue;
7946 }
7947         // bool CResult_RouteDecodeErrorZ_is_ok(const struct LDKCResult_RouteDecodeErrorZ *NONNULL_PTR o);
7948 /* @internal */
7949 export function CResult_RouteDecodeErrorZ_is_ok(o: number): boolean {
7950         if(!isWasmInitialized) {
7951                 throw new Error("initializeWasm() must be awaited first!");
7952         }
7953         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_is_ok(o);
7954         return nativeResponseValue;
7955 }
7956         // void CResult_RouteDecodeErrorZ_free(struct LDKCResult_RouteDecodeErrorZ _res);
7957 /* @internal */
7958 export function CResult_RouteDecodeErrorZ_free(_res: number): void {
7959         if(!isWasmInitialized) {
7960                 throw new Error("initializeWasm() must be awaited first!");
7961         }
7962         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_free(_res);
7963         // debug statements here
7964 }
7965         // uintptr_t CResult_RouteDecodeErrorZ_clone_ptr(LDKCResult_RouteDecodeErrorZ *NONNULL_PTR arg);
7966 /* @internal */
7967 export function CResult_RouteDecodeErrorZ_clone_ptr(arg: number): number {
7968         if(!isWasmInitialized) {
7969                 throw new Error("initializeWasm() must be awaited first!");
7970         }
7971         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_clone_ptr(arg);
7972         return nativeResponseValue;
7973 }
7974         // struct LDKCResult_RouteDecodeErrorZ CResult_RouteDecodeErrorZ_clone(const struct LDKCResult_RouteDecodeErrorZ *NONNULL_PTR orig);
7975 /* @internal */
7976 export function CResult_RouteDecodeErrorZ_clone(orig: number): number {
7977         if(!isWasmInitialized) {
7978                 throw new Error("initializeWasm() must be awaited first!");
7979         }
7980         const nativeResponseValue = wasm.TS_CResult_RouteDecodeErrorZ_clone(orig);
7981         return nativeResponseValue;
7982 }
7983         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_ok(struct LDKRouteParameters o);
7984 /* @internal */
7985 export function CResult_RouteParametersDecodeErrorZ_ok(o: number): number {
7986         if(!isWasmInitialized) {
7987                 throw new Error("initializeWasm() must be awaited first!");
7988         }
7989         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_ok(o);
7990         return nativeResponseValue;
7991 }
7992         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_err(struct LDKDecodeError e);
7993 /* @internal */
7994 export function CResult_RouteParametersDecodeErrorZ_err(e: number): number {
7995         if(!isWasmInitialized) {
7996                 throw new Error("initializeWasm() must be awaited first!");
7997         }
7998         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_err(e);
7999         return nativeResponseValue;
8000 }
8001         // bool CResult_RouteParametersDecodeErrorZ_is_ok(const struct LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR o);
8002 /* @internal */
8003 export function CResult_RouteParametersDecodeErrorZ_is_ok(o: number): boolean {
8004         if(!isWasmInitialized) {
8005                 throw new Error("initializeWasm() must be awaited first!");
8006         }
8007         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_is_ok(o);
8008         return nativeResponseValue;
8009 }
8010         // void CResult_RouteParametersDecodeErrorZ_free(struct LDKCResult_RouteParametersDecodeErrorZ _res);
8011 /* @internal */
8012 export function CResult_RouteParametersDecodeErrorZ_free(_res: number): void {
8013         if(!isWasmInitialized) {
8014                 throw new Error("initializeWasm() must be awaited first!");
8015         }
8016         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_free(_res);
8017         // debug statements here
8018 }
8019         // uintptr_t CResult_RouteParametersDecodeErrorZ_clone_ptr(LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR arg);
8020 /* @internal */
8021 export function CResult_RouteParametersDecodeErrorZ_clone_ptr(arg: number): number {
8022         if(!isWasmInitialized) {
8023                 throw new Error("initializeWasm() must be awaited first!");
8024         }
8025         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_clone_ptr(arg);
8026         return nativeResponseValue;
8027 }
8028         // struct LDKCResult_RouteParametersDecodeErrorZ CResult_RouteParametersDecodeErrorZ_clone(const struct LDKCResult_RouteParametersDecodeErrorZ *NONNULL_PTR orig);
8029 /* @internal */
8030 export function CResult_RouteParametersDecodeErrorZ_clone(orig: number): number {
8031         if(!isWasmInitialized) {
8032                 throw new Error("initializeWasm() must be awaited first!");
8033         }
8034         const nativeResponseValue = wasm.TS_CResult_RouteParametersDecodeErrorZ_clone(orig);
8035         return nativeResponseValue;
8036 }
8037         // void CVec_RouteHintZ_free(struct LDKCVec_RouteHintZ _res);
8038 /* @internal */
8039 export function CVec_RouteHintZ_free(_res: number): void {
8040         if(!isWasmInitialized) {
8041                 throw new Error("initializeWasm() must be awaited first!");
8042         }
8043         const nativeResponseValue = wasm.TS_CVec_RouteHintZ_free(_res);
8044         // debug statements here
8045 }
8046         // struct LDKCOption_u64Z COption_u64Z_some(uint64_t o);
8047 /* @internal */
8048 export function COption_u64Z_some(o: bigint): number {
8049         if(!isWasmInitialized) {
8050                 throw new Error("initializeWasm() must be awaited first!");
8051         }
8052         const nativeResponseValue = wasm.TS_COption_u64Z_some(o);
8053         return nativeResponseValue;
8054 }
8055         // struct LDKCOption_u64Z COption_u64Z_none(void);
8056 /* @internal */
8057 export function COption_u64Z_none(): number {
8058         if(!isWasmInitialized) {
8059                 throw new Error("initializeWasm() must be awaited first!");
8060         }
8061         const nativeResponseValue = wasm.TS_COption_u64Z_none();
8062         return nativeResponseValue;
8063 }
8064         // void COption_u64Z_free(struct LDKCOption_u64Z _res);
8065 /* @internal */
8066 export function COption_u64Z_free(_res: number): void {
8067         if(!isWasmInitialized) {
8068                 throw new Error("initializeWasm() must be awaited first!");
8069         }
8070         const nativeResponseValue = wasm.TS_COption_u64Z_free(_res);
8071         // debug statements here
8072 }
8073         // uintptr_t COption_u64Z_clone_ptr(LDKCOption_u64Z *NONNULL_PTR arg);
8074 /* @internal */
8075 export function COption_u64Z_clone_ptr(arg: number): number {
8076         if(!isWasmInitialized) {
8077                 throw new Error("initializeWasm() must be awaited first!");
8078         }
8079         const nativeResponseValue = wasm.TS_COption_u64Z_clone_ptr(arg);
8080         return nativeResponseValue;
8081 }
8082         // struct LDKCOption_u64Z COption_u64Z_clone(const struct LDKCOption_u64Z *NONNULL_PTR orig);
8083 /* @internal */
8084 export function COption_u64Z_clone(orig: number): number {
8085         if(!isWasmInitialized) {
8086                 throw new Error("initializeWasm() must be awaited first!");
8087         }
8088         const nativeResponseValue = wasm.TS_COption_u64Z_clone(orig);
8089         return nativeResponseValue;
8090 }
8091         // void CVec_u64Z_free(struct LDKCVec_u64Z _res);
8092 /* @internal */
8093 export function CVec_u64Z_free(_res: number): void {
8094         if(!isWasmInitialized) {
8095                 throw new Error("initializeWasm() must be awaited first!");
8096         }
8097         const nativeResponseValue = wasm.TS_CVec_u64Z_free(_res);
8098         // debug statements here
8099 }
8100         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_ok(struct LDKPaymentParameters o);
8101 /* @internal */
8102 export function CResult_PaymentParametersDecodeErrorZ_ok(o: number): number {
8103         if(!isWasmInitialized) {
8104                 throw new Error("initializeWasm() must be awaited first!");
8105         }
8106         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_ok(o);
8107         return nativeResponseValue;
8108 }
8109         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_err(struct LDKDecodeError e);
8110 /* @internal */
8111 export function CResult_PaymentParametersDecodeErrorZ_err(e: number): number {
8112         if(!isWasmInitialized) {
8113                 throw new Error("initializeWasm() must be awaited first!");
8114         }
8115         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_err(e);
8116         return nativeResponseValue;
8117 }
8118         // bool CResult_PaymentParametersDecodeErrorZ_is_ok(const struct LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR o);
8119 /* @internal */
8120 export function CResult_PaymentParametersDecodeErrorZ_is_ok(o: number): boolean {
8121         if(!isWasmInitialized) {
8122                 throw new Error("initializeWasm() must be awaited first!");
8123         }
8124         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_is_ok(o);
8125         return nativeResponseValue;
8126 }
8127         // void CResult_PaymentParametersDecodeErrorZ_free(struct LDKCResult_PaymentParametersDecodeErrorZ _res);
8128 /* @internal */
8129 export function CResult_PaymentParametersDecodeErrorZ_free(_res: number): void {
8130         if(!isWasmInitialized) {
8131                 throw new Error("initializeWasm() must be awaited first!");
8132         }
8133         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_free(_res);
8134         // debug statements here
8135 }
8136         // uintptr_t CResult_PaymentParametersDecodeErrorZ_clone_ptr(LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR arg);
8137 /* @internal */
8138 export function CResult_PaymentParametersDecodeErrorZ_clone_ptr(arg: number): number {
8139         if(!isWasmInitialized) {
8140                 throw new Error("initializeWasm() must be awaited first!");
8141         }
8142         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_clone_ptr(arg);
8143         return nativeResponseValue;
8144 }
8145         // struct LDKCResult_PaymentParametersDecodeErrorZ CResult_PaymentParametersDecodeErrorZ_clone(const struct LDKCResult_PaymentParametersDecodeErrorZ *NONNULL_PTR orig);
8146 /* @internal */
8147 export function CResult_PaymentParametersDecodeErrorZ_clone(orig: number): number {
8148         if(!isWasmInitialized) {
8149                 throw new Error("initializeWasm() must be awaited first!");
8150         }
8151         const nativeResponseValue = wasm.TS_CResult_PaymentParametersDecodeErrorZ_clone(orig);
8152         return nativeResponseValue;
8153 }
8154         // void CVec_RouteHintHopZ_free(struct LDKCVec_RouteHintHopZ _res);
8155 /* @internal */
8156 export function CVec_RouteHintHopZ_free(_res: number): void {
8157         if(!isWasmInitialized) {
8158                 throw new Error("initializeWasm() must be awaited first!");
8159         }
8160         const nativeResponseValue = wasm.TS_CVec_RouteHintHopZ_free(_res);
8161         // debug statements here
8162 }
8163         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_ok(struct LDKRouteHint o);
8164 /* @internal */
8165 export function CResult_RouteHintDecodeErrorZ_ok(o: number): number {
8166         if(!isWasmInitialized) {
8167                 throw new Error("initializeWasm() must be awaited first!");
8168         }
8169         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_ok(o);
8170         return nativeResponseValue;
8171 }
8172         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_err(struct LDKDecodeError e);
8173 /* @internal */
8174 export function CResult_RouteHintDecodeErrorZ_err(e: number): number {
8175         if(!isWasmInitialized) {
8176                 throw new Error("initializeWasm() must be awaited first!");
8177         }
8178         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_err(e);
8179         return nativeResponseValue;
8180 }
8181         // bool CResult_RouteHintDecodeErrorZ_is_ok(const struct LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR o);
8182 /* @internal */
8183 export function CResult_RouteHintDecodeErrorZ_is_ok(o: number): boolean {
8184         if(!isWasmInitialized) {
8185                 throw new Error("initializeWasm() must be awaited first!");
8186         }
8187         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_is_ok(o);
8188         return nativeResponseValue;
8189 }
8190         // void CResult_RouteHintDecodeErrorZ_free(struct LDKCResult_RouteHintDecodeErrorZ _res);
8191 /* @internal */
8192 export function CResult_RouteHintDecodeErrorZ_free(_res: number): void {
8193         if(!isWasmInitialized) {
8194                 throw new Error("initializeWasm() must be awaited first!");
8195         }
8196         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_free(_res);
8197         // debug statements here
8198 }
8199         // uintptr_t CResult_RouteHintDecodeErrorZ_clone_ptr(LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR arg);
8200 /* @internal */
8201 export function CResult_RouteHintDecodeErrorZ_clone_ptr(arg: number): number {
8202         if(!isWasmInitialized) {
8203                 throw new Error("initializeWasm() must be awaited first!");
8204         }
8205         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_clone_ptr(arg);
8206         return nativeResponseValue;
8207 }
8208         // struct LDKCResult_RouteHintDecodeErrorZ CResult_RouteHintDecodeErrorZ_clone(const struct LDKCResult_RouteHintDecodeErrorZ *NONNULL_PTR orig);
8209 /* @internal */
8210 export function CResult_RouteHintDecodeErrorZ_clone(orig: number): number {
8211         if(!isWasmInitialized) {
8212                 throw new Error("initializeWasm() must be awaited first!");
8213         }
8214         const nativeResponseValue = wasm.TS_CResult_RouteHintDecodeErrorZ_clone(orig);
8215         return nativeResponseValue;
8216 }
8217         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_ok(struct LDKRouteHintHop o);
8218 /* @internal */
8219 export function CResult_RouteHintHopDecodeErrorZ_ok(o: number): number {
8220         if(!isWasmInitialized) {
8221                 throw new Error("initializeWasm() must be awaited first!");
8222         }
8223         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_ok(o);
8224         return nativeResponseValue;
8225 }
8226         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_err(struct LDKDecodeError e);
8227 /* @internal */
8228 export function CResult_RouteHintHopDecodeErrorZ_err(e: number): number {
8229         if(!isWasmInitialized) {
8230                 throw new Error("initializeWasm() must be awaited first!");
8231         }
8232         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_err(e);
8233         return nativeResponseValue;
8234 }
8235         // bool CResult_RouteHintHopDecodeErrorZ_is_ok(const struct LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR o);
8236 /* @internal */
8237 export function CResult_RouteHintHopDecodeErrorZ_is_ok(o: number): boolean {
8238         if(!isWasmInitialized) {
8239                 throw new Error("initializeWasm() must be awaited first!");
8240         }
8241         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_is_ok(o);
8242         return nativeResponseValue;
8243 }
8244         // void CResult_RouteHintHopDecodeErrorZ_free(struct LDKCResult_RouteHintHopDecodeErrorZ _res);
8245 /* @internal */
8246 export function CResult_RouteHintHopDecodeErrorZ_free(_res: number): void {
8247         if(!isWasmInitialized) {
8248                 throw new Error("initializeWasm() must be awaited first!");
8249         }
8250         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_free(_res);
8251         // debug statements here
8252 }
8253         // uintptr_t CResult_RouteHintHopDecodeErrorZ_clone_ptr(LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR arg);
8254 /* @internal */
8255 export function CResult_RouteHintHopDecodeErrorZ_clone_ptr(arg: number): number {
8256         if(!isWasmInitialized) {
8257                 throw new Error("initializeWasm() must be awaited first!");
8258         }
8259         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_clone_ptr(arg);
8260         return nativeResponseValue;
8261 }
8262         // struct LDKCResult_RouteHintHopDecodeErrorZ CResult_RouteHintHopDecodeErrorZ_clone(const struct LDKCResult_RouteHintHopDecodeErrorZ *NONNULL_PTR orig);
8263 /* @internal */
8264 export function CResult_RouteHintHopDecodeErrorZ_clone(orig: number): number {
8265         if(!isWasmInitialized) {
8266                 throw new Error("initializeWasm() must be awaited first!");
8267         }
8268         const nativeResponseValue = wasm.TS_CResult_RouteHintHopDecodeErrorZ_clone(orig);
8269         return nativeResponseValue;
8270 }
8271         // void CVec_ChannelDetailsZ_free(struct LDKCVec_ChannelDetailsZ _res);
8272 /* @internal */
8273 export function CVec_ChannelDetailsZ_free(_res: number): void {
8274         if(!isWasmInitialized) {
8275                 throw new Error("initializeWasm() must be awaited first!");
8276         }
8277         const nativeResponseValue = wasm.TS_CVec_ChannelDetailsZ_free(_res);
8278         // debug statements here
8279 }
8280         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_ok(struct LDKRoute o);
8281 /* @internal */
8282 export function CResult_RouteLightningErrorZ_ok(o: number): number {
8283         if(!isWasmInitialized) {
8284                 throw new Error("initializeWasm() must be awaited first!");
8285         }
8286         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_ok(o);
8287         return nativeResponseValue;
8288 }
8289         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_err(struct LDKLightningError e);
8290 /* @internal */
8291 export function CResult_RouteLightningErrorZ_err(e: number): number {
8292         if(!isWasmInitialized) {
8293                 throw new Error("initializeWasm() must be awaited first!");
8294         }
8295         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_err(e);
8296         return nativeResponseValue;
8297 }
8298         // bool CResult_RouteLightningErrorZ_is_ok(const struct LDKCResult_RouteLightningErrorZ *NONNULL_PTR o);
8299 /* @internal */
8300 export function CResult_RouteLightningErrorZ_is_ok(o: number): boolean {
8301         if(!isWasmInitialized) {
8302                 throw new Error("initializeWasm() must be awaited first!");
8303         }
8304         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_is_ok(o);
8305         return nativeResponseValue;
8306 }
8307         // void CResult_RouteLightningErrorZ_free(struct LDKCResult_RouteLightningErrorZ _res);
8308 /* @internal */
8309 export function CResult_RouteLightningErrorZ_free(_res: number): void {
8310         if(!isWasmInitialized) {
8311                 throw new Error("initializeWasm() must be awaited first!");
8312         }
8313         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_free(_res);
8314         // debug statements here
8315 }
8316         // uintptr_t CResult_RouteLightningErrorZ_clone_ptr(LDKCResult_RouteLightningErrorZ *NONNULL_PTR arg);
8317 /* @internal */
8318 export function CResult_RouteLightningErrorZ_clone_ptr(arg: number): number {
8319         if(!isWasmInitialized) {
8320                 throw new Error("initializeWasm() must be awaited first!");
8321         }
8322         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_clone_ptr(arg);
8323         return nativeResponseValue;
8324 }
8325         // struct LDKCResult_RouteLightningErrorZ CResult_RouteLightningErrorZ_clone(const struct LDKCResult_RouteLightningErrorZ *NONNULL_PTR orig);
8326 /* @internal */
8327 export function CResult_RouteLightningErrorZ_clone(orig: number): number {
8328         if(!isWasmInitialized) {
8329                 throw new Error("initializeWasm() must be awaited first!");
8330         }
8331         const nativeResponseValue = wasm.TS_CResult_RouteLightningErrorZ_clone(orig);
8332         return nativeResponseValue;
8333 }
8334         // void CVec_PublicKeyZ_free(struct LDKCVec_PublicKeyZ _res);
8335 /* @internal */
8336 export function CVec_PublicKeyZ_free(_res: number): void {
8337         if(!isWasmInitialized) {
8338                 throw new Error("initializeWasm() must be awaited first!");
8339         }
8340         const nativeResponseValue = wasm.TS_CVec_PublicKeyZ_free(_res);
8341         // debug statements here
8342 }
8343         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_ok(struct LDKPaymentPurpose o);
8344 /* @internal */
8345 export function CResult_PaymentPurposeDecodeErrorZ_ok(o: number): number {
8346         if(!isWasmInitialized) {
8347                 throw new Error("initializeWasm() must be awaited first!");
8348         }
8349         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_ok(o);
8350         return nativeResponseValue;
8351 }
8352         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_err(struct LDKDecodeError e);
8353 /* @internal */
8354 export function CResult_PaymentPurposeDecodeErrorZ_err(e: number): number {
8355         if(!isWasmInitialized) {
8356                 throw new Error("initializeWasm() must be awaited first!");
8357         }
8358         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_err(e);
8359         return nativeResponseValue;
8360 }
8361         // bool CResult_PaymentPurposeDecodeErrorZ_is_ok(const struct LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR o);
8362 /* @internal */
8363 export function CResult_PaymentPurposeDecodeErrorZ_is_ok(o: number): boolean {
8364         if(!isWasmInitialized) {
8365                 throw new Error("initializeWasm() must be awaited first!");
8366         }
8367         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_is_ok(o);
8368         return nativeResponseValue;
8369 }
8370         // void CResult_PaymentPurposeDecodeErrorZ_free(struct LDKCResult_PaymentPurposeDecodeErrorZ _res);
8371 /* @internal */
8372 export function CResult_PaymentPurposeDecodeErrorZ_free(_res: number): void {
8373         if(!isWasmInitialized) {
8374                 throw new Error("initializeWasm() must be awaited first!");
8375         }
8376         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_free(_res);
8377         // debug statements here
8378 }
8379         // uintptr_t CResult_PaymentPurposeDecodeErrorZ_clone_ptr(LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR arg);
8380 /* @internal */
8381 export function CResult_PaymentPurposeDecodeErrorZ_clone_ptr(arg: number): number {
8382         if(!isWasmInitialized) {
8383                 throw new Error("initializeWasm() must be awaited first!");
8384         }
8385         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_clone_ptr(arg);
8386         return nativeResponseValue;
8387 }
8388         // struct LDKCResult_PaymentPurposeDecodeErrorZ CResult_PaymentPurposeDecodeErrorZ_clone(const struct LDKCResult_PaymentPurposeDecodeErrorZ *NONNULL_PTR orig);
8389 /* @internal */
8390 export function CResult_PaymentPurposeDecodeErrorZ_clone(orig: number): number {
8391         if(!isWasmInitialized) {
8392                 throw new Error("initializeWasm() must be awaited first!");
8393         }
8394         const nativeResponseValue = wasm.TS_CResult_PaymentPurposeDecodeErrorZ_clone(orig);
8395         return nativeResponseValue;
8396 }
8397         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_some(struct LDKClosureReason o);
8398 /* @internal */
8399 export function COption_ClosureReasonZ_some(o: number): number {
8400         if(!isWasmInitialized) {
8401                 throw new Error("initializeWasm() must be awaited first!");
8402         }
8403         const nativeResponseValue = wasm.TS_COption_ClosureReasonZ_some(o);
8404         return nativeResponseValue;
8405 }
8406         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_none(void);
8407 /* @internal */
8408 export function COption_ClosureReasonZ_none(): number {
8409         if(!isWasmInitialized) {
8410                 throw new Error("initializeWasm() must be awaited first!");
8411         }
8412         const nativeResponseValue = wasm.TS_COption_ClosureReasonZ_none();
8413         return nativeResponseValue;
8414 }
8415         // void COption_ClosureReasonZ_free(struct LDKCOption_ClosureReasonZ _res);
8416 /* @internal */
8417 export function COption_ClosureReasonZ_free(_res: number): void {
8418         if(!isWasmInitialized) {
8419                 throw new Error("initializeWasm() must be awaited first!");
8420         }
8421         const nativeResponseValue = wasm.TS_COption_ClosureReasonZ_free(_res);
8422         // debug statements here
8423 }
8424         // uintptr_t COption_ClosureReasonZ_clone_ptr(LDKCOption_ClosureReasonZ *NONNULL_PTR arg);
8425 /* @internal */
8426 export function COption_ClosureReasonZ_clone_ptr(arg: number): number {
8427         if(!isWasmInitialized) {
8428                 throw new Error("initializeWasm() must be awaited first!");
8429         }
8430         const nativeResponseValue = wasm.TS_COption_ClosureReasonZ_clone_ptr(arg);
8431         return nativeResponseValue;
8432 }
8433         // struct LDKCOption_ClosureReasonZ COption_ClosureReasonZ_clone(const struct LDKCOption_ClosureReasonZ *NONNULL_PTR orig);
8434 /* @internal */
8435 export function COption_ClosureReasonZ_clone(orig: number): number {
8436         if(!isWasmInitialized) {
8437                 throw new Error("initializeWasm() must be awaited first!");
8438         }
8439         const nativeResponseValue = wasm.TS_COption_ClosureReasonZ_clone(orig);
8440         return nativeResponseValue;
8441 }
8442         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_ok(struct LDKCOption_ClosureReasonZ o);
8443 /* @internal */
8444 export function CResult_COption_ClosureReasonZDecodeErrorZ_ok(o: number): number {
8445         if(!isWasmInitialized) {
8446                 throw new Error("initializeWasm() must be awaited first!");
8447         }
8448         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_ok(o);
8449         return nativeResponseValue;
8450 }
8451         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_err(struct LDKDecodeError e);
8452 /* @internal */
8453 export function CResult_COption_ClosureReasonZDecodeErrorZ_err(e: number): number {
8454         if(!isWasmInitialized) {
8455                 throw new Error("initializeWasm() must be awaited first!");
8456         }
8457         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_err(e);
8458         return nativeResponseValue;
8459 }
8460         // bool CResult_COption_ClosureReasonZDecodeErrorZ_is_ok(const struct LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR o);
8461 /* @internal */
8462 export function CResult_COption_ClosureReasonZDecodeErrorZ_is_ok(o: number): boolean {
8463         if(!isWasmInitialized) {
8464                 throw new Error("initializeWasm() must be awaited first!");
8465         }
8466         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_is_ok(o);
8467         return nativeResponseValue;
8468 }
8469         // void CResult_COption_ClosureReasonZDecodeErrorZ_free(struct LDKCResult_COption_ClosureReasonZDecodeErrorZ _res);
8470 /* @internal */
8471 export function CResult_COption_ClosureReasonZDecodeErrorZ_free(_res: number): void {
8472         if(!isWasmInitialized) {
8473                 throw new Error("initializeWasm() must be awaited first!");
8474         }
8475         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_free(_res);
8476         // debug statements here
8477 }
8478         // uintptr_t CResult_COption_ClosureReasonZDecodeErrorZ_clone_ptr(LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR arg);
8479 /* @internal */
8480 export function CResult_COption_ClosureReasonZDecodeErrorZ_clone_ptr(arg: number): number {
8481         if(!isWasmInitialized) {
8482                 throw new Error("initializeWasm() must be awaited first!");
8483         }
8484         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_clone_ptr(arg);
8485         return nativeResponseValue;
8486 }
8487         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ CResult_COption_ClosureReasonZDecodeErrorZ_clone(const struct LDKCResult_COption_ClosureReasonZDecodeErrorZ *NONNULL_PTR orig);
8488 /* @internal */
8489 export function CResult_COption_ClosureReasonZDecodeErrorZ_clone(orig: number): number {
8490         if(!isWasmInitialized) {
8491                 throw new Error("initializeWasm() must be awaited first!");
8492         }
8493         const nativeResponseValue = wasm.TS_CResult_COption_ClosureReasonZDecodeErrorZ_clone(orig);
8494         return nativeResponseValue;
8495 }
8496         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_some(struct LDKHTLCDestination o);
8497 /* @internal */
8498 export function COption_HTLCDestinationZ_some(o: number): number {
8499         if(!isWasmInitialized) {
8500                 throw new Error("initializeWasm() must be awaited first!");
8501         }
8502         const nativeResponseValue = wasm.TS_COption_HTLCDestinationZ_some(o);
8503         return nativeResponseValue;
8504 }
8505         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_none(void);
8506 /* @internal */
8507 export function COption_HTLCDestinationZ_none(): number {
8508         if(!isWasmInitialized) {
8509                 throw new Error("initializeWasm() must be awaited first!");
8510         }
8511         const nativeResponseValue = wasm.TS_COption_HTLCDestinationZ_none();
8512         return nativeResponseValue;
8513 }
8514         // void COption_HTLCDestinationZ_free(struct LDKCOption_HTLCDestinationZ _res);
8515 /* @internal */
8516 export function COption_HTLCDestinationZ_free(_res: number): void {
8517         if(!isWasmInitialized) {
8518                 throw new Error("initializeWasm() must be awaited first!");
8519         }
8520         const nativeResponseValue = wasm.TS_COption_HTLCDestinationZ_free(_res);
8521         // debug statements here
8522 }
8523         // uintptr_t COption_HTLCDestinationZ_clone_ptr(LDKCOption_HTLCDestinationZ *NONNULL_PTR arg);
8524 /* @internal */
8525 export function COption_HTLCDestinationZ_clone_ptr(arg: number): number {
8526         if(!isWasmInitialized) {
8527                 throw new Error("initializeWasm() must be awaited first!");
8528         }
8529         const nativeResponseValue = wasm.TS_COption_HTLCDestinationZ_clone_ptr(arg);
8530         return nativeResponseValue;
8531 }
8532         // struct LDKCOption_HTLCDestinationZ COption_HTLCDestinationZ_clone(const struct LDKCOption_HTLCDestinationZ *NONNULL_PTR orig);
8533 /* @internal */
8534 export function COption_HTLCDestinationZ_clone(orig: number): number {
8535         if(!isWasmInitialized) {
8536                 throw new Error("initializeWasm() must be awaited first!");
8537         }
8538         const nativeResponseValue = wasm.TS_COption_HTLCDestinationZ_clone(orig);
8539         return nativeResponseValue;
8540 }
8541         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_ok(struct LDKCOption_HTLCDestinationZ o);
8542 /* @internal */
8543 export function CResult_COption_HTLCDestinationZDecodeErrorZ_ok(o: number): number {
8544         if(!isWasmInitialized) {
8545                 throw new Error("initializeWasm() must be awaited first!");
8546         }
8547         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_ok(o);
8548         return nativeResponseValue;
8549 }
8550         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_err(struct LDKDecodeError e);
8551 /* @internal */
8552 export function CResult_COption_HTLCDestinationZDecodeErrorZ_err(e: number): number {
8553         if(!isWasmInitialized) {
8554                 throw new Error("initializeWasm() must be awaited first!");
8555         }
8556         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_err(e);
8557         return nativeResponseValue;
8558 }
8559         // bool CResult_COption_HTLCDestinationZDecodeErrorZ_is_ok(const struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR o);
8560 /* @internal */
8561 export function CResult_COption_HTLCDestinationZDecodeErrorZ_is_ok(o: number): boolean {
8562         if(!isWasmInitialized) {
8563                 throw new Error("initializeWasm() must be awaited first!");
8564         }
8565         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_is_ok(o);
8566         return nativeResponseValue;
8567 }
8568         // void CResult_COption_HTLCDestinationZDecodeErrorZ_free(struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ _res);
8569 /* @internal */
8570 export function CResult_COption_HTLCDestinationZDecodeErrorZ_free(_res: number): void {
8571         if(!isWasmInitialized) {
8572                 throw new Error("initializeWasm() must be awaited first!");
8573         }
8574         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_free(_res);
8575         // debug statements here
8576 }
8577         // uintptr_t CResult_COption_HTLCDestinationZDecodeErrorZ_clone_ptr(LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR arg);
8578 /* @internal */
8579 export function CResult_COption_HTLCDestinationZDecodeErrorZ_clone_ptr(arg: number): number {
8580         if(!isWasmInitialized) {
8581                 throw new Error("initializeWasm() must be awaited first!");
8582         }
8583         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_clone_ptr(arg);
8584         return nativeResponseValue;
8585 }
8586         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ CResult_COption_HTLCDestinationZDecodeErrorZ_clone(const struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ *NONNULL_PTR orig);
8587 /* @internal */
8588 export function CResult_COption_HTLCDestinationZDecodeErrorZ_clone(orig: number): number {
8589         if(!isWasmInitialized) {
8590                 throw new Error("initializeWasm() must be awaited first!");
8591         }
8592         const nativeResponseValue = wasm.TS_CResult_COption_HTLCDestinationZDecodeErrorZ_clone(orig);
8593         return nativeResponseValue;
8594 }
8595         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_some(struct LDKNetworkUpdate o);
8596 /* @internal */
8597 export function COption_NetworkUpdateZ_some(o: number): number {
8598         if(!isWasmInitialized) {
8599                 throw new Error("initializeWasm() must be awaited first!");
8600         }
8601         const nativeResponseValue = wasm.TS_COption_NetworkUpdateZ_some(o);
8602         return nativeResponseValue;
8603 }
8604         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_none(void);
8605 /* @internal */
8606 export function COption_NetworkUpdateZ_none(): number {
8607         if(!isWasmInitialized) {
8608                 throw new Error("initializeWasm() must be awaited first!");
8609         }
8610         const nativeResponseValue = wasm.TS_COption_NetworkUpdateZ_none();
8611         return nativeResponseValue;
8612 }
8613         // void COption_NetworkUpdateZ_free(struct LDKCOption_NetworkUpdateZ _res);
8614 /* @internal */
8615 export function COption_NetworkUpdateZ_free(_res: number): void {
8616         if(!isWasmInitialized) {
8617                 throw new Error("initializeWasm() must be awaited first!");
8618         }
8619         const nativeResponseValue = wasm.TS_COption_NetworkUpdateZ_free(_res);
8620         // debug statements here
8621 }
8622         // uintptr_t COption_NetworkUpdateZ_clone_ptr(LDKCOption_NetworkUpdateZ *NONNULL_PTR arg);
8623 /* @internal */
8624 export function COption_NetworkUpdateZ_clone_ptr(arg: number): number {
8625         if(!isWasmInitialized) {
8626                 throw new Error("initializeWasm() must be awaited first!");
8627         }
8628         const nativeResponseValue = wasm.TS_COption_NetworkUpdateZ_clone_ptr(arg);
8629         return nativeResponseValue;
8630 }
8631         // struct LDKCOption_NetworkUpdateZ COption_NetworkUpdateZ_clone(const struct LDKCOption_NetworkUpdateZ *NONNULL_PTR orig);
8632 /* @internal */
8633 export function COption_NetworkUpdateZ_clone(orig: number): number {
8634         if(!isWasmInitialized) {
8635                 throw new Error("initializeWasm() must be awaited first!");
8636         }
8637         const nativeResponseValue = wasm.TS_COption_NetworkUpdateZ_clone(orig);
8638         return nativeResponseValue;
8639 }
8640         // void CVec_SpendableOutputDescriptorZ_free(struct LDKCVec_SpendableOutputDescriptorZ _res);
8641 /* @internal */
8642 export function CVec_SpendableOutputDescriptorZ_free(_res: number): void {
8643         if(!isWasmInitialized) {
8644                 throw new Error("initializeWasm() must be awaited first!");
8645         }
8646         const nativeResponseValue = wasm.TS_CVec_SpendableOutputDescriptorZ_free(_res);
8647         // debug statements here
8648 }
8649         // struct LDKCOption_EventZ COption_EventZ_some(struct LDKEvent o);
8650 /* @internal */
8651 export function COption_EventZ_some(o: number): number {
8652         if(!isWasmInitialized) {
8653                 throw new Error("initializeWasm() must be awaited first!");
8654         }
8655         const nativeResponseValue = wasm.TS_COption_EventZ_some(o);
8656         return nativeResponseValue;
8657 }
8658         // struct LDKCOption_EventZ COption_EventZ_none(void);
8659 /* @internal */
8660 export function COption_EventZ_none(): number {
8661         if(!isWasmInitialized) {
8662                 throw new Error("initializeWasm() must be awaited first!");
8663         }
8664         const nativeResponseValue = wasm.TS_COption_EventZ_none();
8665         return nativeResponseValue;
8666 }
8667         // void COption_EventZ_free(struct LDKCOption_EventZ _res);
8668 /* @internal */
8669 export function COption_EventZ_free(_res: number): void {
8670         if(!isWasmInitialized) {
8671                 throw new Error("initializeWasm() must be awaited first!");
8672         }
8673         const nativeResponseValue = wasm.TS_COption_EventZ_free(_res);
8674         // debug statements here
8675 }
8676         // uintptr_t COption_EventZ_clone_ptr(LDKCOption_EventZ *NONNULL_PTR arg);
8677 /* @internal */
8678 export function COption_EventZ_clone_ptr(arg: number): number {
8679         if(!isWasmInitialized) {
8680                 throw new Error("initializeWasm() must be awaited first!");
8681         }
8682         const nativeResponseValue = wasm.TS_COption_EventZ_clone_ptr(arg);
8683         return nativeResponseValue;
8684 }
8685         // struct LDKCOption_EventZ COption_EventZ_clone(const struct LDKCOption_EventZ *NONNULL_PTR orig);
8686 /* @internal */
8687 export function COption_EventZ_clone(orig: number): number {
8688         if(!isWasmInitialized) {
8689                 throw new Error("initializeWasm() must be awaited first!");
8690         }
8691         const nativeResponseValue = wasm.TS_COption_EventZ_clone(orig);
8692         return nativeResponseValue;
8693 }
8694         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_ok(struct LDKCOption_EventZ o);
8695 /* @internal */
8696 export function CResult_COption_EventZDecodeErrorZ_ok(o: number): number {
8697         if(!isWasmInitialized) {
8698                 throw new Error("initializeWasm() must be awaited first!");
8699         }
8700         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_ok(o);
8701         return nativeResponseValue;
8702 }
8703         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_err(struct LDKDecodeError e);
8704 /* @internal */
8705 export function CResult_COption_EventZDecodeErrorZ_err(e: number): number {
8706         if(!isWasmInitialized) {
8707                 throw new Error("initializeWasm() must be awaited first!");
8708         }
8709         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_err(e);
8710         return nativeResponseValue;
8711 }
8712         // bool CResult_COption_EventZDecodeErrorZ_is_ok(const struct LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR o);
8713 /* @internal */
8714 export function CResult_COption_EventZDecodeErrorZ_is_ok(o: number): boolean {
8715         if(!isWasmInitialized) {
8716                 throw new Error("initializeWasm() must be awaited first!");
8717         }
8718         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_is_ok(o);
8719         return nativeResponseValue;
8720 }
8721         // void CResult_COption_EventZDecodeErrorZ_free(struct LDKCResult_COption_EventZDecodeErrorZ _res);
8722 /* @internal */
8723 export function CResult_COption_EventZDecodeErrorZ_free(_res: number): void {
8724         if(!isWasmInitialized) {
8725                 throw new Error("initializeWasm() must be awaited first!");
8726         }
8727         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_free(_res);
8728         // debug statements here
8729 }
8730         // uintptr_t CResult_COption_EventZDecodeErrorZ_clone_ptr(LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR arg);
8731 /* @internal */
8732 export function CResult_COption_EventZDecodeErrorZ_clone_ptr(arg: number): number {
8733         if(!isWasmInitialized) {
8734                 throw new Error("initializeWasm() must be awaited first!");
8735         }
8736         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_clone_ptr(arg);
8737         return nativeResponseValue;
8738 }
8739         // struct LDKCResult_COption_EventZDecodeErrorZ CResult_COption_EventZDecodeErrorZ_clone(const struct LDKCResult_COption_EventZDecodeErrorZ *NONNULL_PTR orig);
8740 /* @internal */
8741 export function CResult_COption_EventZDecodeErrorZ_clone(orig: number): number {
8742         if(!isWasmInitialized) {
8743                 throw new Error("initializeWasm() must be awaited first!");
8744         }
8745         const nativeResponseValue = wasm.TS_CResult_COption_EventZDecodeErrorZ_clone(orig);
8746         return nativeResponseValue;
8747 }
8748         // void CVec_MessageSendEventZ_free(struct LDKCVec_MessageSendEventZ _res);
8749 /* @internal */
8750 export function CVec_MessageSendEventZ_free(_res: number): void {
8751         if(!isWasmInitialized) {
8752                 throw new Error("initializeWasm() must be awaited first!");
8753         }
8754         const nativeResponseValue = wasm.TS_CVec_MessageSendEventZ_free(_res);
8755         // debug statements here
8756 }
8757         // struct LDKCResult_TxOutAccessErrorZ CResult_TxOutAccessErrorZ_ok(struct LDKTxOut o);
8758 /* @internal */
8759 export function CResult_TxOutAccessErrorZ_ok(o: number): number {
8760         if(!isWasmInitialized) {
8761                 throw new Error("initializeWasm() must be awaited first!");
8762         }
8763         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_ok(o);
8764         return nativeResponseValue;
8765 }
8766         // struct LDKCResult_TxOutAccessErrorZ CResult_TxOutAccessErrorZ_err(enum LDKAccessError e);
8767 /* @internal */
8768 export function CResult_TxOutAccessErrorZ_err(e: AccessError): number {
8769         if(!isWasmInitialized) {
8770                 throw new Error("initializeWasm() must be awaited first!");
8771         }
8772         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_err(e);
8773         return nativeResponseValue;
8774 }
8775         // bool CResult_TxOutAccessErrorZ_is_ok(const struct LDKCResult_TxOutAccessErrorZ *NONNULL_PTR o);
8776 /* @internal */
8777 export function CResult_TxOutAccessErrorZ_is_ok(o: number): boolean {
8778         if(!isWasmInitialized) {
8779                 throw new Error("initializeWasm() must be awaited first!");
8780         }
8781         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_is_ok(o);
8782         return nativeResponseValue;
8783 }
8784         // void CResult_TxOutAccessErrorZ_free(struct LDKCResult_TxOutAccessErrorZ _res);
8785 /* @internal */
8786 export function CResult_TxOutAccessErrorZ_free(_res: number): void {
8787         if(!isWasmInitialized) {
8788                 throw new Error("initializeWasm() must be awaited first!");
8789         }
8790         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_free(_res);
8791         // debug statements here
8792 }
8793         // uintptr_t CResult_TxOutAccessErrorZ_clone_ptr(LDKCResult_TxOutAccessErrorZ *NONNULL_PTR arg);
8794 /* @internal */
8795 export function CResult_TxOutAccessErrorZ_clone_ptr(arg: number): number {
8796         if(!isWasmInitialized) {
8797                 throw new Error("initializeWasm() must be awaited first!");
8798         }
8799         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_clone_ptr(arg);
8800         return nativeResponseValue;
8801 }
8802         // struct LDKCResult_TxOutAccessErrorZ CResult_TxOutAccessErrorZ_clone(const struct LDKCResult_TxOutAccessErrorZ *NONNULL_PTR orig);
8803 /* @internal */
8804 export function CResult_TxOutAccessErrorZ_clone(orig: number): number {
8805         if(!isWasmInitialized) {
8806                 throw new Error("initializeWasm() must be awaited first!");
8807         }
8808         const nativeResponseValue = wasm.TS_CResult_TxOutAccessErrorZ_clone(orig);
8809         return nativeResponseValue;
8810 }
8811         // uintptr_t C2Tuple_usizeTransactionZ_clone_ptr(LDKC2Tuple_usizeTransactionZ *NONNULL_PTR arg);
8812 /* @internal */
8813 export function C2Tuple_usizeTransactionZ_clone_ptr(arg: number): number {
8814         if(!isWasmInitialized) {
8815                 throw new Error("initializeWasm() must be awaited first!");
8816         }
8817         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_clone_ptr(arg);
8818         return nativeResponseValue;
8819 }
8820         // struct LDKC2Tuple_usizeTransactionZ C2Tuple_usizeTransactionZ_clone(const struct LDKC2Tuple_usizeTransactionZ *NONNULL_PTR orig);
8821 /* @internal */
8822 export function C2Tuple_usizeTransactionZ_clone(orig: number): number {
8823         if(!isWasmInitialized) {
8824                 throw new Error("initializeWasm() must be awaited first!");
8825         }
8826         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_clone(orig);
8827         return nativeResponseValue;
8828 }
8829         // struct LDKC2Tuple_usizeTransactionZ C2Tuple_usizeTransactionZ_new(uintptr_t a, struct LDKTransaction b);
8830 /* @internal */
8831 export function C2Tuple_usizeTransactionZ_new(a: number, b: number): number {
8832         if(!isWasmInitialized) {
8833                 throw new Error("initializeWasm() must be awaited first!");
8834         }
8835         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_new(a, b);
8836         return nativeResponseValue;
8837 }
8838         // void C2Tuple_usizeTransactionZ_free(struct LDKC2Tuple_usizeTransactionZ _res);
8839 /* @internal */
8840 export function C2Tuple_usizeTransactionZ_free(_res: number): void {
8841         if(!isWasmInitialized) {
8842                 throw new Error("initializeWasm() must be awaited first!");
8843         }
8844         const nativeResponseValue = wasm.TS_C2Tuple_usizeTransactionZ_free(_res);
8845         // debug statements here
8846 }
8847         // void CVec_C2Tuple_usizeTransactionZZ_free(struct LDKCVec_C2Tuple_usizeTransactionZZ _res);
8848 /* @internal */
8849 export function CVec_C2Tuple_usizeTransactionZZ_free(_res: number): void {
8850         if(!isWasmInitialized) {
8851                 throw new Error("initializeWasm() must be awaited first!");
8852         }
8853         const nativeResponseValue = wasm.TS_CVec_C2Tuple_usizeTransactionZZ_free(_res);
8854         // debug statements here
8855 }
8856         // void CVec_TxidZ_free(struct LDKCVec_TxidZ _res);
8857 /* @internal */
8858 export function CVec_TxidZ_free(_res: number): void {
8859         if(!isWasmInitialized) {
8860                 throw new Error("initializeWasm() must be awaited first!");
8861         }
8862         const nativeResponseValue = wasm.TS_CVec_TxidZ_free(_res);
8863         // debug statements here
8864 }
8865         // struct LDKCResult_NoneChannelMonitorUpdateErrZ CResult_NoneChannelMonitorUpdateErrZ_ok(void);
8866 /* @internal */
8867 export function CResult_NoneChannelMonitorUpdateErrZ_ok(): number {
8868         if(!isWasmInitialized) {
8869                 throw new Error("initializeWasm() must be awaited first!");
8870         }
8871         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_ok();
8872         return nativeResponseValue;
8873 }
8874         // struct LDKCResult_NoneChannelMonitorUpdateErrZ CResult_NoneChannelMonitorUpdateErrZ_err(enum LDKChannelMonitorUpdateErr e);
8875 /* @internal */
8876 export function CResult_NoneChannelMonitorUpdateErrZ_err(e: ChannelMonitorUpdateErr): number {
8877         if(!isWasmInitialized) {
8878                 throw new Error("initializeWasm() must be awaited first!");
8879         }
8880         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_err(e);
8881         return nativeResponseValue;
8882 }
8883         // bool CResult_NoneChannelMonitorUpdateErrZ_is_ok(const struct LDKCResult_NoneChannelMonitorUpdateErrZ *NONNULL_PTR o);
8884 /* @internal */
8885 export function CResult_NoneChannelMonitorUpdateErrZ_is_ok(o: number): boolean {
8886         if(!isWasmInitialized) {
8887                 throw new Error("initializeWasm() must be awaited first!");
8888         }
8889         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_is_ok(o);
8890         return nativeResponseValue;
8891 }
8892         // void CResult_NoneChannelMonitorUpdateErrZ_free(struct LDKCResult_NoneChannelMonitorUpdateErrZ _res);
8893 /* @internal */
8894 export function CResult_NoneChannelMonitorUpdateErrZ_free(_res: number): void {
8895         if(!isWasmInitialized) {
8896                 throw new Error("initializeWasm() must be awaited first!");
8897         }
8898         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_free(_res);
8899         // debug statements here
8900 }
8901         // uintptr_t CResult_NoneChannelMonitorUpdateErrZ_clone_ptr(LDKCResult_NoneChannelMonitorUpdateErrZ *NONNULL_PTR arg);
8902 /* @internal */
8903 export function CResult_NoneChannelMonitorUpdateErrZ_clone_ptr(arg: number): number {
8904         if(!isWasmInitialized) {
8905                 throw new Error("initializeWasm() must be awaited first!");
8906         }
8907         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_clone_ptr(arg);
8908         return nativeResponseValue;
8909 }
8910         // struct LDKCResult_NoneChannelMonitorUpdateErrZ CResult_NoneChannelMonitorUpdateErrZ_clone(const struct LDKCResult_NoneChannelMonitorUpdateErrZ *NONNULL_PTR orig);
8911 /* @internal */
8912 export function CResult_NoneChannelMonitorUpdateErrZ_clone(orig: number): number {
8913         if(!isWasmInitialized) {
8914                 throw new Error("initializeWasm() must be awaited first!");
8915         }
8916         const nativeResponseValue = wasm.TS_CResult_NoneChannelMonitorUpdateErrZ_clone(orig);
8917         return nativeResponseValue;
8918 }
8919         // void CVec_MonitorEventZ_free(struct LDKCVec_MonitorEventZ _res);
8920 /* @internal */
8921 export function CVec_MonitorEventZ_free(_res: number): void {
8922         if(!isWasmInitialized) {
8923                 throw new Error("initializeWasm() must be awaited first!");
8924         }
8925         const nativeResponseValue = wasm.TS_CVec_MonitorEventZ_free(_res);
8926         // debug statements here
8927 }
8928         // uintptr_t C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone_ptr(LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR arg);
8929 /* @internal */
8930 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone_ptr(arg: number): number {
8931         if(!isWasmInitialized) {
8932                 throw new Error("initializeWasm() must be awaited first!");
8933         }
8934         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone_ptr(arg);
8935         return nativeResponseValue;
8936 }
8937         // struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone(const struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ *NONNULL_PTR orig);
8938 /* @internal */
8939 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone(orig: number): number {
8940         if(!isWasmInitialized) {
8941                 throw new Error("initializeWasm() must be awaited first!");
8942         }
8943         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_clone(orig);
8944         return nativeResponseValue;
8945 }
8946         // struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_new(struct LDKOutPoint a, struct LDKCVec_MonitorEventZ b, struct LDKPublicKey c);
8947 /* @internal */
8948 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_new(a: number, b: number, c: number): number {
8949         if(!isWasmInitialized) {
8950                 throw new Error("initializeWasm() must be awaited first!");
8951         }
8952         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_new(a, b, c);
8953         return nativeResponseValue;
8954 }
8955         // void C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_free(struct LDKC3Tuple_OutPointCVec_MonitorEventZPublicKeyZ _res);
8956 /* @internal */
8957 export function C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_free(_res: number): void {
8958         if(!isWasmInitialized) {
8959                 throw new Error("initializeWasm() must be awaited first!");
8960         }
8961         const nativeResponseValue = wasm.TS_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZ_free(_res);
8962         // debug statements here
8963 }
8964         // void CVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ_free(struct LDKCVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ _res);
8965 /* @internal */
8966 export function CVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ_free(_res: number): void {
8967         if(!isWasmInitialized) {
8968                 throw new Error("initializeWasm() must be awaited first!");
8969         }
8970         const nativeResponseValue = wasm.TS_CVec_C3Tuple_OutPointCVec_MonitorEventZPublicKeyZZ_free(_res);
8971         // debug statements here
8972 }
8973         // struct LDKCOption_C2Tuple_usizeTransactionZZ COption_C2Tuple_usizeTransactionZZ_some(struct LDKC2Tuple_usizeTransactionZ o);
8974 /* @internal */
8975 export function COption_C2Tuple_usizeTransactionZZ_some(o: number): number {
8976         if(!isWasmInitialized) {
8977                 throw new Error("initializeWasm() must be awaited first!");
8978         }
8979         const nativeResponseValue = wasm.TS_COption_C2Tuple_usizeTransactionZZ_some(o);
8980         return nativeResponseValue;
8981 }
8982         // struct LDKCOption_C2Tuple_usizeTransactionZZ COption_C2Tuple_usizeTransactionZZ_none(void);
8983 /* @internal */
8984 export function COption_C2Tuple_usizeTransactionZZ_none(): number {
8985         if(!isWasmInitialized) {
8986                 throw new Error("initializeWasm() must be awaited first!");
8987         }
8988         const nativeResponseValue = wasm.TS_COption_C2Tuple_usizeTransactionZZ_none();
8989         return nativeResponseValue;
8990 }
8991         // void COption_C2Tuple_usizeTransactionZZ_free(struct LDKCOption_C2Tuple_usizeTransactionZZ _res);
8992 /* @internal */
8993 export function COption_C2Tuple_usizeTransactionZZ_free(_res: number): void {
8994         if(!isWasmInitialized) {
8995                 throw new Error("initializeWasm() must be awaited first!");
8996         }
8997         const nativeResponseValue = wasm.TS_COption_C2Tuple_usizeTransactionZZ_free(_res);
8998         // debug statements here
8999 }
9000         // uintptr_t COption_C2Tuple_usizeTransactionZZ_clone_ptr(LDKCOption_C2Tuple_usizeTransactionZZ *NONNULL_PTR arg);
9001 /* @internal */
9002 export function COption_C2Tuple_usizeTransactionZZ_clone_ptr(arg: number): number {
9003         if(!isWasmInitialized) {
9004                 throw new Error("initializeWasm() must be awaited first!");
9005         }
9006         const nativeResponseValue = wasm.TS_COption_C2Tuple_usizeTransactionZZ_clone_ptr(arg);
9007         return nativeResponseValue;
9008 }
9009         // struct LDKCOption_C2Tuple_usizeTransactionZZ COption_C2Tuple_usizeTransactionZZ_clone(const struct LDKCOption_C2Tuple_usizeTransactionZZ *NONNULL_PTR orig);
9010 /* @internal */
9011 export function COption_C2Tuple_usizeTransactionZZ_clone(orig: number): number {
9012         if(!isWasmInitialized) {
9013                 throw new Error("initializeWasm() must be awaited first!");
9014         }
9015         const nativeResponseValue = wasm.TS_COption_C2Tuple_usizeTransactionZZ_clone(orig);
9016         return nativeResponseValue;
9017 }
9018         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_ok(struct LDKFixedPenaltyScorer o);
9019 /* @internal */
9020 export function CResult_FixedPenaltyScorerDecodeErrorZ_ok(o: number): number {
9021         if(!isWasmInitialized) {
9022                 throw new Error("initializeWasm() must be awaited first!");
9023         }
9024         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_ok(o);
9025         return nativeResponseValue;
9026 }
9027         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_err(struct LDKDecodeError e);
9028 /* @internal */
9029 export function CResult_FixedPenaltyScorerDecodeErrorZ_err(e: number): number {
9030         if(!isWasmInitialized) {
9031                 throw new Error("initializeWasm() must be awaited first!");
9032         }
9033         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_err(e);
9034         return nativeResponseValue;
9035 }
9036         // bool CResult_FixedPenaltyScorerDecodeErrorZ_is_ok(const struct LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR o);
9037 /* @internal */
9038 export function CResult_FixedPenaltyScorerDecodeErrorZ_is_ok(o: number): boolean {
9039         if(!isWasmInitialized) {
9040                 throw new Error("initializeWasm() must be awaited first!");
9041         }
9042         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_is_ok(o);
9043         return nativeResponseValue;
9044 }
9045         // void CResult_FixedPenaltyScorerDecodeErrorZ_free(struct LDKCResult_FixedPenaltyScorerDecodeErrorZ _res);
9046 /* @internal */
9047 export function CResult_FixedPenaltyScorerDecodeErrorZ_free(_res: number): void {
9048         if(!isWasmInitialized) {
9049                 throw new Error("initializeWasm() must be awaited first!");
9050         }
9051         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_free(_res);
9052         // debug statements here
9053 }
9054         // uintptr_t CResult_FixedPenaltyScorerDecodeErrorZ_clone_ptr(LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR arg);
9055 /* @internal */
9056 export function CResult_FixedPenaltyScorerDecodeErrorZ_clone_ptr(arg: number): number {
9057         if(!isWasmInitialized) {
9058                 throw new Error("initializeWasm() must be awaited first!");
9059         }
9060         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_clone_ptr(arg);
9061         return nativeResponseValue;
9062 }
9063         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ CResult_FixedPenaltyScorerDecodeErrorZ_clone(const struct LDKCResult_FixedPenaltyScorerDecodeErrorZ *NONNULL_PTR orig);
9064 /* @internal */
9065 export function CResult_FixedPenaltyScorerDecodeErrorZ_clone(orig: number): number {
9066         if(!isWasmInitialized) {
9067                 throw new Error("initializeWasm() must be awaited first!");
9068         }
9069         const nativeResponseValue = wasm.TS_CResult_FixedPenaltyScorerDecodeErrorZ_clone(orig);
9070         return nativeResponseValue;
9071 }
9072         // uintptr_t C2Tuple_u64u64Z_clone_ptr(LDKC2Tuple_u64u64Z *NONNULL_PTR arg);
9073 /* @internal */
9074 export function C2Tuple_u64u64Z_clone_ptr(arg: number): number {
9075         if(!isWasmInitialized) {
9076                 throw new Error("initializeWasm() must be awaited first!");
9077         }
9078         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_clone_ptr(arg);
9079         return nativeResponseValue;
9080 }
9081         // struct LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_clone(const struct LDKC2Tuple_u64u64Z *NONNULL_PTR orig);
9082 /* @internal */
9083 export function C2Tuple_u64u64Z_clone(orig: number): number {
9084         if(!isWasmInitialized) {
9085                 throw new Error("initializeWasm() must be awaited first!");
9086         }
9087         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_clone(orig);
9088         return nativeResponseValue;
9089 }
9090         // struct LDKC2Tuple_u64u64Z C2Tuple_u64u64Z_new(uint64_t a, uint64_t b);
9091 /* @internal */
9092 export function C2Tuple_u64u64Z_new(a: bigint, b: bigint): number {
9093         if(!isWasmInitialized) {
9094                 throw new Error("initializeWasm() must be awaited first!");
9095         }
9096         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_new(a, b);
9097         return nativeResponseValue;
9098 }
9099         // void C2Tuple_u64u64Z_free(struct LDKC2Tuple_u64u64Z _res);
9100 /* @internal */
9101 export function C2Tuple_u64u64Z_free(_res: number): void {
9102         if(!isWasmInitialized) {
9103                 throw new Error("initializeWasm() must be awaited first!");
9104         }
9105         const nativeResponseValue = wasm.TS_C2Tuple_u64u64Z_free(_res);
9106         // debug statements here
9107 }
9108         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_some(struct LDKC2Tuple_u64u64Z o);
9109 /* @internal */
9110 export function COption_C2Tuple_u64u64ZZ_some(o: number): number {
9111         if(!isWasmInitialized) {
9112                 throw new Error("initializeWasm() must be awaited first!");
9113         }
9114         const nativeResponseValue = wasm.TS_COption_C2Tuple_u64u64ZZ_some(o);
9115         return nativeResponseValue;
9116 }
9117         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_none(void);
9118 /* @internal */
9119 export function COption_C2Tuple_u64u64ZZ_none(): number {
9120         if(!isWasmInitialized) {
9121                 throw new Error("initializeWasm() must be awaited first!");
9122         }
9123         const nativeResponseValue = wasm.TS_COption_C2Tuple_u64u64ZZ_none();
9124         return nativeResponseValue;
9125 }
9126         // void COption_C2Tuple_u64u64ZZ_free(struct LDKCOption_C2Tuple_u64u64ZZ _res);
9127 /* @internal */
9128 export function COption_C2Tuple_u64u64ZZ_free(_res: number): void {
9129         if(!isWasmInitialized) {
9130                 throw new Error("initializeWasm() must be awaited first!");
9131         }
9132         const nativeResponseValue = wasm.TS_COption_C2Tuple_u64u64ZZ_free(_res);
9133         // debug statements here
9134 }
9135         // uintptr_t COption_C2Tuple_u64u64ZZ_clone_ptr(LDKCOption_C2Tuple_u64u64ZZ *NONNULL_PTR arg);
9136 /* @internal */
9137 export function COption_C2Tuple_u64u64ZZ_clone_ptr(arg: number): number {
9138         if(!isWasmInitialized) {
9139                 throw new Error("initializeWasm() must be awaited first!");
9140         }
9141         const nativeResponseValue = wasm.TS_COption_C2Tuple_u64u64ZZ_clone_ptr(arg);
9142         return nativeResponseValue;
9143 }
9144         // struct LDKCOption_C2Tuple_u64u64ZZ COption_C2Tuple_u64u64ZZ_clone(const struct LDKCOption_C2Tuple_u64u64ZZ *NONNULL_PTR orig);
9145 /* @internal */
9146 export function COption_C2Tuple_u64u64ZZ_clone(orig: number): number {
9147         if(!isWasmInitialized) {
9148                 throw new Error("initializeWasm() must be awaited first!");
9149         }
9150         const nativeResponseValue = wasm.TS_COption_C2Tuple_u64u64ZZ_clone(orig);
9151         return nativeResponseValue;
9152 }
9153         // void CVec_NodeIdZ_free(struct LDKCVec_NodeIdZ _res);
9154 /* @internal */
9155 export function CVec_NodeIdZ_free(_res: number): void {
9156         if(!isWasmInitialized) {
9157                 throw new Error("initializeWasm() must be awaited first!");
9158         }
9159         const nativeResponseValue = wasm.TS_CVec_NodeIdZ_free(_res);
9160         // debug statements here
9161 }
9162         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ CResult_ProbabilisticScorerDecodeErrorZ_ok(struct LDKProbabilisticScorer o);
9163 /* @internal */
9164 export function CResult_ProbabilisticScorerDecodeErrorZ_ok(o: number): number {
9165         if(!isWasmInitialized) {
9166                 throw new Error("initializeWasm() must be awaited first!");
9167         }
9168         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_ok(o);
9169         return nativeResponseValue;
9170 }
9171         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ CResult_ProbabilisticScorerDecodeErrorZ_err(struct LDKDecodeError e);
9172 /* @internal */
9173 export function CResult_ProbabilisticScorerDecodeErrorZ_err(e: number): number {
9174         if(!isWasmInitialized) {
9175                 throw new Error("initializeWasm() must be awaited first!");
9176         }
9177         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_err(e);
9178         return nativeResponseValue;
9179 }
9180         // bool CResult_ProbabilisticScorerDecodeErrorZ_is_ok(const struct LDKCResult_ProbabilisticScorerDecodeErrorZ *NONNULL_PTR o);
9181 /* @internal */
9182 export function CResult_ProbabilisticScorerDecodeErrorZ_is_ok(o: number): boolean {
9183         if(!isWasmInitialized) {
9184                 throw new Error("initializeWasm() must be awaited first!");
9185         }
9186         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_is_ok(o);
9187         return nativeResponseValue;
9188 }
9189         // void CResult_ProbabilisticScorerDecodeErrorZ_free(struct LDKCResult_ProbabilisticScorerDecodeErrorZ _res);
9190 /* @internal */
9191 export function CResult_ProbabilisticScorerDecodeErrorZ_free(_res: number): void {
9192         if(!isWasmInitialized) {
9193                 throw new Error("initializeWasm() must be awaited first!");
9194         }
9195         const nativeResponseValue = wasm.TS_CResult_ProbabilisticScorerDecodeErrorZ_free(_res);
9196         // debug statements here
9197 }
9198         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_ok(struct LDKInitFeatures o);
9199 /* @internal */
9200 export function CResult_InitFeaturesDecodeErrorZ_ok(o: number): number {
9201         if(!isWasmInitialized) {
9202                 throw new Error("initializeWasm() must be awaited first!");
9203         }
9204         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_ok(o);
9205         return nativeResponseValue;
9206 }
9207         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
9208 /* @internal */
9209 export function CResult_InitFeaturesDecodeErrorZ_err(e: number): number {
9210         if(!isWasmInitialized) {
9211                 throw new Error("initializeWasm() must be awaited first!");
9212         }
9213         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_err(e);
9214         return nativeResponseValue;
9215 }
9216         // bool CResult_InitFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR o);
9217 /* @internal */
9218 export function CResult_InitFeaturesDecodeErrorZ_is_ok(o: number): boolean {
9219         if(!isWasmInitialized) {
9220                 throw new Error("initializeWasm() must be awaited first!");
9221         }
9222         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_is_ok(o);
9223         return nativeResponseValue;
9224 }
9225         // void CResult_InitFeaturesDecodeErrorZ_free(struct LDKCResult_InitFeaturesDecodeErrorZ _res);
9226 /* @internal */
9227 export function CResult_InitFeaturesDecodeErrorZ_free(_res: number): void {
9228         if(!isWasmInitialized) {
9229                 throw new Error("initializeWasm() must be awaited first!");
9230         }
9231         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_free(_res);
9232         // debug statements here
9233 }
9234         // uintptr_t CResult_InitFeaturesDecodeErrorZ_clone_ptr(LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR arg);
9235 /* @internal */
9236 export function CResult_InitFeaturesDecodeErrorZ_clone_ptr(arg: number): number {
9237         if(!isWasmInitialized) {
9238                 throw new Error("initializeWasm() must be awaited first!");
9239         }
9240         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_clone_ptr(arg);
9241         return nativeResponseValue;
9242 }
9243         // struct LDKCResult_InitFeaturesDecodeErrorZ CResult_InitFeaturesDecodeErrorZ_clone(const struct LDKCResult_InitFeaturesDecodeErrorZ *NONNULL_PTR orig);
9244 /* @internal */
9245 export function CResult_InitFeaturesDecodeErrorZ_clone(orig: number): number {
9246         if(!isWasmInitialized) {
9247                 throw new Error("initializeWasm() must be awaited first!");
9248         }
9249         const nativeResponseValue = wasm.TS_CResult_InitFeaturesDecodeErrorZ_clone(orig);
9250         return nativeResponseValue;
9251 }
9252         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_ok(struct LDKChannelFeatures o);
9253 /* @internal */
9254 export function CResult_ChannelFeaturesDecodeErrorZ_ok(o: number): number {
9255         if(!isWasmInitialized) {
9256                 throw new Error("initializeWasm() must be awaited first!");
9257         }
9258         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_ok(o);
9259         return nativeResponseValue;
9260 }
9261         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
9262 /* @internal */
9263 export function CResult_ChannelFeaturesDecodeErrorZ_err(e: number): number {
9264         if(!isWasmInitialized) {
9265                 throw new Error("initializeWasm() must be awaited first!");
9266         }
9267         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_err(e);
9268         return nativeResponseValue;
9269 }
9270         // bool CResult_ChannelFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR o);
9271 /* @internal */
9272 export function CResult_ChannelFeaturesDecodeErrorZ_is_ok(o: number): boolean {
9273         if(!isWasmInitialized) {
9274                 throw new Error("initializeWasm() must be awaited first!");
9275         }
9276         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_is_ok(o);
9277         return nativeResponseValue;
9278 }
9279         // void CResult_ChannelFeaturesDecodeErrorZ_free(struct LDKCResult_ChannelFeaturesDecodeErrorZ _res);
9280 /* @internal */
9281 export function CResult_ChannelFeaturesDecodeErrorZ_free(_res: number): void {
9282         if(!isWasmInitialized) {
9283                 throw new Error("initializeWasm() must be awaited first!");
9284         }
9285         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_free(_res);
9286         // debug statements here
9287 }
9288         // uintptr_t CResult_ChannelFeaturesDecodeErrorZ_clone_ptr(LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR arg);
9289 /* @internal */
9290 export function CResult_ChannelFeaturesDecodeErrorZ_clone_ptr(arg: number): number {
9291         if(!isWasmInitialized) {
9292                 throw new Error("initializeWasm() must be awaited first!");
9293         }
9294         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_clone_ptr(arg);
9295         return nativeResponseValue;
9296 }
9297         // struct LDKCResult_ChannelFeaturesDecodeErrorZ CResult_ChannelFeaturesDecodeErrorZ_clone(const struct LDKCResult_ChannelFeaturesDecodeErrorZ *NONNULL_PTR orig);
9298 /* @internal */
9299 export function CResult_ChannelFeaturesDecodeErrorZ_clone(orig: number): number {
9300         if(!isWasmInitialized) {
9301                 throw new Error("initializeWasm() must be awaited first!");
9302         }
9303         const nativeResponseValue = wasm.TS_CResult_ChannelFeaturesDecodeErrorZ_clone(orig);
9304         return nativeResponseValue;
9305 }
9306         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_ok(struct LDKNodeFeatures o);
9307 /* @internal */
9308 export function CResult_NodeFeaturesDecodeErrorZ_ok(o: number): number {
9309         if(!isWasmInitialized) {
9310                 throw new Error("initializeWasm() must be awaited first!");
9311         }
9312         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_ok(o);
9313         return nativeResponseValue;
9314 }
9315         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
9316 /* @internal */
9317 export function CResult_NodeFeaturesDecodeErrorZ_err(e: number): number {
9318         if(!isWasmInitialized) {
9319                 throw new Error("initializeWasm() must be awaited first!");
9320         }
9321         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_err(e);
9322         return nativeResponseValue;
9323 }
9324         // bool CResult_NodeFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR o);
9325 /* @internal */
9326 export function CResult_NodeFeaturesDecodeErrorZ_is_ok(o: number): boolean {
9327         if(!isWasmInitialized) {
9328                 throw new Error("initializeWasm() must be awaited first!");
9329         }
9330         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_is_ok(o);
9331         return nativeResponseValue;
9332 }
9333         // void CResult_NodeFeaturesDecodeErrorZ_free(struct LDKCResult_NodeFeaturesDecodeErrorZ _res);
9334 /* @internal */
9335 export function CResult_NodeFeaturesDecodeErrorZ_free(_res: number): void {
9336         if(!isWasmInitialized) {
9337                 throw new Error("initializeWasm() must be awaited first!");
9338         }
9339         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_free(_res);
9340         // debug statements here
9341 }
9342         // uintptr_t CResult_NodeFeaturesDecodeErrorZ_clone_ptr(LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR arg);
9343 /* @internal */
9344 export function CResult_NodeFeaturesDecodeErrorZ_clone_ptr(arg: number): number {
9345         if(!isWasmInitialized) {
9346                 throw new Error("initializeWasm() must be awaited first!");
9347         }
9348         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_clone_ptr(arg);
9349         return nativeResponseValue;
9350 }
9351         // struct LDKCResult_NodeFeaturesDecodeErrorZ CResult_NodeFeaturesDecodeErrorZ_clone(const struct LDKCResult_NodeFeaturesDecodeErrorZ *NONNULL_PTR orig);
9352 /* @internal */
9353 export function CResult_NodeFeaturesDecodeErrorZ_clone(orig: number): number {
9354         if(!isWasmInitialized) {
9355                 throw new Error("initializeWasm() must be awaited first!");
9356         }
9357         const nativeResponseValue = wasm.TS_CResult_NodeFeaturesDecodeErrorZ_clone(orig);
9358         return nativeResponseValue;
9359 }
9360         // struct LDKCResult_InvoiceFeaturesDecodeErrorZ CResult_InvoiceFeaturesDecodeErrorZ_ok(struct LDKInvoiceFeatures o);
9361 /* @internal */
9362 export function CResult_InvoiceFeaturesDecodeErrorZ_ok(o: number): number {
9363         if(!isWasmInitialized) {
9364                 throw new Error("initializeWasm() must be awaited first!");
9365         }
9366         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_ok(o);
9367         return nativeResponseValue;
9368 }
9369         // struct LDKCResult_InvoiceFeaturesDecodeErrorZ CResult_InvoiceFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
9370 /* @internal */
9371 export function CResult_InvoiceFeaturesDecodeErrorZ_err(e: number): number {
9372         if(!isWasmInitialized) {
9373                 throw new Error("initializeWasm() must be awaited first!");
9374         }
9375         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_err(e);
9376         return nativeResponseValue;
9377 }
9378         // bool CResult_InvoiceFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_InvoiceFeaturesDecodeErrorZ *NONNULL_PTR o);
9379 /* @internal */
9380 export function CResult_InvoiceFeaturesDecodeErrorZ_is_ok(o: number): boolean {
9381         if(!isWasmInitialized) {
9382                 throw new Error("initializeWasm() must be awaited first!");
9383         }
9384         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_is_ok(o);
9385         return nativeResponseValue;
9386 }
9387         // void CResult_InvoiceFeaturesDecodeErrorZ_free(struct LDKCResult_InvoiceFeaturesDecodeErrorZ _res);
9388 /* @internal */
9389 export function CResult_InvoiceFeaturesDecodeErrorZ_free(_res: number): void {
9390         if(!isWasmInitialized) {
9391                 throw new Error("initializeWasm() must be awaited first!");
9392         }
9393         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_free(_res);
9394         // debug statements here
9395 }
9396         // uintptr_t CResult_InvoiceFeaturesDecodeErrorZ_clone_ptr(LDKCResult_InvoiceFeaturesDecodeErrorZ *NONNULL_PTR arg);
9397 /* @internal */
9398 export function CResult_InvoiceFeaturesDecodeErrorZ_clone_ptr(arg: number): number {
9399         if(!isWasmInitialized) {
9400                 throw new Error("initializeWasm() must be awaited first!");
9401         }
9402         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_clone_ptr(arg);
9403         return nativeResponseValue;
9404 }
9405         // struct LDKCResult_InvoiceFeaturesDecodeErrorZ CResult_InvoiceFeaturesDecodeErrorZ_clone(const struct LDKCResult_InvoiceFeaturesDecodeErrorZ *NONNULL_PTR orig);
9406 /* @internal */
9407 export function CResult_InvoiceFeaturesDecodeErrorZ_clone(orig: number): number {
9408         if(!isWasmInitialized) {
9409                 throw new Error("initializeWasm() must be awaited first!");
9410         }
9411         const nativeResponseValue = wasm.TS_CResult_InvoiceFeaturesDecodeErrorZ_clone(orig);
9412         return nativeResponseValue;
9413 }
9414         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_ok(struct LDKChannelTypeFeatures o);
9415 /* @internal */
9416 export function CResult_ChannelTypeFeaturesDecodeErrorZ_ok(o: number): number {
9417         if(!isWasmInitialized) {
9418                 throw new Error("initializeWasm() must be awaited first!");
9419         }
9420         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_ok(o);
9421         return nativeResponseValue;
9422 }
9423         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_err(struct LDKDecodeError e);
9424 /* @internal */
9425 export function CResult_ChannelTypeFeaturesDecodeErrorZ_err(e: number): number {
9426         if(!isWasmInitialized) {
9427                 throw new Error("initializeWasm() must be awaited first!");
9428         }
9429         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_err(e);
9430         return nativeResponseValue;
9431 }
9432         // bool CResult_ChannelTypeFeaturesDecodeErrorZ_is_ok(const struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR o);
9433 /* @internal */
9434 export function CResult_ChannelTypeFeaturesDecodeErrorZ_is_ok(o: number): boolean {
9435         if(!isWasmInitialized) {
9436                 throw new Error("initializeWasm() must be awaited first!");
9437         }
9438         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_is_ok(o);
9439         return nativeResponseValue;
9440 }
9441         // void CResult_ChannelTypeFeaturesDecodeErrorZ_free(struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ _res);
9442 /* @internal */
9443 export function CResult_ChannelTypeFeaturesDecodeErrorZ_free(_res: number): void {
9444         if(!isWasmInitialized) {
9445                 throw new Error("initializeWasm() must be awaited first!");
9446         }
9447         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_free(_res);
9448         // debug statements here
9449 }
9450         // uintptr_t CResult_ChannelTypeFeaturesDecodeErrorZ_clone_ptr(LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR arg);
9451 /* @internal */
9452 export function CResult_ChannelTypeFeaturesDecodeErrorZ_clone_ptr(arg: number): number {
9453         if(!isWasmInitialized) {
9454                 throw new Error("initializeWasm() must be awaited first!");
9455         }
9456         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_clone_ptr(arg);
9457         return nativeResponseValue;
9458 }
9459         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ CResult_ChannelTypeFeaturesDecodeErrorZ_clone(const struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ *NONNULL_PTR orig);
9460 /* @internal */
9461 export function CResult_ChannelTypeFeaturesDecodeErrorZ_clone(orig: number): number {
9462         if(!isWasmInitialized) {
9463                 throw new Error("initializeWasm() must be awaited first!");
9464         }
9465         const nativeResponseValue = wasm.TS_CResult_ChannelTypeFeaturesDecodeErrorZ_clone(orig);
9466         return nativeResponseValue;
9467 }
9468         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_ok(struct LDKNodeId o);
9469 /* @internal */
9470 export function CResult_NodeIdDecodeErrorZ_ok(o: number): number {
9471         if(!isWasmInitialized) {
9472                 throw new Error("initializeWasm() must be awaited first!");
9473         }
9474         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_ok(o);
9475         return nativeResponseValue;
9476 }
9477         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_err(struct LDKDecodeError e);
9478 /* @internal */
9479 export function CResult_NodeIdDecodeErrorZ_err(e: number): number {
9480         if(!isWasmInitialized) {
9481                 throw new Error("initializeWasm() must be awaited first!");
9482         }
9483         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_err(e);
9484         return nativeResponseValue;
9485 }
9486         // bool CResult_NodeIdDecodeErrorZ_is_ok(const struct LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR o);
9487 /* @internal */
9488 export function CResult_NodeIdDecodeErrorZ_is_ok(o: number): boolean {
9489         if(!isWasmInitialized) {
9490                 throw new Error("initializeWasm() must be awaited first!");
9491         }
9492         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_is_ok(o);
9493         return nativeResponseValue;
9494 }
9495         // void CResult_NodeIdDecodeErrorZ_free(struct LDKCResult_NodeIdDecodeErrorZ _res);
9496 /* @internal */
9497 export function CResult_NodeIdDecodeErrorZ_free(_res: number): void {
9498         if(!isWasmInitialized) {
9499                 throw new Error("initializeWasm() must be awaited first!");
9500         }
9501         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_free(_res);
9502         // debug statements here
9503 }
9504         // uintptr_t CResult_NodeIdDecodeErrorZ_clone_ptr(LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR arg);
9505 /* @internal */
9506 export function CResult_NodeIdDecodeErrorZ_clone_ptr(arg: number): number {
9507         if(!isWasmInitialized) {
9508                 throw new Error("initializeWasm() must be awaited first!");
9509         }
9510         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_clone_ptr(arg);
9511         return nativeResponseValue;
9512 }
9513         // struct LDKCResult_NodeIdDecodeErrorZ CResult_NodeIdDecodeErrorZ_clone(const struct LDKCResult_NodeIdDecodeErrorZ *NONNULL_PTR orig);
9514 /* @internal */
9515 export function CResult_NodeIdDecodeErrorZ_clone(orig: number): number {
9516         if(!isWasmInitialized) {
9517                 throw new Error("initializeWasm() must be awaited first!");
9518         }
9519         const nativeResponseValue = wasm.TS_CResult_NodeIdDecodeErrorZ_clone(orig);
9520         return nativeResponseValue;
9521 }
9522         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_ok(struct LDKCOption_NetworkUpdateZ o);
9523 /* @internal */
9524 export function CResult_COption_NetworkUpdateZDecodeErrorZ_ok(o: number): number {
9525         if(!isWasmInitialized) {
9526                 throw new Error("initializeWasm() must be awaited first!");
9527         }
9528         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_ok(o);
9529         return nativeResponseValue;
9530 }
9531         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_err(struct LDKDecodeError e);
9532 /* @internal */
9533 export function CResult_COption_NetworkUpdateZDecodeErrorZ_err(e: number): number {
9534         if(!isWasmInitialized) {
9535                 throw new Error("initializeWasm() must be awaited first!");
9536         }
9537         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_err(e);
9538         return nativeResponseValue;
9539 }
9540         // bool CResult_COption_NetworkUpdateZDecodeErrorZ_is_ok(const struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR o);
9541 /* @internal */
9542 export function CResult_COption_NetworkUpdateZDecodeErrorZ_is_ok(o: number): boolean {
9543         if(!isWasmInitialized) {
9544                 throw new Error("initializeWasm() must be awaited first!");
9545         }
9546         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_is_ok(o);
9547         return nativeResponseValue;
9548 }
9549         // void CResult_COption_NetworkUpdateZDecodeErrorZ_free(struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ _res);
9550 /* @internal */
9551 export function CResult_COption_NetworkUpdateZDecodeErrorZ_free(_res: number): void {
9552         if(!isWasmInitialized) {
9553                 throw new Error("initializeWasm() must be awaited first!");
9554         }
9555         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_free(_res);
9556         // debug statements here
9557 }
9558         // uintptr_t CResult_COption_NetworkUpdateZDecodeErrorZ_clone_ptr(LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR arg);
9559 /* @internal */
9560 export function CResult_COption_NetworkUpdateZDecodeErrorZ_clone_ptr(arg: number): number {
9561         if(!isWasmInitialized) {
9562                 throw new Error("initializeWasm() must be awaited first!");
9563         }
9564         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_clone_ptr(arg);
9565         return nativeResponseValue;
9566 }
9567         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ CResult_COption_NetworkUpdateZDecodeErrorZ_clone(const struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ *NONNULL_PTR orig);
9568 /* @internal */
9569 export function CResult_COption_NetworkUpdateZDecodeErrorZ_clone(orig: number): number {
9570         if(!isWasmInitialized) {
9571                 throw new Error("initializeWasm() must be awaited first!");
9572         }
9573         const nativeResponseValue = wasm.TS_CResult_COption_NetworkUpdateZDecodeErrorZ_clone(orig);
9574         return nativeResponseValue;
9575 }
9576         // struct LDKCOption_AccessZ COption_AccessZ_some(struct LDKAccess o);
9577 /* @internal */
9578 export function COption_AccessZ_some(o: number): number {
9579         if(!isWasmInitialized) {
9580                 throw new Error("initializeWasm() must be awaited first!");
9581         }
9582         const nativeResponseValue = wasm.TS_COption_AccessZ_some(o);
9583         return nativeResponseValue;
9584 }
9585         // struct LDKCOption_AccessZ COption_AccessZ_none(void);
9586 /* @internal */
9587 export function COption_AccessZ_none(): number {
9588         if(!isWasmInitialized) {
9589                 throw new Error("initializeWasm() must be awaited first!");
9590         }
9591         const nativeResponseValue = wasm.TS_COption_AccessZ_none();
9592         return nativeResponseValue;
9593 }
9594         // void COption_AccessZ_free(struct LDKCOption_AccessZ _res);
9595 /* @internal */
9596 export function COption_AccessZ_free(_res: number): void {
9597         if(!isWasmInitialized) {
9598                 throw new Error("initializeWasm() must be awaited first!");
9599         }
9600         const nativeResponseValue = wasm.TS_COption_AccessZ_free(_res);
9601         // debug statements here
9602 }
9603         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_ok(bool o);
9604 /* @internal */
9605 export function CResult_boolLightningErrorZ_ok(o: boolean): number {
9606         if(!isWasmInitialized) {
9607                 throw new Error("initializeWasm() must be awaited first!");
9608         }
9609         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_ok(o);
9610         return nativeResponseValue;
9611 }
9612         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_err(struct LDKLightningError e);
9613 /* @internal */
9614 export function CResult_boolLightningErrorZ_err(e: number): number {
9615         if(!isWasmInitialized) {
9616                 throw new Error("initializeWasm() must be awaited first!");
9617         }
9618         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_err(e);
9619         return nativeResponseValue;
9620 }
9621         // bool CResult_boolLightningErrorZ_is_ok(const struct LDKCResult_boolLightningErrorZ *NONNULL_PTR o);
9622 /* @internal */
9623 export function CResult_boolLightningErrorZ_is_ok(o: number): boolean {
9624         if(!isWasmInitialized) {
9625                 throw new Error("initializeWasm() must be awaited first!");
9626         }
9627         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_is_ok(o);
9628         return nativeResponseValue;
9629 }
9630         // void CResult_boolLightningErrorZ_free(struct LDKCResult_boolLightningErrorZ _res);
9631 /* @internal */
9632 export function CResult_boolLightningErrorZ_free(_res: number): void {
9633         if(!isWasmInitialized) {
9634                 throw new Error("initializeWasm() must be awaited first!");
9635         }
9636         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_free(_res);
9637         // debug statements here
9638 }
9639         // uintptr_t CResult_boolLightningErrorZ_clone_ptr(LDKCResult_boolLightningErrorZ *NONNULL_PTR arg);
9640 /* @internal */
9641 export function CResult_boolLightningErrorZ_clone_ptr(arg: number): number {
9642         if(!isWasmInitialized) {
9643                 throw new Error("initializeWasm() must be awaited first!");
9644         }
9645         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_clone_ptr(arg);
9646         return nativeResponseValue;
9647 }
9648         // struct LDKCResult_boolLightningErrorZ CResult_boolLightningErrorZ_clone(const struct LDKCResult_boolLightningErrorZ *NONNULL_PTR orig);
9649 /* @internal */
9650 export function CResult_boolLightningErrorZ_clone(orig: number): number {
9651         if(!isWasmInitialized) {
9652                 throw new Error("initializeWasm() must be awaited first!");
9653         }
9654         const nativeResponseValue = wasm.TS_CResult_boolLightningErrorZ_clone(orig);
9655         return nativeResponseValue;
9656 }
9657         // uintptr_t C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone_ptr(LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR arg);
9658 /* @internal */
9659 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone_ptr(arg: number): number {
9660         if(!isWasmInitialized) {
9661                 throw new Error("initializeWasm() must be awaited first!");
9662         }
9663         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone_ptr(arg);
9664         return nativeResponseValue;
9665 }
9666         // struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone(const struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ *NONNULL_PTR orig);
9667 /* @internal */
9668 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone(orig: number): number {
9669         if(!isWasmInitialized) {
9670                 throw new Error("initializeWasm() must be awaited first!");
9671         }
9672         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_clone(orig);
9673         return nativeResponseValue;
9674 }
9675         // struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(struct LDKChannelAnnouncement a, struct LDKChannelUpdate b, struct LDKChannelUpdate c);
9676 /* @internal */
9677 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(a: number, b: number, c: number): number {
9678         if(!isWasmInitialized) {
9679                 throw new Error("initializeWasm() must be awaited first!");
9680         }
9681         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_new(a, b, c);
9682         return nativeResponseValue;
9683 }
9684         // void C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(struct LDKC3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ _res);
9685 /* @internal */
9686 export function C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(_res: number): void {
9687         if(!isWasmInitialized) {
9688                 throw new Error("initializeWasm() must be awaited first!");
9689         }
9690         const nativeResponseValue = wasm.TS_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZ_free(_res);
9691         // debug statements here
9692 }
9693         // void CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(struct LDKCVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ _res);
9694 /* @internal */
9695 export function CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(_res: number): void {
9696         if(!isWasmInitialized) {
9697                 throw new Error("initializeWasm() must be awaited first!");
9698         }
9699         const nativeResponseValue = wasm.TS_CVec_C3Tuple_ChannelAnnouncementChannelUpdateChannelUpdateZZ_free(_res);
9700         // debug statements here
9701 }
9702         // void CVec_NodeAnnouncementZ_free(struct LDKCVec_NodeAnnouncementZ _res);
9703 /* @internal */
9704 export function CVec_NodeAnnouncementZ_free(_res: number): void {
9705         if(!isWasmInitialized) {
9706                 throw new Error("initializeWasm() must be awaited first!");
9707         }
9708         const nativeResponseValue = wasm.TS_CVec_NodeAnnouncementZ_free(_res);
9709         // debug statements here
9710 }
9711         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_ok(void);
9712 /* @internal */
9713 export function CResult_NoneLightningErrorZ_ok(): number {
9714         if(!isWasmInitialized) {
9715                 throw new Error("initializeWasm() must be awaited first!");
9716         }
9717         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_ok();
9718         return nativeResponseValue;
9719 }
9720         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_err(struct LDKLightningError e);
9721 /* @internal */
9722 export function CResult_NoneLightningErrorZ_err(e: number): number {
9723         if(!isWasmInitialized) {
9724                 throw new Error("initializeWasm() must be awaited first!");
9725         }
9726         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_err(e);
9727         return nativeResponseValue;
9728 }
9729         // bool CResult_NoneLightningErrorZ_is_ok(const struct LDKCResult_NoneLightningErrorZ *NONNULL_PTR o);
9730 /* @internal */
9731 export function CResult_NoneLightningErrorZ_is_ok(o: number): boolean {
9732         if(!isWasmInitialized) {
9733                 throw new Error("initializeWasm() must be awaited first!");
9734         }
9735         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_is_ok(o);
9736         return nativeResponseValue;
9737 }
9738         // void CResult_NoneLightningErrorZ_free(struct LDKCResult_NoneLightningErrorZ _res);
9739 /* @internal */
9740 export function CResult_NoneLightningErrorZ_free(_res: number): void {
9741         if(!isWasmInitialized) {
9742                 throw new Error("initializeWasm() must be awaited first!");
9743         }
9744         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_free(_res);
9745         // debug statements here
9746 }
9747         // uintptr_t CResult_NoneLightningErrorZ_clone_ptr(LDKCResult_NoneLightningErrorZ *NONNULL_PTR arg);
9748 /* @internal */
9749 export function CResult_NoneLightningErrorZ_clone_ptr(arg: number): number {
9750         if(!isWasmInitialized) {
9751                 throw new Error("initializeWasm() must be awaited first!");
9752         }
9753         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_clone_ptr(arg);
9754         return nativeResponseValue;
9755 }
9756         // struct LDKCResult_NoneLightningErrorZ CResult_NoneLightningErrorZ_clone(const struct LDKCResult_NoneLightningErrorZ *NONNULL_PTR orig);
9757 /* @internal */
9758 export function CResult_NoneLightningErrorZ_clone(orig: number): number {
9759         if(!isWasmInitialized) {
9760                 throw new Error("initializeWasm() must be awaited first!");
9761         }
9762         const nativeResponseValue = wasm.TS_CResult_NoneLightningErrorZ_clone(orig);
9763         return nativeResponseValue;
9764 }
9765         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_ok(struct LDKChannelUpdateInfo o);
9766 /* @internal */
9767 export function CResult_ChannelUpdateInfoDecodeErrorZ_ok(o: number): number {
9768         if(!isWasmInitialized) {
9769                 throw new Error("initializeWasm() must be awaited first!");
9770         }
9771         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_ok(o);
9772         return nativeResponseValue;
9773 }
9774         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_err(struct LDKDecodeError e);
9775 /* @internal */
9776 export function CResult_ChannelUpdateInfoDecodeErrorZ_err(e: number): number {
9777         if(!isWasmInitialized) {
9778                 throw new Error("initializeWasm() must be awaited first!");
9779         }
9780         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_err(e);
9781         return nativeResponseValue;
9782 }
9783         // bool CResult_ChannelUpdateInfoDecodeErrorZ_is_ok(const struct LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR o);
9784 /* @internal */
9785 export function CResult_ChannelUpdateInfoDecodeErrorZ_is_ok(o: number): boolean {
9786         if(!isWasmInitialized) {
9787                 throw new Error("initializeWasm() must be awaited first!");
9788         }
9789         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_is_ok(o);
9790         return nativeResponseValue;
9791 }
9792         // void CResult_ChannelUpdateInfoDecodeErrorZ_free(struct LDKCResult_ChannelUpdateInfoDecodeErrorZ _res);
9793 /* @internal */
9794 export function CResult_ChannelUpdateInfoDecodeErrorZ_free(_res: number): void {
9795         if(!isWasmInitialized) {
9796                 throw new Error("initializeWasm() must be awaited first!");
9797         }
9798         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_free(_res);
9799         // debug statements here
9800 }
9801         // uintptr_t CResult_ChannelUpdateInfoDecodeErrorZ_clone_ptr(LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR arg);
9802 /* @internal */
9803 export function CResult_ChannelUpdateInfoDecodeErrorZ_clone_ptr(arg: number): number {
9804         if(!isWasmInitialized) {
9805                 throw new Error("initializeWasm() must be awaited first!");
9806         }
9807         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_clone_ptr(arg);
9808         return nativeResponseValue;
9809 }
9810         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ CResult_ChannelUpdateInfoDecodeErrorZ_clone(const struct LDKCResult_ChannelUpdateInfoDecodeErrorZ *NONNULL_PTR orig);
9811 /* @internal */
9812 export function CResult_ChannelUpdateInfoDecodeErrorZ_clone(orig: number): number {
9813         if(!isWasmInitialized) {
9814                 throw new Error("initializeWasm() must be awaited first!");
9815         }
9816         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateInfoDecodeErrorZ_clone(orig);
9817         return nativeResponseValue;
9818 }
9819         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_ok(struct LDKChannelInfo o);
9820 /* @internal */
9821 export function CResult_ChannelInfoDecodeErrorZ_ok(o: number): number {
9822         if(!isWasmInitialized) {
9823                 throw new Error("initializeWasm() must be awaited first!");
9824         }
9825         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_ok(o);
9826         return nativeResponseValue;
9827 }
9828         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_err(struct LDKDecodeError e);
9829 /* @internal */
9830 export function CResult_ChannelInfoDecodeErrorZ_err(e: number): number {
9831         if(!isWasmInitialized) {
9832                 throw new Error("initializeWasm() must be awaited first!");
9833         }
9834         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_err(e);
9835         return nativeResponseValue;
9836 }
9837         // bool CResult_ChannelInfoDecodeErrorZ_is_ok(const struct LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR o);
9838 /* @internal */
9839 export function CResult_ChannelInfoDecodeErrorZ_is_ok(o: number): boolean {
9840         if(!isWasmInitialized) {
9841                 throw new Error("initializeWasm() must be awaited first!");
9842         }
9843         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_is_ok(o);
9844         return nativeResponseValue;
9845 }
9846         // void CResult_ChannelInfoDecodeErrorZ_free(struct LDKCResult_ChannelInfoDecodeErrorZ _res);
9847 /* @internal */
9848 export function CResult_ChannelInfoDecodeErrorZ_free(_res: number): void {
9849         if(!isWasmInitialized) {
9850                 throw new Error("initializeWasm() must be awaited first!");
9851         }
9852         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_free(_res);
9853         // debug statements here
9854 }
9855         // uintptr_t CResult_ChannelInfoDecodeErrorZ_clone_ptr(LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR arg);
9856 /* @internal */
9857 export function CResult_ChannelInfoDecodeErrorZ_clone_ptr(arg: number): number {
9858         if(!isWasmInitialized) {
9859                 throw new Error("initializeWasm() must be awaited first!");
9860         }
9861         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_clone_ptr(arg);
9862         return nativeResponseValue;
9863 }
9864         // struct LDKCResult_ChannelInfoDecodeErrorZ CResult_ChannelInfoDecodeErrorZ_clone(const struct LDKCResult_ChannelInfoDecodeErrorZ *NONNULL_PTR orig);
9865 /* @internal */
9866 export function CResult_ChannelInfoDecodeErrorZ_clone(orig: number): number {
9867         if(!isWasmInitialized) {
9868                 throw new Error("initializeWasm() must be awaited first!");
9869         }
9870         const nativeResponseValue = wasm.TS_CResult_ChannelInfoDecodeErrorZ_clone(orig);
9871         return nativeResponseValue;
9872 }
9873         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_ok(struct LDKRoutingFees o);
9874 /* @internal */
9875 export function CResult_RoutingFeesDecodeErrorZ_ok(o: number): number {
9876         if(!isWasmInitialized) {
9877                 throw new Error("initializeWasm() must be awaited first!");
9878         }
9879         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_ok(o);
9880         return nativeResponseValue;
9881 }
9882         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_err(struct LDKDecodeError e);
9883 /* @internal */
9884 export function CResult_RoutingFeesDecodeErrorZ_err(e: number): number {
9885         if(!isWasmInitialized) {
9886                 throw new Error("initializeWasm() must be awaited first!");
9887         }
9888         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_err(e);
9889         return nativeResponseValue;
9890 }
9891         // bool CResult_RoutingFeesDecodeErrorZ_is_ok(const struct LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR o);
9892 /* @internal */
9893 export function CResult_RoutingFeesDecodeErrorZ_is_ok(o: number): boolean {
9894         if(!isWasmInitialized) {
9895                 throw new Error("initializeWasm() must be awaited first!");
9896         }
9897         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_is_ok(o);
9898         return nativeResponseValue;
9899 }
9900         // void CResult_RoutingFeesDecodeErrorZ_free(struct LDKCResult_RoutingFeesDecodeErrorZ _res);
9901 /* @internal */
9902 export function CResult_RoutingFeesDecodeErrorZ_free(_res: number): void {
9903         if(!isWasmInitialized) {
9904                 throw new Error("initializeWasm() must be awaited first!");
9905         }
9906         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_free(_res);
9907         // debug statements here
9908 }
9909         // uintptr_t CResult_RoutingFeesDecodeErrorZ_clone_ptr(LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR arg);
9910 /* @internal */
9911 export function CResult_RoutingFeesDecodeErrorZ_clone_ptr(arg: number): number {
9912         if(!isWasmInitialized) {
9913                 throw new Error("initializeWasm() must be awaited first!");
9914         }
9915         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_clone_ptr(arg);
9916         return nativeResponseValue;
9917 }
9918         // struct LDKCResult_RoutingFeesDecodeErrorZ CResult_RoutingFeesDecodeErrorZ_clone(const struct LDKCResult_RoutingFeesDecodeErrorZ *NONNULL_PTR orig);
9919 /* @internal */
9920 export function CResult_RoutingFeesDecodeErrorZ_clone(orig: number): number {
9921         if(!isWasmInitialized) {
9922                 throw new Error("initializeWasm() must be awaited first!");
9923         }
9924         const nativeResponseValue = wasm.TS_CResult_RoutingFeesDecodeErrorZ_clone(orig);
9925         return nativeResponseValue;
9926 }
9927         // void CVec_NetAddressZ_free(struct LDKCVec_NetAddressZ _res);
9928 /* @internal */
9929 export function CVec_NetAddressZ_free(_res: number): void {
9930         if(!isWasmInitialized) {
9931                 throw new Error("initializeWasm() must be awaited first!");
9932         }
9933         const nativeResponseValue = wasm.TS_CVec_NetAddressZ_free(_res);
9934         // debug statements here
9935 }
9936         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_ok(struct LDKNodeAnnouncementInfo o);
9937 /* @internal */
9938 export function CResult_NodeAnnouncementInfoDecodeErrorZ_ok(o: number): number {
9939         if(!isWasmInitialized) {
9940                 throw new Error("initializeWasm() must be awaited first!");
9941         }
9942         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_ok(o);
9943         return nativeResponseValue;
9944 }
9945         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_err(struct LDKDecodeError e);
9946 /* @internal */
9947 export function CResult_NodeAnnouncementInfoDecodeErrorZ_err(e: number): number {
9948         if(!isWasmInitialized) {
9949                 throw new Error("initializeWasm() must be awaited first!");
9950         }
9951         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_err(e);
9952         return nativeResponseValue;
9953 }
9954         // bool CResult_NodeAnnouncementInfoDecodeErrorZ_is_ok(const struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR o);
9955 /* @internal */
9956 export function CResult_NodeAnnouncementInfoDecodeErrorZ_is_ok(o: number): boolean {
9957         if(!isWasmInitialized) {
9958                 throw new Error("initializeWasm() must be awaited first!");
9959         }
9960         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_is_ok(o);
9961         return nativeResponseValue;
9962 }
9963         // void CResult_NodeAnnouncementInfoDecodeErrorZ_free(struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ _res);
9964 /* @internal */
9965 export function CResult_NodeAnnouncementInfoDecodeErrorZ_free(_res: number): void {
9966         if(!isWasmInitialized) {
9967                 throw new Error("initializeWasm() must be awaited first!");
9968         }
9969         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_free(_res);
9970         // debug statements here
9971 }
9972         // uintptr_t CResult_NodeAnnouncementInfoDecodeErrorZ_clone_ptr(LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR arg);
9973 /* @internal */
9974 export function CResult_NodeAnnouncementInfoDecodeErrorZ_clone_ptr(arg: number): number {
9975         if(!isWasmInitialized) {
9976                 throw new Error("initializeWasm() must be awaited first!");
9977         }
9978         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_clone_ptr(arg);
9979         return nativeResponseValue;
9980 }
9981         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ CResult_NodeAnnouncementInfoDecodeErrorZ_clone(const struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ *NONNULL_PTR orig);
9982 /* @internal */
9983 export function CResult_NodeAnnouncementInfoDecodeErrorZ_clone(orig: number): number {
9984         if(!isWasmInitialized) {
9985                 throw new Error("initializeWasm() must be awaited first!");
9986         }
9987         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementInfoDecodeErrorZ_clone(orig);
9988         return nativeResponseValue;
9989 }
9990         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_ok(struct LDKNodeAlias o);
9991 /* @internal */
9992 export function CResult_NodeAliasDecodeErrorZ_ok(o: number): number {
9993         if(!isWasmInitialized) {
9994                 throw new Error("initializeWasm() must be awaited first!");
9995         }
9996         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_ok(o);
9997         return nativeResponseValue;
9998 }
9999         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_err(struct LDKDecodeError e);
10000 /* @internal */
10001 export function CResult_NodeAliasDecodeErrorZ_err(e: number): number {
10002         if(!isWasmInitialized) {
10003                 throw new Error("initializeWasm() must be awaited first!");
10004         }
10005         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_err(e);
10006         return nativeResponseValue;
10007 }
10008         // bool CResult_NodeAliasDecodeErrorZ_is_ok(const struct LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR o);
10009 /* @internal */
10010 export function CResult_NodeAliasDecodeErrorZ_is_ok(o: number): boolean {
10011         if(!isWasmInitialized) {
10012                 throw new Error("initializeWasm() must be awaited first!");
10013         }
10014         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_is_ok(o);
10015         return nativeResponseValue;
10016 }
10017         // void CResult_NodeAliasDecodeErrorZ_free(struct LDKCResult_NodeAliasDecodeErrorZ _res);
10018 /* @internal */
10019 export function CResult_NodeAliasDecodeErrorZ_free(_res: number): void {
10020         if(!isWasmInitialized) {
10021                 throw new Error("initializeWasm() must be awaited first!");
10022         }
10023         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_free(_res);
10024         // debug statements here
10025 }
10026         // uintptr_t CResult_NodeAliasDecodeErrorZ_clone_ptr(LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR arg);
10027 /* @internal */
10028 export function CResult_NodeAliasDecodeErrorZ_clone_ptr(arg: number): number {
10029         if(!isWasmInitialized) {
10030                 throw new Error("initializeWasm() must be awaited first!");
10031         }
10032         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_clone_ptr(arg);
10033         return nativeResponseValue;
10034 }
10035         // struct LDKCResult_NodeAliasDecodeErrorZ CResult_NodeAliasDecodeErrorZ_clone(const struct LDKCResult_NodeAliasDecodeErrorZ *NONNULL_PTR orig);
10036 /* @internal */
10037 export function CResult_NodeAliasDecodeErrorZ_clone(orig: number): number {
10038         if(!isWasmInitialized) {
10039                 throw new Error("initializeWasm() must be awaited first!");
10040         }
10041         const nativeResponseValue = wasm.TS_CResult_NodeAliasDecodeErrorZ_clone(orig);
10042         return nativeResponseValue;
10043 }
10044         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_ok(struct LDKNodeInfo o);
10045 /* @internal */
10046 export function CResult_NodeInfoDecodeErrorZ_ok(o: number): number {
10047         if(!isWasmInitialized) {
10048                 throw new Error("initializeWasm() must be awaited first!");
10049         }
10050         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_ok(o);
10051         return nativeResponseValue;
10052 }
10053         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_err(struct LDKDecodeError e);
10054 /* @internal */
10055 export function CResult_NodeInfoDecodeErrorZ_err(e: number): number {
10056         if(!isWasmInitialized) {
10057                 throw new Error("initializeWasm() must be awaited first!");
10058         }
10059         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_err(e);
10060         return nativeResponseValue;
10061 }
10062         // bool CResult_NodeInfoDecodeErrorZ_is_ok(const struct LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR o);
10063 /* @internal */
10064 export function CResult_NodeInfoDecodeErrorZ_is_ok(o: number): boolean {
10065         if(!isWasmInitialized) {
10066                 throw new Error("initializeWasm() must be awaited first!");
10067         }
10068         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_is_ok(o);
10069         return nativeResponseValue;
10070 }
10071         // void CResult_NodeInfoDecodeErrorZ_free(struct LDKCResult_NodeInfoDecodeErrorZ _res);
10072 /* @internal */
10073 export function CResult_NodeInfoDecodeErrorZ_free(_res: number): void {
10074         if(!isWasmInitialized) {
10075                 throw new Error("initializeWasm() must be awaited first!");
10076         }
10077         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_free(_res);
10078         // debug statements here
10079 }
10080         // uintptr_t CResult_NodeInfoDecodeErrorZ_clone_ptr(LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR arg);
10081 /* @internal */
10082 export function CResult_NodeInfoDecodeErrorZ_clone_ptr(arg: number): number {
10083         if(!isWasmInitialized) {
10084                 throw new Error("initializeWasm() must be awaited first!");
10085         }
10086         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_clone_ptr(arg);
10087         return nativeResponseValue;
10088 }
10089         // struct LDKCResult_NodeInfoDecodeErrorZ CResult_NodeInfoDecodeErrorZ_clone(const struct LDKCResult_NodeInfoDecodeErrorZ *NONNULL_PTR orig);
10090 /* @internal */
10091 export function CResult_NodeInfoDecodeErrorZ_clone(orig: number): number {
10092         if(!isWasmInitialized) {
10093                 throw new Error("initializeWasm() must be awaited first!");
10094         }
10095         const nativeResponseValue = wasm.TS_CResult_NodeInfoDecodeErrorZ_clone(orig);
10096         return nativeResponseValue;
10097 }
10098         // struct LDKCResult_NetworkGraphDecodeErrorZ CResult_NetworkGraphDecodeErrorZ_ok(struct LDKNetworkGraph o);
10099 /* @internal */
10100 export function CResult_NetworkGraphDecodeErrorZ_ok(o: number): number {
10101         if(!isWasmInitialized) {
10102                 throw new Error("initializeWasm() must be awaited first!");
10103         }
10104         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_ok(o);
10105         return nativeResponseValue;
10106 }
10107         // struct LDKCResult_NetworkGraphDecodeErrorZ CResult_NetworkGraphDecodeErrorZ_err(struct LDKDecodeError e);
10108 /* @internal */
10109 export function CResult_NetworkGraphDecodeErrorZ_err(e: number): number {
10110         if(!isWasmInitialized) {
10111                 throw new Error("initializeWasm() must be awaited first!");
10112         }
10113         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_err(e);
10114         return nativeResponseValue;
10115 }
10116         // bool CResult_NetworkGraphDecodeErrorZ_is_ok(const struct LDKCResult_NetworkGraphDecodeErrorZ *NONNULL_PTR o);
10117 /* @internal */
10118 export function CResult_NetworkGraphDecodeErrorZ_is_ok(o: number): boolean {
10119         if(!isWasmInitialized) {
10120                 throw new Error("initializeWasm() must be awaited first!");
10121         }
10122         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_is_ok(o);
10123         return nativeResponseValue;
10124 }
10125         // void CResult_NetworkGraphDecodeErrorZ_free(struct LDKCResult_NetworkGraphDecodeErrorZ _res);
10126 /* @internal */
10127 export function CResult_NetworkGraphDecodeErrorZ_free(_res: number): void {
10128         if(!isWasmInitialized) {
10129                 throw new Error("initializeWasm() must be awaited first!");
10130         }
10131         const nativeResponseValue = wasm.TS_CResult_NetworkGraphDecodeErrorZ_free(_res);
10132         // debug statements here
10133 }
10134         // struct LDKCOption_CVec_NetAddressZZ COption_CVec_NetAddressZZ_some(struct LDKCVec_NetAddressZ o);
10135 /* @internal */
10136 export function COption_CVec_NetAddressZZ_some(o: number): number {
10137         if(!isWasmInitialized) {
10138                 throw new Error("initializeWasm() must be awaited first!");
10139         }
10140         const nativeResponseValue = wasm.TS_COption_CVec_NetAddressZZ_some(o);
10141         return nativeResponseValue;
10142 }
10143         // struct LDKCOption_CVec_NetAddressZZ COption_CVec_NetAddressZZ_none(void);
10144 /* @internal */
10145 export function COption_CVec_NetAddressZZ_none(): number {
10146         if(!isWasmInitialized) {
10147                 throw new Error("initializeWasm() must be awaited first!");
10148         }
10149         const nativeResponseValue = wasm.TS_COption_CVec_NetAddressZZ_none();
10150         return nativeResponseValue;
10151 }
10152         // void COption_CVec_NetAddressZZ_free(struct LDKCOption_CVec_NetAddressZZ _res);
10153 /* @internal */
10154 export function COption_CVec_NetAddressZZ_free(_res: number): void {
10155         if(!isWasmInitialized) {
10156                 throw new Error("initializeWasm() must be awaited first!");
10157         }
10158         const nativeResponseValue = wasm.TS_COption_CVec_NetAddressZZ_free(_res);
10159         // debug statements here
10160 }
10161         // uintptr_t COption_CVec_NetAddressZZ_clone_ptr(LDKCOption_CVec_NetAddressZZ *NONNULL_PTR arg);
10162 /* @internal */
10163 export function COption_CVec_NetAddressZZ_clone_ptr(arg: number): number {
10164         if(!isWasmInitialized) {
10165                 throw new Error("initializeWasm() must be awaited first!");
10166         }
10167         const nativeResponseValue = wasm.TS_COption_CVec_NetAddressZZ_clone_ptr(arg);
10168         return nativeResponseValue;
10169 }
10170         // struct LDKCOption_CVec_NetAddressZZ COption_CVec_NetAddressZZ_clone(const struct LDKCOption_CVec_NetAddressZZ *NONNULL_PTR orig);
10171 /* @internal */
10172 export function COption_CVec_NetAddressZZ_clone(orig: number): number {
10173         if(!isWasmInitialized) {
10174                 throw new Error("initializeWasm() must be awaited first!");
10175         }
10176         const nativeResponseValue = wasm.TS_COption_CVec_NetAddressZZ_clone(orig);
10177         return nativeResponseValue;
10178 }
10179         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_ok(struct LDKDelayedPaymentOutputDescriptor o);
10180 /* @internal */
10181 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_ok(o: number): number {
10182         if(!isWasmInitialized) {
10183                 throw new Error("initializeWasm() must be awaited first!");
10184         }
10185         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_ok(o);
10186         return nativeResponseValue;
10187 }
10188         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
10189 /* @internal */
10190 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_err(e: number): number {
10191         if(!isWasmInitialized) {
10192                 throw new Error("initializeWasm() must be awaited first!");
10193         }
10194         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_err(e);
10195         return nativeResponseValue;
10196 }
10197         // bool CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
10198 /* @internal */
10199 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_is_ok(o: number): boolean {
10200         if(!isWasmInitialized) {
10201                 throw new Error("initializeWasm() must be awaited first!");
10202         }
10203         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_is_ok(o);
10204         return nativeResponseValue;
10205 }
10206         // void CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_free(struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ _res);
10207 /* @internal */
10208 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_free(_res: number): void {
10209         if(!isWasmInitialized) {
10210                 throw new Error("initializeWasm() must be awaited first!");
10211         }
10212         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_free(_res);
10213         // debug statements here
10214 }
10215         // uintptr_t CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
10216 /* @internal */
10217 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone_ptr(arg: number): number {
10218         if(!isWasmInitialized) {
10219                 throw new Error("initializeWasm() must be awaited first!");
10220         }
10221         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone_ptr(arg);
10222         return nativeResponseValue;
10223 }
10224         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
10225 /* @internal */
10226 export function CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone(orig: number): number {
10227         if(!isWasmInitialized) {
10228                 throw new Error("initializeWasm() must be awaited first!");
10229         }
10230         const nativeResponseValue = wasm.TS_CResult_DelayedPaymentOutputDescriptorDecodeErrorZ_clone(orig);
10231         return nativeResponseValue;
10232 }
10233         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_ok(struct LDKStaticPaymentOutputDescriptor o);
10234 /* @internal */
10235 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_ok(o: number): number {
10236         if(!isWasmInitialized) {
10237                 throw new Error("initializeWasm() must be awaited first!");
10238         }
10239         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_ok(o);
10240         return nativeResponseValue;
10241 }
10242         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
10243 /* @internal */
10244 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_err(e: number): number {
10245         if(!isWasmInitialized) {
10246                 throw new Error("initializeWasm() must be awaited first!");
10247         }
10248         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_err(e);
10249         return nativeResponseValue;
10250 }
10251         // bool CResult_StaticPaymentOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
10252 /* @internal */
10253 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_is_ok(o: number): boolean {
10254         if(!isWasmInitialized) {
10255                 throw new Error("initializeWasm() must be awaited first!");
10256         }
10257         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_is_ok(o);
10258         return nativeResponseValue;
10259 }
10260         // void CResult_StaticPaymentOutputDescriptorDecodeErrorZ_free(struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ _res);
10261 /* @internal */
10262 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_free(_res: number): void {
10263         if(!isWasmInitialized) {
10264                 throw new Error("initializeWasm() must be awaited first!");
10265         }
10266         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_free(_res);
10267         // debug statements here
10268 }
10269         // uintptr_t CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
10270 /* @internal */
10271 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone_ptr(arg: number): number {
10272         if(!isWasmInitialized) {
10273                 throw new Error("initializeWasm() must be awaited first!");
10274         }
10275         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone_ptr(arg);
10276         return nativeResponseValue;
10277 }
10278         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
10279 /* @internal */
10280 export function CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone(orig: number): number {
10281         if(!isWasmInitialized) {
10282                 throw new Error("initializeWasm() must be awaited first!");
10283         }
10284         const nativeResponseValue = wasm.TS_CResult_StaticPaymentOutputDescriptorDecodeErrorZ_clone(orig);
10285         return nativeResponseValue;
10286 }
10287         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_ok(struct LDKSpendableOutputDescriptor o);
10288 /* @internal */
10289 export function CResult_SpendableOutputDescriptorDecodeErrorZ_ok(o: number): number {
10290         if(!isWasmInitialized) {
10291                 throw new Error("initializeWasm() must be awaited first!");
10292         }
10293         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_ok(o);
10294         return nativeResponseValue;
10295 }
10296         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_err(struct LDKDecodeError e);
10297 /* @internal */
10298 export function CResult_SpendableOutputDescriptorDecodeErrorZ_err(e: number): number {
10299         if(!isWasmInitialized) {
10300                 throw new Error("initializeWasm() must be awaited first!");
10301         }
10302         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_err(e);
10303         return nativeResponseValue;
10304 }
10305         // bool CResult_SpendableOutputDescriptorDecodeErrorZ_is_ok(const struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR o);
10306 /* @internal */
10307 export function CResult_SpendableOutputDescriptorDecodeErrorZ_is_ok(o: number): boolean {
10308         if(!isWasmInitialized) {
10309                 throw new Error("initializeWasm() must be awaited first!");
10310         }
10311         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_is_ok(o);
10312         return nativeResponseValue;
10313 }
10314         // void CResult_SpendableOutputDescriptorDecodeErrorZ_free(struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ _res);
10315 /* @internal */
10316 export function CResult_SpendableOutputDescriptorDecodeErrorZ_free(_res: number): void {
10317         if(!isWasmInitialized) {
10318                 throw new Error("initializeWasm() must be awaited first!");
10319         }
10320         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_free(_res);
10321         // debug statements here
10322 }
10323         // uintptr_t CResult_SpendableOutputDescriptorDecodeErrorZ_clone_ptr(LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR arg);
10324 /* @internal */
10325 export function CResult_SpendableOutputDescriptorDecodeErrorZ_clone_ptr(arg: number): number {
10326         if(!isWasmInitialized) {
10327                 throw new Error("initializeWasm() must be awaited first!");
10328         }
10329         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_clone_ptr(arg);
10330         return nativeResponseValue;
10331 }
10332         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ CResult_SpendableOutputDescriptorDecodeErrorZ_clone(const struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ *NONNULL_PTR orig);
10333 /* @internal */
10334 export function CResult_SpendableOutputDescriptorDecodeErrorZ_clone(orig: number): number {
10335         if(!isWasmInitialized) {
10336                 throw new Error("initializeWasm() must be awaited first!");
10337         }
10338         const nativeResponseValue = wasm.TS_CResult_SpendableOutputDescriptorDecodeErrorZ_clone(orig);
10339         return nativeResponseValue;
10340 }
10341         // void CVec_PaymentPreimageZ_free(struct LDKCVec_PaymentPreimageZ _res);
10342 /* @internal */
10343 export function CVec_PaymentPreimageZ_free(_res: number): void {
10344         if(!isWasmInitialized) {
10345                 throw new Error("initializeWasm() must be awaited first!");
10346         }
10347         const nativeResponseValue = wasm.TS_CVec_PaymentPreimageZ_free(_res);
10348         // debug statements here
10349 }
10350         // uintptr_t C2Tuple_SignatureCVec_SignatureZZ_clone_ptr(LDKC2Tuple_SignatureCVec_SignatureZZ *NONNULL_PTR arg);
10351 /* @internal */
10352 export function C2Tuple_SignatureCVec_SignatureZZ_clone_ptr(arg: number): number {
10353         if(!isWasmInitialized) {
10354                 throw new Error("initializeWasm() must be awaited first!");
10355         }
10356         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_clone_ptr(arg);
10357         return nativeResponseValue;
10358 }
10359         // struct LDKC2Tuple_SignatureCVec_SignatureZZ C2Tuple_SignatureCVec_SignatureZZ_clone(const struct LDKC2Tuple_SignatureCVec_SignatureZZ *NONNULL_PTR orig);
10360 /* @internal */
10361 export function C2Tuple_SignatureCVec_SignatureZZ_clone(orig: number): number {
10362         if(!isWasmInitialized) {
10363                 throw new Error("initializeWasm() must be awaited first!");
10364         }
10365         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_clone(orig);
10366         return nativeResponseValue;
10367 }
10368         // struct LDKC2Tuple_SignatureCVec_SignatureZZ C2Tuple_SignatureCVec_SignatureZZ_new(struct LDKSignature a, struct LDKCVec_SignatureZ b);
10369 /* @internal */
10370 export function C2Tuple_SignatureCVec_SignatureZZ_new(a: number, b: number): number {
10371         if(!isWasmInitialized) {
10372                 throw new Error("initializeWasm() must be awaited first!");
10373         }
10374         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_new(a, b);
10375         return nativeResponseValue;
10376 }
10377         // void C2Tuple_SignatureCVec_SignatureZZ_free(struct LDKC2Tuple_SignatureCVec_SignatureZZ _res);
10378 /* @internal */
10379 export function C2Tuple_SignatureCVec_SignatureZZ_free(_res: number): void {
10380         if(!isWasmInitialized) {
10381                 throw new Error("initializeWasm() must be awaited first!");
10382         }
10383         const nativeResponseValue = wasm.TS_C2Tuple_SignatureCVec_SignatureZZ_free(_res);
10384         // debug statements here
10385 }
10386         // struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok(struct LDKC2Tuple_SignatureCVec_SignatureZZ o);
10387 /* @internal */
10388 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok(o: number): number {
10389         if(!isWasmInitialized) {
10390                 throw new Error("initializeWasm() must be awaited first!");
10391         }
10392         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_ok(o);
10393         return nativeResponseValue;
10394 }
10395         // struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err(void);
10396 /* @internal */
10397 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err(): number {
10398         if(!isWasmInitialized) {
10399                 throw new Error("initializeWasm() must be awaited first!");
10400         }
10401         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_err();
10402         return nativeResponseValue;
10403 }
10404         // bool CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_is_ok(const struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ *NONNULL_PTR o);
10405 /* @internal */
10406 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_is_ok(o: number): boolean {
10407         if(!isWasmInitialized) {
10408                 throw new Error("initializeWasm() must be awaited first!");
10409         }
10410         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_is_ok(o);
10411         return nativeResponseValue;
10412 }
10413         // void CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free(struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ _res);
10414 /* @internal */
10415 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free(_res: number): void {
10416         if(!isWasmInitialized) {
10417                 throw new Error("initializeWasm() must be awaited first!");
10418         }
10419         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_free(_res);
10420         // debug statements here
10421 }
10422         // uintptr_t CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone_ptr(LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ *NONNULL_PTR arg);
10423 /* @internal */
10424 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone_ptr(arg: number): number {
10425         if(!isWasmInitialized) {
10426                 throw new Error("initializeWasm() must be awaited first!");
10427         }
10428         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone_ptr(arg);
10429         return nativeResponseValue;
10430 }
10431         // struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone(const struct LDKCResult_C2Tuple_SignatureCVec_SignatureZZNoneZ *NONNULL_PTR orig);
10432 /* @internal */
10433 export function CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone(orig: number): number {
10434         if(!isWasmInitialized) {
10435                 throw new Error("initializeWasm() must be awaited first!");
10436         }
10437         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureCVec_SignatureZZNoneZ_clone(orig);
10438         return nativeResponseValue;
10439 }
10440         // struct LDKCResult_SignatureNoneZ CResult_SignatureNoneZ_ok(struct LDKSignature o);
10441 /* @internal */
10442 export function CResult_SignatureNoneZ_ok(o: number): number {
10443         if(!isWasmInitialized) {
10444                 throw new Error("initializeWasm() must be awaited first!");
10445         }
10446         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_ok(o);
10447         return nativeResponseValue;
10448 }
10449         // struct LDKCResult_SignatureNoneZ CResult_SignatureNoneZ_err(void);
10450 /* @internal */
10451 export function CResult_SignatureNoneZ_err(): number {
10452         if(!isWasmInitialized) {
10453                 throw new Error("initializeWasm() must be awaited first!");
10454         }
10455         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_err();
10456         return nativeResponseValue;
10457 }
10458         // bool CResult_SignatureNoneZ_is_ok(const struct LDKCResult_SignatureNoneZ *NONNULL_PTR o);
10459 /* @internal */
10460 export function CResult_SignatureNoneZ_is_ok(o: number): boolean {
10461         if(!isWasmInitialized) {
10462                 throw new Error("initializeWasm() must be awaited first!");
10463         }
10464         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_is_ok(o);
10465         return nativeResponseValue;
10466 }
10467         // void CResult_SignatureNoneZ_free(struct LDKCResult_SignatureNoneZ _res);
10468 /* @internal */
10469 export function CResult_SignatureNoneZ_free(_res: number): void {
10470         if(!isWasmInitialized) {
10471                 throw new Error("initializeWasm() must be awaited first!");
10472         }
10473         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_free(_res);
10474         // debug statements here
10475 }
10476         // uintptr_t CResult_SignatureNoneZ_clone_ptr(LDKCResult_SignatureNoneZ *NONNULL_PTR arg);
10477 /* @internal */
10478 export function CResult_SignatureNoneZ_clone_ptr(arg: number): number {
10479         if(!isWasmInitialized) {
10480                 throw new Error("initializeWasm() must be awaited first!");
10481         }
10482         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_clone_ptr(arg);
10483         return nativeResponseValue;
10484 }
10485         // struct LDKCResult_SignatureNoneZ CResult_SignatureNoneZ_clone(const struct LDKCResult_SignatureNoneZ *NONNULL_PTR orig);
10486 /* @internal */
10487 export function CResult_SignatureNoneZ_clone(orig: number): number {
10488         if(!isWasmInitialized) {
10489                 throw new Error("initializeWasm() must be awaited first!");
10490         }
10491         const nativeResponseValue = wasm.TS_CResult_SignatureNoneZ_clone(orig);
10492         return nativeResponseValue;
10493 }
10494         // uintptr_t C2Tuple_SignatureSignatureZ_clone_ptr(LDKC2Tuple_SignatureSignatureZ *NONNULL_PTR arg);
10495 /* @internal */
10496 export function C2Tuple_SignatureSignatureZ_clone_ptr(arg: number): number {
10497         if(!isWasmInitialized) {
10498                 throw new Error("initializeWasm() must be awaited first!");
10499         }
10500         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_clone_ptr(arg);
10501         return nativeResponseValue;
10502 }
10503         // struct LDKC2Tuple_SignatureSignatureZ C2Tuple_SignatureSignatureZ_clone(const struct LDKC2Tuple_SignatureSignatureZ *NONNULL_PTR orig);
10504 /* @internal */
10505 export function C2Tuple_SignatureSignatureZ_clone(orig: number): number {
10506         if(!isWasmInitialized) {
10507                 throw new Error("initializeWasm() must be awaited first!");
10508         }
10509         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_clone(orig);
10510         return nativeResponseValue;
10511 }
10512         // struct LDKC2Tuple_SignatureSignatureZ C2Tuple_SignatureSignatureZ_new(struct LDKSignature a, struct LDKSignature b);
10513 /* @internal */
10514 export function C2Tuple_SignatureSignatureZ_new(a: number, b: number): number {
10515         if(!isWasmInitialized) {
10516                 throw new Error("initializeWasm() must be awaited first!");
10517         }
10518         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_new(a, b);
10519         return nativeResponseValue;
10520 }
10521         // void C2Tuple_SignatureSignatureZ_free(struct LDKC2Tuple_SignatureSignatureZ _res);
10522 /* @internal */
10523 export function C2Tuple_SignatureSignatureZ_free(_res: number): void {
10524         if(!isWasmInitialized) {
10525                 throw new Error("initializeWasm() must be awaited first!");
10526         }
10527         const nativeResponseValue = wasm.TS_C2Tuple_SignatureSignatureZ_free(_res);
10528         // debug statements here
10529 }
10530         // struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ CResult_C2Tuple_SignatureSignatureZNoneZ_ok(struct LDKC2Tuple_SignatureSignatureZ o);
10531 /* @internal */
10532 export function CResult_C2Tuple_SignatureSignatureZNoneZ_ok(o: number): number {
10533         if(!isWasmInitialized) {
10534                 throw new Error("initializeWasm() must be awaited first!");
10535         }
10536         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_ok(o);
10537         return nativeResponseValue;
10538 }
10539         // struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ CResult_C2Tuple_SignatureSignatureZNoneZ_err(void);
10540 /* @internal */
10541 export function CResult_C2Tuple_SignatureSignatureZNoneZ_err(): number {
10542         if(!isWasmInitialized) {
10543                 throw new Error("initializeWasm() must be awaited first!");
10544         }
10545         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_err();
10546         return nativeResponseValue;
10547 }
10548         // bool CResult_C2Tuple_SignatureSignatureZNoneZ_is_ok(const struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ *NONNULL_PTR o);
10549 /* @internal */
10550 export function CResult_C2Tuple_SignatureSignatureZNoneZ_is_ok(o: number): boolean {
10551         if(!isWasmInitialized) {
10552                 throw new Error("initializeWasm() must be awaited first!");
10553         }
10554         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_is_ok(o);
10555         return nativeResponseValue;
10556 }
10557         // void CResult_C2Tuple_SignatureSignatureZNoneZ_free(struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ _res);
10558 /* @internal */
10559 export function CResult_C2Tuple_SignatureSignatureZNoneZ_free(_res: number): void {
10560         if(!isWasmInitialized) {
10561                 throw new Error("initializeWasm() must be awaited first!");
10562         }
10563         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_free(_res);
10564         // debug statements here
10565 }
10566         // uintptr_t CResult_C2Tuple_SignatureSignatureZNoneZ_clone_ptr(LDKCResult_C2Tuple_SignatureSignatureZNoneZ *NONNULL_PTR arg);
10567 /* @internal */
10568 export function CResult_C2Tuple_SignatureSignatureZNoneZ_clone_ptr(arg: number): number {
10569         if(!isWasmInitialized) {
10570                 throw new Error("initializeWasm() must be awaited first!");
10571         }
10572         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_clone_ptr(arg);
10573         return nativeResponseValue;
10574 }
10575         // struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ CResult_C2Tuple_SignatureSignatureZNoneZ_clone(const struct LDKCResult_C2Tuple_SignatureSignatureZNoneZ *NONNULL_PTR orig);
10576 /* @internal */
10577 export function CResult_C2Tuple_SignatureSignatureZNoneZ_clone(orig: number): number {
10578         if(!isWasmInitialized) {
10579                 throw new Error("initializeWasm() must be awaited first!");
10580         }
10581         const nativeResponseValue = wasm.TS_CResult_C2Tuple_SignatureSignatureZNoneZ_clone(orig);
10582         return nativeResponseValue;
10583 }
10584         // struct LDKCResult_SecretKeyNoneZ CResult_SecretKeyNoneZ_ok(struct LDKSecretKey o);
10585 /* @internal */
10586 export function CResult_SecretKeyNoneZ_ok(o: number): number {
10587         if(!isWasmInitialized) {
10588                 throw new Error("initializeWasm() must be awaited first!");
10589         }
10590         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_ok(o);
10591         return nativeResponseValue;
10592 }
10593         // struct LDKCResult_SecretKeyNoneZ CResult_SecretKeyNoneZ_err(void);
10594 /* @internal */
10595 export function CResult_SecretKeyNoneZ_err(): number {
10596         if(!isWasmInitialized) {
10597                 throw new Error("initializeWasm() must be awaited first!");
10598         }
10599         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_err();
10600         return nativeResponseValue;
10601 }
10602         // bool CResult_SecretKeyNoneZ_is_ok(const struct LDKCResult_SecretKeyNoneZ *NONNULL_PTR o);
10603 /* @internal */
10604 export function CResult_SecretKeyNoneZ_is_ok(o: number): boolean {
10605         if(!isWasmInitialized) {
10606                 throw new Error("initializeWasm() must be awaited first!");
10607         }
10608         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_is_ok(o);
10609         return nativeResponseValue;
10610 }
10611         // void CResult_SecretKeyNoneZ_free(struct LDKCResult_SecretKeyNoneZ _res);
10612 /* @internal */
10613 export function CResult_SecretKeyNoneZ_free(_res: number): void {
10614         if(!isWasmInitialized) {
10615                 throw new Error("initializeWasm() must be awaited first!");
10616         }
10617         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_free(_res);
10618         // debug statements here
10619 }
10620         // uintptr_t CResult_SecretKeyNoneZ_clone_ptr(LDKCResult_SecretKeyNoneZ *NONNULL_PTR arg);
10621 /* @internal */
10622 export function CResult_SecretKeyNoneZ_clone_ptr(arg: number): number {
10623         if(!isWasmInitialized) {
10624                 throw new Error("initializeWasm() must be awaited first!");
10625         }
10626         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_clone_ptr(arg);
10627         return nativeResponseValue;
10628 }
10629         // struct LDKCResult_SecretKeyNoneZ CResult_SecretKeyNoneZ_clone(const struct LDKCResult_SecretKeyNoneZ *NONNULL_PTR orig);
10630 /* @internal */
10631 export function CResult_SecretKeyNoneZ_clone(orig: number): number {
10632         if(!isWasmInitialized) {
10633                 throw new Error("initializeWasm() must be awaited first!");
10634         }
10635         const nativeResponseValue = wasm.TS_CResult_SecretKeyNoneZ_clone(orig);
10636         return nativeResponseValue;
10637 }
10638         // struct LDKCResult_SignDecodeErrorZ CResult_SignDecodeErrorZ_ok(struct LDKSign o);
10639 /* @internal */
10640 export function CResult_SignDecodeErrorZ_ok(o: number): number {
10641         if(!isWasmInitialized) {
10642                 throw new Error("initializeWasm() must be awaited first!");
10643         }
10644         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_ok(o);
10645         return nativeResponseValue;
10646 }
10647         // struct LDKCResult_SignDecodeErrorZ CResult_SignDecodeErrorZ_err(struct LDKDecodeError e);
10648 /* @internal */
10649 export function CResult_SignDecodeErrorZ_err(e: number): number {
10650         if(!isWasmInitialized) {
10651                 throw new Error("initializeWasm() must be awaited first!");
10652         }
10653         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_err(e);
10654         return nativeResponseValue;
10655 }
10656         // bool CResult_SignDecodeErrorZ_is_ok(const struct LDKCResult_SignDecodeErrorZ *NONNULL_PTR o);
10657 /* @internal */
10658 export function CResult_SignDecodeErrorZ_is_ok(o: number): boolean {
10659         if(!isWasmInitialized) {
10660                 throw new Error("initializeWasm() must be awaited first!");
10661         }
10662         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_is_ok(o);
10663         return nativeResponseValue;
10664 }
10665         // void CResult_SignDecodeErrorZ_free(struct LDKCResult_SignDecodeErrorZ _res);
10666 /* @internal */
10667 export function CResult_SignDecodeErrorZ_free(_res: number): void {
10668         if(!isWasmInitialized) {
10669                 throw new Error("initializeWasm() must be awaited first!");
10670         }
10671         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_free(_res);
10672         // debug statements here
10673 }
10674         // uintptr_t CResult_SignDecodeErrorZ_clone_ptr(LDKCResult_SignDecodeErrorZ *NONNULL_PTR arg);
10675 /* @internal */
10676 export function CResult_SignDecodeErrorZ_clone_ptr(arg: number): number {
10677         if(!isWasmInitialized) {
10678                 throw new Error("initializeWasm() must be awaited first!");
10679         }
10680         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_clone_ptr(arg);
10681         return nativeResponseValue;
10682 }
10683         // struct LDKCResult_SignDecodeErrorZ CResult_SignDecodeErrorZ_clone(const struct LDKCResult_SignDecodeErrorZ *NONNULL_PTR orig);
10684 /* @internal */
10685 export function CResult_SignDecodeErrorZ_clone(orig: number): number {
10686         if(!isWasmInitialized) {
10687                 throw new Error("initializeWasm() must be awaited first!");
10688         }
10689         const nativeResponseValue = wasm.TS_CResult_SignDecodeErrorZ_clone(orig);
10690         return nativeResponseValue;
10691 }
10692         // void CVec_u5Z_free(struct LDKCVec_u5Z _res);
10693 /* @internal */
10694 export function CVec_u5Z_free(_res: number): void {
10695         if(!isWasmInitialized) {
10696                 throw new Error("initializeWasm() must be awaited first!");
10697         }
10698         const nativeResponseValue = wasm.TS_CVec_u5Z_free(_res);
10699         // debug statements here
10700 }
10701         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_ok(struct LDKRecoverableSignature o);
10702 /* @internal */
10703 export function CResult_RecoverableSignatureNoneZ_ok(o: number): number {
10704         if(!isWasmInitialized) {
10705                 throw new Error("initializeWasm() must be awaited first!");
10706         }
10707         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_ok(o);
10708         return nativeResponseValue;
10709 }
10710         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_err(void);
10711 /* @internal */
10712 export function CResult_RecoverableSignatureNoneZ_err(): number {
10713         if(!isWasmInitialized) {
10714                 throw new Error("initializeWasm() must be awaited first!");
10715         }
10716         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_err();
10717         return nativeResponseValue;
10718 }
10719         // bool CResult_RecoverableSignatureNoneZ_is_ok(const struct LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR o);
10720 /* @internal */
10721 export function CResult_RecoverableSignatureNoneZ_is_ok(o: number): boolean {
10722         if(!isWasmInitialized) {
10723                 throw new Error("initializeWasm() must be awaited first!");
10724         }
10725         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_is_ok(o);
10726         return nativeResponseValue;
10727 }
10728         // void CResult_RecoverableSignatureNoneZ_free(struct LDKCResult_RecoverableSignatureNoneZ _res);
10729 /* @internal */
10730 export function CResult_RecoverableSignatureNoneZ_free(_res: number): void {
10731         if(!isWasmInitialized) {
10732                 throw new Error("initializeWasm() must be awaited first!");
10733         }
10734         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_free(_res);
10735         // debug statements here
10736 }
10737         // uintptr_t CResult_RecoverableSignatureNoneZ_clone_ptr(LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR arg);
10738 /* @internal */
10739 export function CResult_RecoverableSignatureNoneZ_clone_ptr(arg: number): number {
10740         if(!isWasmInitialized) {
10741                 throw new Error("initializeWasm() must be awaited first!");
10742         }
10743         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_clone_ptr(arg);
10744         return nativeResponseValue;
10745 }
10746         // struct LDKCResult_RecoverableSignatureNoneZ CResult_RecoverableSignatureNoneZ_clone(const struct LDKCResult_RecoverableSignatureNoneZ *NONNULL_PTR orig);
10747 /* @internal */
10748 export function CResult_RecoverableSignatureNoneZ_clone(orig: number): number {
10749         if(!isWasmInitialized) {
10750                 throw new Error("initializeWasm() must be awaited first!");
10751         }
10752         const nativeResponseValue = wasm.TS_CResult_RecoverableSignatureNoneZ_clone(orig);
10753         return nativeResponseValue;
10754 }
10755         // void CVec_u8Z_free(struct LDKCVec_u8Z _res);
10756 /* @internal */
10757 export function CVec_u8Z_free(_res: number): void {
10758         if(!isWasmInitialized) {
10759                 throw new Error("initializeWasm() must be awaited first!");
10760         }
10761         const nativeResponseValue = wasm.TS_CVec_u8Z_free(_res);
10762         // debug statements here
10763 }
10764         // void CVec_CVec_u8ZZ_free(struct LDKCVec_CVec_u8ZZ _res);
10765 /* @internal */
10766 export function CVec_CVec_u8ZZ_free(_res: number): void {
10767         if(!isWasmInitialized) {
10768                 throw new Error("initializeWasm() must be awaited first!");
10769         }
10770         const nativeResponseValue = wasm.TS_CVec_CVec_u8ZZ_free(_res);
10771         // debug statements here
10772 }
10773         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_ok(struct LDKCVec_CVec_u8ZZ o);
10774 /* @internal */
10775 export function CResult_CVec_CVec_u8ZZNoneZ_ok(o: number): number {
10776         if(!isWasmInitialized) {
10777                 throw new Error("initializeWasm() must be awaited first!");
10778         }
10779         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_ok(o);
10780         return nativeResponseValue;
10781 }
10782         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_err(void);
10783 /* @internal */
10784 export function CResult_CVec_CVec_u8ZZNoneZ_err(): number {
10785         if(!isWasmInitialized) {
10786                 throw new Error("initializeWasm() must be awaited first!");
10787         }
10788         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_err();
10789         return nativeResponseValue;
10790 }
10791         // bool CResult_CVec_CVec_u8ZZNoneZ_is_ok(const struct LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR o);
10792 /* @internal */
10793 export function CResult_CVec_CVec_u8ZZNoneZ_is_ok(o: number): boolean {
10794         if(!isWasmInitialized) {
10795                 throw new Error("initializeWasm() must be awaited first!");
10796         }
10797         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_is_ok(o);
10798         return nativeResponseValue;
10799 }
10800         // void CResult_CVec_CVec_u8ZZNoneZ_free(struct LDKCResult_CVec_CVec_u8ZZNoneZ _res);
10801 /* @internal */
10802 export function CResult_CVec_CVec_u8ZZNoneZ_free(_res: number): void {
10803         if(!isWasmInitialized) {
10804                 throw new Error("initializeWasm() must be awaited first!");
10805         }
10806         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_free(_res);
10807         // debug statements here
10808 }
10809         // uintptr_t CResult_CVec_CVec_u8ZZNoneZ_clone_ptr(LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR arg);
10810 /* @internal */
10811 export function CResult_CVec_CVec_u8ZZNoneZ_clone_ptr(arg: number): number {
10812         if(!isWasmInitialized) {
10813                 throw new Error("initializeWasm() must be awaited first!");
10814         }
10815         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_clone_ptr(arg);
10816         return nativeResponseValue;
10817 }
10818         // struct LDKCResult_CVec_CVec_u8ZZNoneZ CResult_CVec_CVec_u8ZZNoneZ_clone(const struct LDKCResult_CVec_CVec_u8ZZNoneZ *NONNULL_PTR orig);
10819 /* @internal */
10820 export function CResult_CVec_CVec_u8ZZNoneZ_clone(orig: number): number {
10821         if(!isWasmInitialized) {
10822                 throw new Error("initializeWasm() must be awaited first!");
10823         }
10824         const nativeResponseValue = wasm.TS_CResult_CVec_CVec_u8ZZNoneZ_clone(orig);
10825         return nativeResponseValue;
10826 }
10827         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_ok(struct LDKInMemorySigner o);
10828 /* @internal */
10829 export function CResult_InMemorySignerDecodeErrorZ_ok(o: number): number {
10830         if(!isWasmInitialized) {
10831                 throw new Error("initializeWasm() must be awaited first!");
10832         }
10833         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_ok(o);
10834         return nativeResponseValue;
10835 }
10836         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_err(struct LDKDecodeError e);
10837 /* @internal */
10838 export function CResult_InMemorySignerDecodeErrorZ_err(e: number): number {
10839         if(!isWasmInitialized) {
10840                 throw new Error("initializeWasm() must be awaited first!");
10841         }
10842         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_err(e);
10843         return nativeResponseValue;
10844 }
10845         // bool CResult_InMemorySignerDecodeErrorZ_is_ok(const struct LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR o);
10846 /* @internal */
10847 export function CResult_InMemorySignerDecodeErrorZ_is_ok(o: number): boolean {
10848         if(!isWasmInitialized) {
10849                 throw new Error("initializeWasm() must be awaited first!");
10850         }
10851         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_is_ok(o);
10852         return nativeResponseValue;
10853 }
10854         // void CResult_InMemorySignerDecodeErrorZ_free(struct LDKCResult_InMemorySignerDecodeErrorZ _res);
10855 /* @internal */
10856 export function CResult_InMemorySignerDecodeErrorZ_free(_res: number): void {
10857         if(!isWasmInitialized) {
10858                 throw new Error("initializeWasm() must be awaited first!");
10859         }
10860         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_free(_res);
10861         // debug statements here
10862 }
10863         // uintptr_t CResult_InMemorySignerDecodeErrorZ_clone_ptr(LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR arg);
10864 /* @internal */
10865 export function CResult_InMemorySignerDecodeErrorZ_clone_ptr(arg: number): number {
10866         if(!isWasmInitialized) {
10867                 throw new Error("initializeWasm() must be awaited first!");
10868         }
10869         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_clone_ptr(arg);
10870         return nativeResponseValue;
10871 }
10872         // struct LDKCResult_InMemorySignerDecodeErrorZ CResult_InMemorySignerDecodeErrorZ_clone(const struct LDKCResult_InMemorySignerDecodeErrorZ *NONNULL_PTR orig);
10873 /* @internal */
10874 export function CResult_InMemorySignerDecodeErrorZ_clone(orig: number): number {
10875         if(!isWasmInitialized) {
10876                 throw new Error("initializeWasm() must be awaited first!");
10877         }
10878         const nativeResponseValue = wasm.TS_CResult_InMemorySignerDecodeErrorZ_clone(orig);
10879         return nativeResponseValue;
10880 }
10881         // void CVec_TxOutZ_free(struct LDKCVec_TxOutZ _res);
10882 /* @internal */
10883 export function CVec_TxOutZ_free(_res: number): void {
10884         if(!isWasmInitialized) {
10885                 throw new Error("initializeWasm() must be awaited first!");
10886         }
10887         const nativeResponseValue = wasm.TS_CVec_TxOutZ_free(_res);
10888         // debug statements here
10889 }
10890         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_ok(struct LDKTransaction o);
10891 /* @internal */
10892 export function CResult_TransactionNoneZ_ok(o: number): number {
10893         if(!isWasmInitialized) {
10894                 throw new Error("initializeWasm() must be awaited first!");
10895         }
10896         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_ok(o);
10897         return nativeResponseValue;
10898 }
10899         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_err(void);
10900 /* @internal */
10901 export function CResult_TransactionNoneZ_err(): number {
10902         if(!isWasmInitialized) {
10903                 throw new Error("initializeWasm() must be awaited first!");
10904         }
10905         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_err();
10906         return nativeResponseValue;
10907 }
10908         // bool CResult_TransactionNoneZ_is_ok(const struct LDKCResult_TransactionNoneZ *NONNULL_PTR o);
10909 /* @internal */
10910 export function CResult_TransactionNoneZ_is_ok(o: number): boolean {
10911         if(!isWasmInitialized) {
10912                 throw new Error("initializeWasm() must be awaited first!");
10913         }
10914         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_is_ok(o);
10915         return nativeResponseValue;
10916 }
10917         // void CResult_TransactionNoneZ_free(struct LDKCResult_TransactionNoneZ _res);
10918 /* @internal */
10919 export function CResult_TransactionNoneZ_free(_res: number): void {
10920         if(!isWasmInitialized) {
10921                 throw new Error("initializeWasm() must be awaited first!");
10922         }
10923         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_free(_res);
10924         // debug statements here
10925 }
10926         // uintptr_t CResult_TransactionNoneZ_clone_ptr(LDKCResult_TransactionNoneZ *NONNULL_PTR arg);
10927 /* @internal */
10928 export function CResult_TransactionNoneZ_clone_ptr(arg: number): number {
10929         if(!isWasmInitialized) {
10930                 throw new Error("initializeWasm() must be awaited first!");
10931         }
10932         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_clone_ptr(arg);
10933         return nativeResponseValue;
10934 }
10935         // struct LDKCResult_TransactionNoneZ CResult_TransactionNoneZ_clone(const struct LDKCResult_TransactionNoneZ *NONNULL_PTR orig);
10936 /* @internal */
10937 export function CResult_TransactionNoneZ_clone(orig: number): number {
10938         if(!isWasmInitialized) {
10939                 throw new Error("initializeWasm() must be awaited first!");
10940         }
10941         const nativeResponseValue = wasm.TS_CResult_TransactionNoneZ_clone(orig);
10942         return nativeResponseValue;
10943 }
10944         // struct LDKCOption_u16Z COption_u16Z_some(uint16_t o);
10945 /* @internal */
10946 export function COption_u16Z_some(o: number): number {
10947         if(!isWasmInitialized) {
10948                 throw new Error("initializeWasm() must be awaited first!");
10949         }
10950         const nativeResponseValue = wasm.TS_COption_u16Z_some(o);
10951         return nativeResponseValue;
10952 }
10953         // struct LDKCOption_u16Z COption_u16Z_none(void);
10954 /* @internal */
10955 export function COption_u16Z_none(): number {
10956         if(!isWasmInitialized) {
10957                 throw new Error("initializeWasm() must be awaited first!");
10958         }
10959         const nativeResponseValue = wasm.TS_COption_u16Z_none();
10960         return nativeResponseValue;
10961 }
10962         // void COption_u16Z_free(struct LDKCOption_u16Z _res);
10963 /* @internal */
10964 export function COption_u16Z_free(_res: number): void {
10965         if(!isWasmInitialized) {
10966                 throw new Error("initializeWasm() must be awaited first!");
10967         }
10968         const nativeResponseValue = wasm.TS_COption_u16Z_free(_res);
10969         // debug statements here
10970 }
10971         // uintptr_t COption_u16Z_clone_ptr(LDKCOption_u16Z *NONNULL_PTR arg);
10972 /* @internal */
10973 export function COption_u16Z_clone_ptr(arg: number): number {
10974         if(!isWasmInitialized) {
10975                 throw new Error("initializeWasm() must be awaited first!");
10976         }
10977         const nativeResponseValue = wasm.TS_COption_u16Z_clone_ptr(arg);
10978         return nativeResponseValue;
10979 }
10980         // struct LDKCOption_u16Z COption_u16Z_clone(const struct LDKCOption_u16Z *NONNULL_PTR orig);
10981 /* @internal */
10982 export function COption_u16Z_clone(orig: number): number {
10983         if(!isWasmInitialized) {
10984                 throw new Error("initializeWasm() must be awaited first!");
10985         }
10986         const nativeResponseValue = wasm.TS_COption_u16Z_clone(orig);
10987         return nativeResponseValue;
10988 }
10989         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_ok(void);
10990 /* @internal */
10991 export function CResult_NoneAPIErrorZ_ok(): number {
10992         if(!isWasmInitialized) {
10993                 throw new Error("initializeWasm() must be awaited first!");
10994         }
10995         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_ok();
10996         return nativeResponseValue;
10997 }
10998         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_err(struct LDKAPIError e);
10999 /* @internal */
11000 export function CResult_NoneAPIErrorZ_err(e: number): number {
11001         if(!isWasmInitialized) {
11002                 throw new Error("initializeWasm() must be awaited first!");
11003         }
11004         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_err(e);
11005         return nativeResponseValue;
11006 }
11007         // bool CResult_NoneAPIErrorZ_is_ok(const struct LDKCResult_NoneAPIErrorZ *NONNULL_PTR o);
11008 /* @internal */
11009 export function CResult_NoneAPIErrorZ_is_ok(o: number): boolean {
11010         if(!isWasmInitialized) {
11011                 throw new Error("initializeWasm() must be awaited first!");
11012         }
11013         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_is_ok(o);
11014         return nativeResponseValue;
11015 }
11016         // void CResult_NoneAPIErrorZ_free(struct LDKCResult_NoneAPIErrorZ _res);
11017 /* @internal */
11018 export function CResult_NoneAPIErrorZ_free(_res: number): void {
11019         if(!isWasmInitialized) {
11020                 throw new Error("initializeWasm() must be awaited first!");
11021         }
11022         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_free(_res);
11023         // debug statements here
11024 }
11025         // uintptr_t CResult_NoneAPIErrorZ_clone_ptr(LDKCResult_NoneAPIErrorZ *NONNULL_PTR arg);
11026 /* @internal */
11027 export function CResult_NoneAPIErrorZ_clone_ptr(arg: number): number {
11028         if(!isWasmInitialized) {
11029                 throw new Error("initializeWasm() must be awaited first!");
11030         }
11031         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_clone_ptr(arg);
11032         return nativeResponseValue;
11033 }
11034         // struct LDKCResult_NoneAPIErrorZ CResult_NoneAPIErrorZ_clone(const struct LDKCResult_NoneAPIErrorZ *NONNULL_PTR orig);
11035 /* @internal */
11036 export function CResult_NoneAPIErrorZ_clone(orig: number): number {
11037         if(!isWasmInitialized) {
11038                 throw new Error("initializeWasm() must be awaited first!");
11039         }
11040         const nativeResponseValue = wasm.TS_CResult_NoneAPIErrorZ_clone(orig);
11041         return nativeResponseValue;
11042 }
11043         // void CVec_CResult_NoneAPIErrorZZ_free(struct LDKCVec_CResult_NoneAPIErrorZZ _res);
11044 /* @internal */
11045 export function CVec_CResult_NoneAPIErrorZZ_free(_res: number): void {
11046         if(!isWasmInitialized) {
11047                 throw new Error("initializeWasm() must be awaited first!");
11048         }
11049         const nativeResponseValue = wasm.TS_CVec_CResult_NoneAPIErrorZZ_free(_res);
11050         // debug statements here
11051 }
11052         // void CVec_APIErrorZ_free(struct LDKCVec_APIErrorZ _res);
11053 /* @internal */
11054 export function CVec_APIErrorZ_free(_res: number): void {
11055         if(!isWasmInitialized) {
11056                 throw new Error("initializeWasm() must be awaited first!");
11057         }
11058         const nativeResponseValue = wasm.TS_CVec_APIErrorZ_free(_res);
11059         // debug statements here
11060 }
11061         // struct LDKCResult__u832APIErrorZ CResult__u832APIErrorZ_ok(struct LDKThirtyTwoBytes o);
11062 /* @internal */
11063 export function CResult__u832APIErrorZ_ok(o: number): number {
11064         if(!isWasmInitialized) {
11065                 throw new Error("initializeWasm() must be awaited first!");
11066         }
11067         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_ok(o);
11068         return nativeResponseValue;
11069 }
11070         // struct LDKCResult__u832APIErrorZ CResult__u832APIErrorZ_err(struct LDKAPIError e);
11071 /* @internal */
11072 export function CResult__u832APIErrorZ_err(e: number): number {
11073         if(!isWasmInitialized) {
11074                 throw new Error("initializeWasm() must be awaited first!");
11075         }
11076         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_err(e);
11077         return nativeResponseValue;
11078 }
11079         // bool CResult__u832APIErrorZ_is_ok(const struct LDKCResult__u832APIErrorZ *NONNULL_PTR o);
11080 /* @internal */
11081 export function CResult__u832APIErrorZ_is_ok(o: number): boolean {
11082         if(!isWasmInitialized) {
11083                 throw new Error("initializeWasm() must be awaited first!");
11084         }
11085         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_is_ok(o);
11086         return nativeResponseValue;
11087 }
11088         // void CResult__u832APIErrorZ_free(struct LDKCResult__u832APIErrorZ _res);
11089 /* @internal */
11090 export function CResult__u832APIErrorZ_free(_res: number): void {
11091         if(!isWasmInitialized) {
11092                 throw new Error("initializeWasm() must be awaited first!");
11093         }
11094         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_free(_res);
11095         // debug statements here
11096 }
11097         // uintptr_t CResult__u832APIErrorZ_clone_ptr(LDKCResult__u832APIErrorZ *NONNULL_PTR arg);
11098 /* @internal */
11099 export function CResult__u832APIErrorZ_clone_ptr(arg: number): number {
11100         if(!isWasmInitialized) {
11101                 throw new Error("initializeWasm() must be awaited first!");
11102         }
11103         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_clone_ptr(arg);
11104         return nativeResponseValue;
11105 }
11106         // struct LDKCResult__u832APIErrorZ CResult__u832APIErrorZ_clone(const struct LDKCResult__u832APIErrorZ *NONNULL_PTR orig);
11107 /* @internal */
11108 export function CResult__u832APIErrorZ_clone(orig: number): number {
11109         if(!isWasmInitialized) {
11110                 throw new Error("initializeWasm() must be awaited first!");
11111         }
11112         const nativeResponseValue = wasm.TS_CResult__u832APIErrorZ_clone(orig);
11113         return nativeResponseValue;
11114 }
11115         // struct LDKCResult_PaymentIdPaymentSendFailureZ CResult_PaymentIdPaymentSendFailureZ_ok(struct LDKThirtyTwoBytes o);
11116 /* @internal */
11117 export function CResult_PaymentIdPaymentSendFailureZ_ok(o: number): number {
11118         if(!isWasmInitialized) {
11119                 throw new Error("initializeWasm() must be awaited first!");
11120         }
11121         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_ok(o);
11122         return nativeResponseValue;
11123 }
11124         // struct LDKCResult_PaymentIdPaymentSendFailureZ CResult_PaymentIdPaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
11125 /* @internal */
11126 export function CResult_PaymentIdPaymentSendFailureZ_err(e: number): number {
11127         if(!isWasmInitialized) {
11128                 throw new Error("initializeWasm() must be awaited first!");
11129         }
11130         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_err(e);
11131         return nativeResponseValue;
11132 }
11133         // bool CResult_PaymentIdPaymentSendFailureZ_is_ok(const struct LDKCResult_PaymentIdPaymentSendFailureZ *NONNULL_PTR o);
11134 /* @internal */
11135 export function CResult_PaymentIdPaymentSendFailureZ_is_ok(o: number): boolean {
11136         if(!isWasmInitialized) {
11137                 throw new Error("initializeWasm() must be awaited first!");
11138         }
11139         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_is_ok(o);
11140         return nativeResponseValue;
11141 }
11142         // void CResult_PaymentIdPaymentSendFailureZ_free(struct LDKCResult_PaymentIdPaymentSendFailureZ _res);
11143 /* @internal */
11144 export function CResult_PaymentIdPaymentSendFailureZ_free(_res: number): void {
11145         if(!isWasmInitialized) {
11146                 throw new Error("initializeWasm() must be awaited first!");
11147         }
11148         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_free(_res);
11149         // debug statements here
11150 }
11151         // uintptr_t CResult_PaymentIdPaymentSendFailureZ_clone_ptr(LDKCResult_PaymentIdPaymentSendFailureZ *NONNULL_PTR arg);
11152 /* @internal */
11153 export function CResult_PaymentIdPaymentSendFailureZ_clone_ptr(arg: number): number {
11154         if(!isWasmInitialized) {
11155                 throw new Error("initializeWasm() must be awaited first!");
11156         }
11157         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_clone_ptr(arg);
11158         return nativeResponseValue;
11159 }
11160         // struct LDKCResult_PaymentIdPaymentSendFailureZ CResult_PaymentIdPaymentSendFailureZ_clone(const struct LDKCResult_PaymentIdPaymentSendFailureZ *NONNULL_PTR orig);
11161 /* @internal */
11162 export function CResult_PaymentIdPaymentSendFailureZ_clone(orig: number): number {
11163         if(!isWasmInitialized) {
11164                 throw new Error("initializeWasm() must be awaited first!");
11165         }
11166         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentSendFailureZ_clone(orig);
11167         return nativeResponseValue;
11168 }
11169         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_ok(void);
11170 /* @internal */
11171 export function CResult_NonePaymentSendFailureZ_ok(): number {
11172         if(!isWasmInitialized) {
11173                 throw new Error("initializeWasm() must be awaited first!");
11174         }
11175         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_ok();
11176         return nativeResponseValue;
11177 }
11178         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
11179 /* @internal */
11180 export function CResult_NonePaymentSendFailureZ_err(e: number): number {
11181         if(!isWasmInitialized) {
11182                 throw new Error("initializeWasm() must be awaited first!");
11183         }
11184         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_err(e);
11185         return nativeResponseValue;
11186 }
11187         // bool CResult_NonePaymentSendFailureZ_is_ok(const struct LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR o);
11188 /* @internal */
11189 export function CResult_NonePaymentSendFailureZ_is_ok(o: number): boolean {
11190         if(!isWasmInitialized) {
11191                 throw new Error("initializeWasm() must be awaited first!");
11192         }
11193         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_is_ok(o);
11194         return nativeResponseValue;
11195 }
11196         // void CResult_NonePaymentSendFailureZ_free(struct LDKCResult_NonePaymentSendFailureZ _res);
11197 /* @internal */
11198 export function CResult_NonePaymentSendFailureZ_free(_res: number): void {
11199         if(!isWasmInitialized) {
11200                 throw new Error("initializeWasm() must be awaited first!");
11201         }
11202         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_free(_res);
11203         // debug statements here
11204 }
11205         // uintptr_t CResult_NonePaymentSendFailureZ_clone_ptr(LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR arg);
11206 /* @internal */
11207 export function CResult_NonePaymentSendFailureZ_clone_ptr(arg: number): number {
11208         if(!isWasmInitialized) {
11209                 throw new Error("initializeWasm() must be awaited first!");
11210         }
11211         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_clone_ptr(arg);
11212         return nativeResponseValue;
11213 }
11214         // struct LDKCResult_NonePaymentSendFailureZ CResult_NonePaymentSendFailureZ_clone(const struct LDKCResult_NonePaymentSendFailureZ *NONNULL_PTR orig);
11215 /* @internal */
11216 export function CResult_NonePaymentSendFailureZ_clone(orig: number): number {
11217         if(!isWasmInitialized) {
11218                 throw new Error("initializeWasm() must be awaited first!");
11219         }
11220         const nativeResponseValue = wasm.TS_CResult_NonePaymentSendFailureZ_clone(orig);
11221         return nativeResponseValue;
11222 }
11223         // uintptr_t C2Tuple_PaymentHashPaymentIdZ_clone_ptr(LDKC2Tuple_PaymentHashPaymentIdZ *NONNULL_PTR arg);
11224 /* @internal */
11225 export function C2Tuple_PaymentHashPaymentIdZ_clone_ptr(arg: number): number {
11226         if(!isWasmInitialized) {
11227                 throw new Error("initializeWasm() must be awaited first!");
11228         }
11229         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_clone_ptr(arg);
11230         return nativeResponseValue;
11231 }
11232         // struct LDKC2Tuple_PaymentHashPaymentIdZ C2Tuple_PaymentHashPaymentIdZ_clone(const struct LDKC2Tuple_PaymentHashPaymentIdZ *NONNULL_PTR orig);
11233 /* @internal */
11234 export function C2Tuple_PaymentHashPaymentIdZ_clone(orig: number): number {
11235         if(!isWasmInitialized) {
11236                 throw new Error("initializeWasm() must be awaited first!");
11237         }
11238         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_clone(orig);
11239         return nativeResponseValue;
11240 }
11241         // struct LDKC2Tuple_PaymentHashPaymentIdZ C2Tuple_PaymentHashPaymentIdZ_new(struct LDKThirtyTwoBytes a, struct LDKThirtyTwoBytes b);
11242 /* @internal */
11243 export function C2Tuple_PaymentHashPaymentIdZ_new(a: number, b: number): number {
11244         if(!isWasmInitialized) {
11245                 throw new Error("initializeWasm() must be awaited first!");
11246         }
11247         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_new(a, b);
11248         return nativeResponseValue;
11249 }
11250         // void C2Tuple_PaymentHashPaymentIdZ_free(struct LDKC2Tuple_PaymentHashPaymentIdZ _res);
11251 /* @internal */
11252 export function C2Tuple_PaymentHashPaymentIdZ_free(_res: number): void {
11253         if(!isWasmInitialized) {
11254                 throw new Error("initializeWasm() must be awaited first!");
11255         }
11256         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentIdZ_free(_res);
11257         // debug statements here
11258 }
11259         // struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_ok(struct LDKC2Tuple_PaymentHashPaymentIdZ o);
11260 /* @internal */
11261 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_ok(o: number): number {
11262         if(!isWasmInitialized) {
11263                 throw new Error("initializeWasm() must be awaited first!");
11264         }
11265         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_ok(o);
11266         return nativeResponseValue;
11267 }
11268         // struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_err(struct LDKPaymentSendFailure e);
11269 /* @internal */
11270 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_err(e: number): number {
11271         if(!isWasmInitialized) {
11272                 throw new Error("initializeWasm() must be awaited first!");
11273         }
11274         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_err(e);
11275         return nativeResponseValue;
11276 }
11277         // bool CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_is_ok(const struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ *NONNULL_PTR o);
11278 /* @internal */
11279 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_is_ok(o: number): boolean {
11280         if(!isWasmInitialized) {
11281                 throw new Error("initializeWasm() must be awaited first!");
11282         }
11283         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_is_ok(o);
11284         return nativeResponseValue;
11285 }
11286         // void CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_free(struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ _res);
11287 /* @internal */
11288 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_free(_res: number): void {
11289         if(!isWasmInitialized) {
11290                 throw new Error("initializeWasm() must be awaited first!");
11291         }
11292         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_free(_res);
11293         // debug statements here
11294 }
11295         // uintptr_t CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone_ptr(LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ *NONNULL_PTR arg);
11296 /* @internal */
11297 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone_ptr(arg: number): number {
11298         if(!isWasmInitialized) {
11299                 throw new Error("initializeWasm() must be awaited first!");
11300         }
11301         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone_ptr(arg);
11302         return nativeResponseValue;
11303 }
11304         // struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone(const struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ *NONNULL_PTR orig);
11305 /* @internal */
11306 export function CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone(orig: number): number {
11307         if(!isWasmInitialized) {
11308                 throw new Error("initializeWasm() must be awaited first!");
11309         }
11310         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ_clone(orig);
11311         return nativeResponseValue;
11312 }
11313         // void CVec_ThirtyTwoBytesZ_free(struct LDKCVec_ThirtyTwoBytesZ _res);
11314 /* @internal */
11315 export function CVec_ThirtyTwoBytesZ_free(_res: number): void {
11316         if(!isWasmInitialized) {
11317                 throw new Error("initializeWasm() must be awaited first!");
11318         }
11319         const nativeResponseValue = wasm.TS_CVec_ThirtyTwoBytesZ_free(_res);
11320         // debug statements here
11321 }
11322         // uintptr_t C2Tuple_PaymentHashPaymentSecretZ_clone_ptr(LDKC2Tuple_PaymentHashPaymentSecretZ *NONNULL_PTR arg);
11323 /* @internal */
11324 export function C2Tuple_PaymentHashPaymentSecretZ_clone_ptr(arg: number): number {
11325         if(!isWasmInitialized) {
11326                 throw new Error("initializeWasm() must be awaited first!");
11327         }
11328         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_clone_ptr(arg);
11329         return nativeResponseValue;
11330 }
11331         // struct LDKC2Tuple_PaymentHashPaymentSecretZ C2Tuple_PaymentHashPaymentSecretZ_clone(const struct LDKC2Tuple_PaymentHashPaymentSecretZ *NONNULL_PTR orig);
11332 /* @internal */
11333 export function C2Tuple_PaymentHashPaymentSecretZ_clone(orig: number): number {
11334         if(!isWasmInitialized) {
11335                 throw new Error("initializeWasm() must be awaited first!");
11336         }
11337         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_clone(orig);
11338         return nativeResponseValue;
11339 }
11340         // struct LDKC2Tuple_PaymentHashPaymentSecretZ C2Tuple_PaymentHashPaymentSecretZ_new(struct LDKThirtyTwoBytes a, struct LDKThirtyTwoBytes b);
11341 /* @internal */
11342 export function C2Tuple_PaymentHashPaymentSecretZ_new(a: number, b: number): number {
11343         if(!isWasmInitialized) {
11344                 throw new Error("initializeWasm() must be awaited first!");
11345         }
11346         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_new(a, b);
11347         return nativeResponseValue;
11348 }
11349         // void C2Tuple_PaymentHashPaymentSecretZ_free(struct LDKC2Tuple_PaymentHashPaymentSecretZ _res);
11350 /* @internal */
11351 export function C2Tuple_PaymentHashPaymentSecretZ_free(_res: number): void {
11352         if(!isWasmInitialized) {
11353                 throw new Error("initializeWasm() must be awaited first!");
11354         }
11355         const nativeResponseValue = wasm.TS_C2Tuple_PaymentHashPaymentSecretZ_free(_res);
11356         // debug statements here
11357 }
11358         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_ok(struct LDKC2Tuple_PaymentHashPaymentSecretZ o);
11359 /* @internal */
11360 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_ok(o: number): number {
11361         if(!isWasmInitialized) {
11362                 throw new Error("initializeWasm() must be awaited first!");
11363         }
11364         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_ok(o);
11365         return nativeResponseValue;
11366 }
11367         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_err(void);
11368 /* @internal */
11369 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_err(): number {
11370         if(!isWasmInitialized) {
11371                 throw new Error("initializeWasm() must be awaited first!");
11372         }
11373         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_err();
11374         return nativeResponseValue;
11375 }
11376         // bool CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_is_ok(const struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ *NONNULL_PTR o);
11377 /* @internal */
11378 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_is_ok(o: number): boolean {
11379         if(!isWasmInitialized) {
11380                 throw new Error("initializeWasm() must be awaited first!");
11381         }
11382         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_is_ok(o);
11383         return nativeResponseValue;
11384 }
11385         // void CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_free(struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ _res);
11386 /* @internal */
11387 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_free(_res: number): void {
11388         if(!isWasmInitialized) {
11389                 throw new Error("initializeWasm() must be awaited first!");
11390         }
11391         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_free(_res);
11392         // debug statements here
11393 }
11394         // uintptr_t CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone_ptr(LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ *NONNULL_PTR arg);
11395 /* @internal */
11396 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone_ptr(arg: number): number {
11397         if(!isWasmInitialized) {
11398                 throw new Error("initializeWasm() must be awaited first!");
11399         }
11400         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone_ptr(arg);
11401         return nativeResponseValue;
11402 }
11403         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone(const struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ *NONNULL_PTR orig);
11404 /* @internal */
11405 export function CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone(orig: number): number {
11406         if(!isWasmInitialized) {
11407                 throw new Error("initializeWasm() must be awaited first!");
11408         }
11409         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZNoneZ_clone(orig);
11410         return nativeResponseValue;
11411 }
11412         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_ok(struct LDKC2Tuple_PaymentHashPaymentSecretZ o);
11413 /* @internal */
11414 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_ok(o: number): number {
11415         if(!isWasmInitialized) {
11416                 throw new Error("initializeWasm() must be awaited first!");
11417         }
11418         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_ok(o);
11419         return nativeResponseValue;
11420 }
11421         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_err(struct LDKAPIError e);
11422 /* @internal */
11423 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_err(e: number): number {
11424         if(!isWasmInitialized) {
11425                 throw new Error("initializeWasm() must be awaited first!");
11426         }
11427         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_err(e);
11428         return nativeResponseValue;
11429 }
11430         // bool CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_is_ok(const struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ *NONNULL_PTR o);
11431 /* @internal */
11432 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_is_ok(o: number): boolean {
11433         if(!isWasmInitialized) {
11434                 throw new Error("initializeWasm() must be awaited first!");
11435         }
11436         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_is_ok(o);
11437         return nativeResponseValue;
11438 }
11439         // void CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_free(struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ _res);
11440 /* @internal */
11441 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_free(_res: number): void {
11442         if(!isWasmInitialized) {
11443                 throw new Error("initializeWasm() must be awaited first!");
11444         }
11445         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_free(_res);
11446         // debug statements here
11447 }
11448         // uintptr_t CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone_ptr(LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ *NONNULL_PTR arg);
11449 /* @internal */
11450 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone_ptr(arg: number): number {
11451         if(!isWasmInitialized) {
11452                 throw new Error("initializeWasm() must be awaited first!");
11453         }
11454         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone_ptr(arg);
11455         return nativeResponseValue;
11456 }
11457         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone(const struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ *NONNULL_PTR orig);
11458 /* @internal */
11459 export function CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone(orig: number): number {
11460         if(!isWasmInitialized) {
11461                 throw new Error("initializeWasm() must be awaited first!");
11462         }
11463         const nativeResponseValue = wasm.TS_CResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ_clone(orig);
11464         return nativeResponseValue;
11465 }
11466         // struct LDKCResult_PaymentSecretNoneZ CResult_PaymentSecretNoneZ_ok(struct LDKThirtyTwoBytes o);
11467 /* @internal */
11468 export function CResult_PaymentSecretNoneZ_ok(o: number): number {
11469         if(!isWasmInitialized) {
11470                 throw new Error("initializeWasm() must be awaited first!");
11471         }
11472         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_ok(o);
11473         return nativeResponseValue;
11474 }
11475         // struct LDKCResult_PaymentSecretNoneZ CResult_PaymentSecretNoneZ_err(void);
11476 /* @internal */
11477 export function CResult_PaymentSecretNoneZ_err(): number {
11478         if(!isWasmInitialized) {
11479                 throw new Error("initializeWasm() must be awaited first!");
11480         }
11481         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_err();
11482         return nativeResponseValue;
11483 }
11484         // bool CResult_PaymentSecretNoneZ_is_ok(const struct LDKCResult_PaymentSecretNoneZ *NONNULL_PTR o);
11485 /* @internal */
11486 export function CResult_PaymentSecretNoneZ_is_ok(o: number): boolean {
11487         if(!isWasmInitialized) {
11488                 throw new Error("initializeWasm() must be awaited first!");
11489         }
11490         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_is_ok(o);
11491         return nativeResponseValue;
11492 }
11493         // void CResult_PaymentSecretNoneZ_free(struct LDKCResult_PaymentSecretNoneZ _res);
11494 /* @internal */
11495 export function CResult_PaymentSecretNoneZ_free(_res: number): void {
11496         if(!isWasmInitialized) {
11497                 throw new Error("initializeWasm() must be awaited first!");
11498         }
11499         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_free(_res);
11500         // debug statements here
11501 }
11502         // uintptr_t CResult_PaymentSecretNoneZ_clone_ptr(LDKCResult_PaymentSecretNoneZ *NONNULL_PTR arg);
11503 /* @internal */
11504 export function CResult_PaymentSecretNoneZ_clone_ptr(arg: number): number {
11505         if(!isWasmInitialized) {
11506                 throw new Error("initializeWasm() must be awaited first!");
11507         }
11508         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_clone_ptr(arg);
11509         return nativeResponseValue;
11510 }
11511         // struct LDKCResult_PaymentSecretNoneZ CResult_PaymentSecretNoneZ_clone(const struct LDKCResult_PaymentSecretNoneZ *NONNULL_PTR orig);
11512 /* @internal */
11513 export function CResult_PaymentSecretNoneZ_clone(orig: number): number {
11514         if(!isWasmInitialized) {
11515                 throw new Error("initializeWasm() must be awaited first!");
11516         }
11517         const nativeResponseValue = wasm.TS_CResult_PaymentSecretNoneZ_clone(orig);
11518         return nativeResponseValue;
11519 }
11520         // struct LDKCResult_PaymentSecretAPIErrorZ CResult_PaymentSecretAPIErrorZ_ok(struct LDKThirtyTwoBytes o);
11521 /* @internal */
11522 export function CResult_PaymentSecretAPIErrorZ_ok(o: number): number {
11523         if(!isWasmInitialized) {
11524                 throw new Error("initializeWasm() must be awaited first!");
11525         }
11526         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_ok(o);
11527         return nativeResponseValue;
11528 }
11529         // struct LDKCResult_PaymentSecretAPIErrorZ CResult_PaymentSecretAPIErrorZ_err(struct LDKAPIError e);
11530 /* @internal */
11531 export function CResult_PaymentSecretAPIErrorZ_err(e: number): number {
11532         if(!isWasmInitialized) {
11533                 throw new Error("initializeWasm() must be awaited first!");
11534         }
11535         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_err(e);
11536         return nativeResponseValue;
11537 }
11538         // bool CResult_PaymentSecretAPIErrorZ_is_ok(const struct LDKCResult_PaymentSecretAPIErrorZ *NONNULL_PTR o);
11539 /* @internal */
11540 export function CResult_PaymentSecretAPIErrorZ_is_ok(o: number): boolean {
11541         if(!isWasmInitialized) {
11542                 throw new Error("initializeWasm() must be awaited first!");
11543         }
11544         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_is_ok(o);
11545         return nativeResponseValue;
11546 }
11547         // void CResult_PaymentSecretAPIErrorZ_free(struct LDKCResult_PaymentSecretAPIErrorZ _res);
11548 /* @internal */
11549 export function CResult_PaymentSecretAPIErrorZ_free(_res: number): void {
11550         if(!isWasmInitialized) {
11551                 throw new Error("initializeWasm() must be awaited first!");
11552         }
11553         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_free(_res);
11554         // debug statements here
11555 }
11556         // uintptr_t CResult_PaymentSecretAPIErrorZ_clone_ptr(LDKCResult_PaymentSecretAPIErrorZ *NONNULL_PTR arg);
11557 /* @internal */
11558 export function CResult_PaymentSecretAPIErrorZ_clone_ptr(arg: number): number {
11559         if(!isWasmInitialized) {
11560                 throw new Error("initializeWasm() must be awaited first!");
11561         }
11562         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_clone_ptr(arg);
11563         return nativeResponseValue;
11564 }
11565         // struct LDKCResult_PaymentSecretAPIErrorZ CResult_PaymentSecretAPIErrorZ_clone(const struct LDKCResult_PaymentSecretAPIErrorZ *NONNULL_PTR orig);
11566 /* @internal */
11567 export function CResult_PaymentSecretAPIErrorZ_clone(orig: number): number {
11568         if(!isWasmInitialized) {
11569                 throw new Error("initializeWasm() must be awaited first!");
11570         }
11571         const nativeResponseValue = wasm.TS_CResult_PaymentSecretAPIErrorZ_clone(orig);
11572         return nativeResponseValue;
11573 }
11574         // struct LDKCResult_PaymentPreimageAPIErrorZ CResult_PaymentPreimageAPIErrorZ_ok(struct LDKThirtyTwoBytes o);
11575 /* @internal */
11576 export function CResult_PaymentPreimageAPIErrorZ_ok(o: number): number {
11577         if(!isWasmInitialized) {
11578                 throw new Error("initializeWasm() must be awaited first!");
11579         }
11580         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_ok(o);
11581         return nativeResponseValue;
11582 }
11583         // struct LDKCResult_PaymentPreimageAPIErrorZ CResult_PaymentPreimageAPIErrorZ_err(struct LDKAPIError e);
11584 /* @internal */
11585 export function CResult_PaymentPreimageAPIErrorZ_err(e: number): number {
11586         if(!isWasmInitialized) {
11587                 throw new Error("initializeWasm() must be awaited first!");
11588         }
11589         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_err(e);
11590         return nativeResponseValue;
11591 }
11592         // bool CResult_PaymentPreimageAPIErrorZ_is_ok(const struct LDKCResult_PaymentPreimageAPIErrorZ *NONNULL_PTR o);
11593 /* @internal */
11594 export function CResult_PaymentPreimageAPIErrorZ_is_ok(o: number): boolean {
11595         if(!isWasmInitialized) {
11596                 throw new Error("initializeWasm() must be awaited first!");
11597         }
11598         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_is_ok(o);
11599         return nativeResponseValue;
11600 }
11601         // void CResult_PaymentPreimageAPIErrorZ_free(struct LDKCResult_PaymentPreimageAPIErrorZ _res);
11602 /* @internal */
11603 export function CResult_PaymentPreimageAPIErrorZ_free(_res: number): void {
11604         if(!isWasmInitialized) {
11605                 throw new Error("initializeWasm() must be awaited first!");
11606         }
11607         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_free(_res);
11608         // debug statements here
11609 }
11610         // uintptr_t CResult_PaymentPreimageAPIErrorZ_clone_ptr(LDKCResult_PaymentPreimageAPIErrorZ *NONNULL_PTR arg);
11611 /* @internal */
11612 export function CResult_PaymentPreimageAPIErrorZ_clone_ptr(arg: number): number {
11613         if(!isWasmInitialized) {
11614                 throw new Error("initializeWasm() must be awaited first!");
11615         }
11616         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_clone_ptr(arg);
11617         return nativeResponseValue;
11618 }
11619         // struct LDKCResult_PaymentPreimageAPIErrorZ CResult_PaymentPreimageAPIErrorZ_clone(const struct LDKCResult_PaymentPreimageAPIErrorZ *NONNULL_PTR orig);
11620 /* @internal */
11621 export function CResult_PaymentPreimageAPIErrorZ_clone(orig: number): number {
11622         if(!isWasmInitialized) {
11623                 throw new Error("initializeWasm() must be awaited first!");
11624         }
11625         const nativeResponseValue = wasm.TS_CResult_PaymentPreimageAPIErrorZ_clone(orig);
11626         return nativeResponseValue;
11627 }
11628         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_ok(struct LDKCounterpartyForwardingInfo o);
11629 /* @internal */
11630 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_ok(o: number): number {
11631         if(!isWasmInitialized) {
11632                 throw new Error("initializeWasm() must be awaited first!");
11633         }
11634         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_ok(o);
11635         return nativeResponseValue;
11636 }
11637         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_err(struct LDKDecodeError e);
11638 /* @internal */
11639 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_err(e: number): number {
11640         if(!isWasmInitialized) {
11641                 throw new Error("initializeWasm() must be awaited first!");
11642         }
11643         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_err(e);
11644         return nativeResponseValue;
11645 }
11646         // bool CResult_CounterpartyForwardingInfoDecodeErrorZ_is_ok(const struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR o);
11647 /* @internal */
11648 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_is_ok(o: number): boolean {
11649         if(!isWasmInitialized) {
11650                 throw new Error("initializeWasm() must be awaited first!");
11651         }
11652         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_is_ok(o);
11653         return nativeResponseValue;
11654 }
11655         // void CResult_CounterpartyForwardingInfoDecodeErrorZ_free(struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ _res);
11656 /* @internal */
11657 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_free(_res: number): void {
11658         if(!isWasmInitialized) {
11659                 throw new Error("initializeWasm() must be awaited first!");
11660         }
11661         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_free(_res);
11662         // debug statements here
11663 }
11664         // uintptr_t CResult_CounterpartyForwardingInfoDecodeErrorZ_clone_ptr(LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR arg);
11665 /* @internal */
11666 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_clone_ptr(arg: number): number {
11667         if(!isWasmInitialized) {
11668                 throw new Error("initializeWasm() must be awaited first!");
11669         }
11670         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_clone_ptr(arg);
11671         return nativeResponseValue;
11672 }
11673         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CResult_CounterpartyForwardingInfoDecodeErrorZ_clone(const struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ *NONNULL_PTR orig);
11674 /* @internal */
11675 export function CResult_CounterpartyForwardingInfoDecodeErrorZ_clone(orig: number): number {
11676         if(!isWasmInitialized) {
11677                 throw new Error("initializeWasm() must be awaited first!");
11678         }
11679         const nativeResponseValue = wasm.TS_CResult_CounterpartyForwardingInfoDecodeErrorZ_clone(orig);
11680         return nativeResponseValue;
11681 }
11682         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_ok(struct LDKChannelCounterparty o);
11683 /* @internal */
11684 export function CResult_ChannelCounterpartyDecodeErrorZ_ok(o: number): number {
11685         if(!isWasmInitialized) {
11686                 throw new Error("initializeWasm() must be awaited first!");
11687         }
11688         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_ok(o);
11689         return nativeResponseValue;
11690 }
11691         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_err(struct LDKDecodeError e);
11692 /* @internal */
11693 export function CResult_ChannelCounterpartyDecodeErrorZ_err(e: number): number {
11694         if(!isWasmInitialized) {
11695                 throw new Error("initializeWasm() must be awaited first!");
11696         }
11697         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_err(e);
11698         return nativeResponseValue;
11699 }
11700         // bool CResult_ChannelCounterpartyDecodeErrorZ_is_ok(const struct LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR o);
11701 /* @internal */
11702 export function CResult_ChannelCounterpartyDecodeErrorZ_is_ok(o: number): boolean {
11703         if(!isWasmInitialized) {
11704                 throw new Error("initializeWasm() must be awaited first!");
11705         }
11706         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_is_ok(o);
11707         return nativeResponseValue;
11708 }
11709         // void CResult_ChannelCounterpartyDecodeErrorZ_free(struct LDKCResult_ChannelCounterpartyDecodeErrorZ _res);
11710 /* @internal */
11711 export function CResult_ChannelCounterpartyDecodeErrorZ_free(_res: number): void {
11712         if(!isWasmInitialized) {
11713                 throw new Error("initializeWasm() must be awaited first!");
11714         }
11715         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_free(_res);
11716         // debug statements here
11717 }
11718         // uintptr_t CResult_ChannelCounterpartyDecodeErrorZ_clone_ptr(LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR arg);
11719 /* @internal */
11720 export function CResult_ChannelCounterpartyDecodeErrorZ_clone_ptr(arg: number): number {
11721         if(!isWasmInitialized) {
11722                 throw new Error("initializeWasm() must be awaited first!");
11723         }
11724         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_clone_ptr(arg);
11725         return nativeResponseValue;
11726 }
11727         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ CResult_ChannelCounterpartyDecodeErrorZ_clone(const struct LDKCResult_ChannelCounterpartyDecodeErrorZ *NONNULL_PTR orig);
11728 /* @internal */
11729 export function CResult_ChannelCounterpartyDecodeErrorZ_clone(orig: number): number {
11730         if(!isWasmInitialized) {
11731                 throw new Error("initializeWasm() must be awaited first!");
11732         }
11733         const nativeResponseValue = wasm.TS_CResult_ChannelCounterpartyDecodeErrorZ_clone(orig);
11734         return nativeResponseValue;
11735 }
11736         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_ok(struct LDKChannelDetails o);
11737 /* @internal */
11738 export function CResult_ChannelDetailsDecodeErrorZ_ok(o: number): number {
11739         if(!isWasmInitialized) {
11740                 throw new Error("initializeWasm() must be awaited first!");
11741         }
11742         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_ok(o);
11743         return nativeResponseValue;
11744 }
11745         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_err(struct LDKDecodeError e);
11746 /* @internal */
11747 export function CResult_ChannelDetailsDecodeErrorZ_err(e: number): number {
11748         if(!isWasmInitialized) {
11749                 throw new Error("initializeWasm() must be awaited first!");
11750         }
11751         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_err(e);
11752         return nativeResponseValue;
11753 }
11754         // bool CResult_ChannelDetailsDecodeErrorZ_is_ok(const struct LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR o);
11755 /* @internal */
11756 export function CResult_ChannelDetailsDecodeErrorZ_is_ok(o: number): boolean {
11757         if(!isWasmInitialized) {
11758                 throw new Error("initializeWasm() must be awaited first!");
11759         }
11760         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_is_ok(o);
11761         return nativeResponseValue;
11762 }
11763         // void CResult_ChannelDetailsDecodeErrorZ_free(struct LDKCResult_ChannelDetailsDecodeErrorZ _res);
11764 /* @internal */
11765 export function CResult_ChannelDetailsDecodeErrorZ_free(_res: number): void {
11766         if(!isWasmInitialized) {
11767                 throw new Error("initializeWasm() must be awaited first!");
11768         }
11769         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_free(_res);
11770         // debug statements here
11771 }
11772         // uintptr_t CResult_ChannelDetailsDecodeErrorZ_clone_ptr(LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR arg);
11773 /* @internal */
11774 export function CResult_ChannelDetailsDecodeErrorZ_clone_ptr(arg: number): number {
11775         if(!isWasmInitialized) {
11776                 throw new Error("initializeWasm() must be awaited first!");
11777         }
11778         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_clone_ptr(arg);
11779         return nativeResponseValue;
11780 }
11781         // struct LDKCResult_ChannelDetailsDecodeErrorZ CResult_ChannelDetailsDecodeErrorZ_clone(const struct LDKCResult_ChannelDetailsDecodeErrorZ *NONNULL_PTR orig);
11782 /* @internal */
11783 export function CResult_ChannelDetailsDecodeErrorZ_clone(orig: number): number {
11784         if(!isWasmInitialized) {
11785                 throw new Error("initializeWasm() must be awaited first!");
11786         }
11787         const nativeResponseValue = wasm.TS_CResult_ChannelDetailsDecodeErrorZ_clone(orig);
11788         return nativeResponseValue;
11789 }
11790         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_ok(struct LDKPhantomRouteHints o);
11791 /* @internal */
11792 export function CResult_PhantomRouteHintsDecodeErrorZ_ok(o: number): number {
11793         if(!isWasmInitialized) {
11794                 throw new Error("initializeWasm() must be awaited first!");
11795         }
11796         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_ok(o);
11797         return nativeResponseValue;
11798 }
11799         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_err(struct LDKDecodeError e);
11800 /* @internal */
11801 export function CResult_PhantomRouteHintsDecodeErrorZ_err(e: number): number {
11802         if(!isWasmInitialized) {
11803                 throw new Error("initializeWasm() must be awaited first!");
11804         }
11805         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_err(e);
11806         return nativeResponseValue;
11807 }
11808         // bool CResult_PhantomRouteHintsDecodeErrorZ_is_ok(const struct LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR o);
11809 /* @internal */
11810 export function CResult_PhantomRouteHintsDecodeErrorZ_is_ok(o: number): boolean {
11811         if(!isWasmInitialized) {
11812                 throw new Error("initializeWasm() must be awaited first!");
11813         }
11814         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_is_ok(o);
11815         return nativeResponseValue;
11816 }
11817         // void CResult_PhantomRouteHintsDecodeErrorZ_free(struct LDKCResult_PhantomRouteHintsDecodeErrorZ _res);
11818 /* @internal */
11819 export function CResult_PhantomRouteHintsDecodeErrorZ_free(_res: number): void {
11820         if(!isWasmInitialized) {
11821                 throw new Error("initializeWasm() must be awaited first!");
11822         }
11823         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_free(_res);
11824         // debug statements here
11825 }
11826         // uintptr_t CResult_PhantomRouteHintsDecodeErrorZ_clone_ptr(LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR arg);
11827 /* @internal */
11828 export function CResult_PhantomRouteHintsDecodeErrorZ_clone_ptr(arg: number): number {
11829         if(!isWasmInitialized) {
11830                 throw new Error("initializeWasm() must be awaited first!");
11831         }
11832         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_clone_ptr(arg);
11833         return nativeResponseValue;
11834 }
11835         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ CResult_PhantomRouteHintsDecodeErrorZ_clone(const struct LDKCResult_PhantomRouteHintsDecodeErrorZ *NONNULL_PTR orig);
11836 /* @internal */
11837 export function CResult_PhantomRouteHintsDecodeErrorZ_clone(orig: number): number {
11838         if(!isWasmInitialized) {
11839                 throw new Error("initializeWasm() must be awaited first!");
11840         }
11841         const nativeResponseValue = wasm.TS_CResult_PhantomRouteHintsDecodeErrorZ_clone(orig);
11842         return nativeResponseValue;
11843 }
11844         // void CVec_ChannelMonitorZ_free(struct LDKCVec_ChannelMonitorZ _res);
11845 /* @internal */
11846 export function CVec_ChannelMonitorZ_free(_res: number): void {
11847         if(!isWasmInitialized) {
11848                 throw new Error("initializeWasm() must be awaited first!");
11849         }
11850         const nativeResponseValue = wasm.TS_CVec_ChannelMonitorZ_free(_res);
11851         // debug statements here
11852 }
11853         // struct LDKC2Tuple_BlockHashChannelManagerZ C2Tuple_BlockHashChannelManagerZ_new(struct LDKThirtyTwoBytes a, struct LDKChannelManager b);
11854 /* @internal */
11855 export function C2Tuple_BlockHashChannelManagerZ_new(a: number, b: number): number {
11856         if(!isWasmInitialized) {
11857                 throw new Error("initializeWasm() must be awaited first!");
11858         }
11859         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelManagerZ_new(a, b);
11860         return nativeResponseValue;
11861 }
11862         // void C2Tuple_BlockHashChannelManagerZ_free(struct LDKC2Tuple_BlockHashChannelManagerZ _res);
11863 /* @internal */
11864 export function C2Tuple_BlockHashChannelManagerZ_free(_res: number): void {
11865         if(!isWasmInitialized) {
11866                 throw new Error("initializeWasm() must be awaited first!");
11867         }
11868         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelManagerZ_free(_res);
11869         // debug statements here
11870 }
11871         // struct LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_ok(struct LDKC2Tuple_BlockHashChannelManagerZ o);
11872 /* @internal */
11873 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_ok(o: number): number {
11874         if(!isWasmInitialized) {
11875                 throw new Error("initializeWasm() must be awaited first!");
11876         }
11877         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_ok(o);
11878         return nativeResponseValue;
11879 }
11880         // struct LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_err(struct LDKDecodeError e);
11881 /* @internal */
11882 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_err(e: number): number {
11883         if(!isWasmInitialized) {
11884                 throw new Error("initializeWasm() must be awaited first!");
11885         }
11886         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_err(e);
11887         return nativeResponseValue;
11888 }
11889         // bool CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_is_ok(const struct LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ *NONNULL_PTR o);
11890 /* @internal */
11891 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_is_ok(o: number): boolean {
11892         if(!isWasmInitialized) {
11893                 throw new Error("initializeWasm() must be awaited first!");
11894         }
11895         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_is_ok(o);
11896         return nativeResponseValue;
11897 }
11898         // void CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_free(struct LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ _res);
11899 /* @internal */
11900 export function CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_free(_res: number): void {
11901         if(!isWasmInitialized) {
11902                 throw new Error("initializeWasm() must be awaited first!");
11903         }
11904         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ_free(_res);
11905         // debug statements here
11906 }
11907         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_ok(struct LDKChannelConfig o);
11908 /* @internal */
11909 export function CResult_ChannelConfigDecodeErrorZ_ok(o: number): number {
11910         if(!isWasmInitialized) {
11911                 throw new Error("initializeWasm() must be awaited first!");
11912         }
11913         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_ok(o);
11914         return nativeResponseValue;
11915 }
11916         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_err(struct LDKDecodeError e);
11917 /* @internal */
11918 export function CResult_ChannelConfigDecodeErrorZ_err(e: number): number {
11919         if(!isWasmInitialized) {
11920                 throw new Error("initializeWasm() must be awaited first!");
11921         }
11922         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_err(e);
11923         return nativeResponseValue;
11924 }
11925         // bool CResult_ChannelConfigDecodeErrorZ_is_ok(const struct LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR o);
11926 /* @internal */
11927 export function CResult_ChannelConfigDecodeErrorZ_is_ok(o: number): boolean {
11928         if(!isWasmInitialized) {
11929                 throw new Error("initializeWasm() must be awaited first!");
11930         }
11931         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_is_ok(o);
11932         return nativeResponseValue;
11933 }
11934         // void CResult_ChannelConfigDecodeErrorZ_free(struct LDKCResult_ChannelConfigDecodeErrorZ _res);
11935 /* @internal */
11936 export function CResult_ChannelConfigDecodeErrorZ_free(_res: number): void {
11937         if(!isWasmInitialized) {
11938                 throw new Error("initializeWasm() must be awaited first!");
11939         }
11940         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_free(_res);
11941         // debug statements here
11942 }
11943         // uintptr_t CResult_ChannelConfigDecodeErrorZ_clone_ptr(LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR arg);
11944 /* @internal */
11945 export function CResult_ChannelConfigDecodeErrorZ_clone_ptr(arg: number): number {
11946         if(!isWasmInitialized) {
11947                 throw new Error("initializeWasm() must be awaited first!");
11948         }
11949         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_clone_ptr(arg);
11950         return nativeResponseValue;
11951 }
11952         // struct LDKCResult_ChannelConfigDecodeErrorZ CResult_ChannelConfigDecodeErrorZ_clone(const struct LDKCResult_ChannelConfigDecodeErrorZ *NONNULL_PTR orig);
11953 /* @internal */
11954 export function CResult_ChannelConfigDecodeErrorZ_clone(orig: number): number {
11955         if(!isWasmInitialized) {
11956                 throw new Error("initializeWasm() must be awaited first!");
11957         }
11958         const nativeResponseValue = wasm.TS_CResult_ChannelConfigDecodeErrorZ_clone(orig);
11959         return nativeResponseValue;
11960 }
11961         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_ok(struct LDKOutPoint o);
11962 /* @internal */
11963 export function CResult_OutPointDecodeErrorZ_ok(o: number): number {
11964         if(!isWasmInitialized) {
11965                 throw new Error("initializeWasm() must be awaited first!");
11966         }
11967         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_ok(o);
11968         return nativeResponseValue;
11969 }
11970         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_err(struct LDKDecodeError e);
11971 /* @internal */
11972 export function CResult_OutPointDecodeErrorZ_err(e: number): number {
11973         if(!isWasmInitialized) {
11974                 throw new Error("initializeWasm() must be awaited first!");
11975         }
11976         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_err(e);
11977         return nativeResponseValue;
11978 }
11979         // bool CResult_OutPointDecodeErrorZ_is_ok(const struct LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR o);
11980 /* @internal */
11981 export function CResult_OutPointDecodeErrorZ_is_ok(o: number): boolean {
11982         if(!isWasmInitialized) {
11983                 throw new Error("initializeWasm() must be awaited first!");
11984         }
11985         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_is_ok(o);
11986         return nativeResponseValue;
11987 }
11988         // void CResult_OutPointDecodeErrorZ_free(struct LDKCResult_OutPointDecodeErrorZ _res);
11989 /* @internal */
11990 export function CResult_OutPointDecodeErrorZ_free(_res: number): void {
11991         if(!isWasmInitialized) {
11992                 throw new Error("initializeWasm() must be awaited first!");
11993         }
11994         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_free(_res);
11995         // debug statements here
11996 }
11997         // uintptr_t CResult_OutPointDecodeErrorZ_clone_ptr(LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR arg);
11998 /* @internal */
11999 export function CResult_OutPointDecodeErrorZ_clone_ptr(arg: number): number {
12000         if(!isWasmInitialized) {
12001                 throw new Error("initializeWasm() must be awaited first!");
12002         }
12003         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_clone_ptr(arg);
12004         return nativeResponseValue;
12005 }
12006         // struct LDKCResult_OutPointDecodeErrorZ CResult_OutPointDecodeErrorZ_clone(const struct LDKCResult_OutPointDecodeErrorZ *NONNULL_PTR orig);
12007 /* @internal */
12008 export function CResult_OutPointDecodeErrorZ_clone(orig: number): number {
12009         if(!isWasmInitialized) {
12010                 throw new Error("initializeWasm() must be awaited first!");
12011         }
12012         const nativeResponseValue = wasm.TS_CResult_OutPointDecodeErrorZ_clone(orig);
12013         return nativeResponseValue;
12014 }
12015         // struct LDKCOption_TypeZ COption_TypeZ_some(struct LDKType o);
12016 /* @internal */
12017 export function COption_TypeZ_some(o: number): number {
12018         if(!isWasmInitialized) {
12019                 throw new Error("initializeWasm() must be awaited first!");
12020         }
12021         const nativeResponseValue = wasm.TS_COption_TypeZ_some(o);
12022         return nativeResponseValue;
12023 }
12024         // struct LDKCOption_TypeZ COption_TypeZ_none(void);
12025 /* @internal */
12026 export function COption_TypeZ_none(): number {
12027         if(!isWasmInitialized) {
12028                 throw new Error("initializeWasm() must be awaited first!");
12029         }
12030         const nativeResponseValue = wasm.TS_COption_TypeZ_none();
12031         return nativeResponseValue;
12032 }
12033         // void COption_TypeZ_free(struct LDKCOption_TypeZ _res);
12034 /* @internal */
12035 export function COption_TypeZ_free(_res: number): void {
12036         if(!isWasmInitialized) {
12037                 throw new Error("initializeWasm() must be awaited first!");
12038         }
12039         const nativeResponseValue = wasm.TS_COption_TypeZ_free(_res);
12040         // debug statements here
12041 }
12042         // uintptr_t COption_TypeZ_clone_ptr(LDKCOption_TypeZ *NONNULL_PTR arg);
12043 /* @internal */
12044 export function COption_TypeZ_clone_ptr(arg: number): number {
12045         if(!isWasmInitialized) {
12046                 throw new Error("initializeWasm() must be awaited first!");
12047         }
12048         const nativeResponseValue = wasm.TS_COption_TypeZ_clone_ptr(arg);
12049         return nativeResponseValue;
12050 }
12051         // struct LDKCOption_TypeZ COption_TypeZ_clone(const struct LDKCOption_TypeZ *NONNULL_PTR orig);
12052 /* @internal */
12053 export function COption_TypeZ_clone(orig: number): number {
12054         if(!isWasmInitialized) {
12055                 throw new Error("initializeWasm() must be awaited first!");
12056         }
12057         const nativeResponseValue = wasm.TS_COption_TypeZ_clone(orig);
12058         return nativeResponseValue;
12059 }
12060         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_ok(struct LDKCOption_TypeZ o);
12061 /* @internal */
12062 export function CResult_COption_TypeZDecodeErrorZ_ok(o: number): number {
12063         if(!isWasmInitialized) {
12064                 throw new Error("initializeWasm() must be awaited first!");
12065         }
12066         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_ok(o);
12067         return nativeResponseValue;
12068 }
12069         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_err(struct LDKDecodeError e);
12070 /* @internal */
12071 export function CResult_COption_TypeZDecodeErrorZ_err(e: number): number {
12072         if(!isWasmInitialized) {
12073                 throw new Error("initializeWasm() must be awaited first!");
12074         }
12075         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_err(e);
12076         return nativeResponseValue;
12077 }
12078         // bool CResult_COption_TypeZDecodeErrorZ_is_ok(const struct LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR o);
12079 /* @internal */
12080 export function CResult_COption_TypeZDecodeErrorZ_is_ok(o: number): boolean {
12081         if(!isWasmInitialized) {
12082                 throw new Error("initializeWasm() must be awaited first!");
12083         }
12084         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_is_ok(o);
12085         return nativeResponseValue;
12086 }
12087         // void CResult_COption_TypeZDecodeErrorZ_free(struct LDKCResult_COption_TypeZDecodeErrorZ _res);
12088 /* @internal */
12089 export function CResult_COption_TypeZDecodeErrorZ_free(_res: number): void {
12090         if(!isWasmInitialized) {
12091                 throw new Error("initializeWasm() must be awaited first!");
12092         }
12093         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_free(_res);
12094         // debug statements here
12095 }
12096         // uintptr_t CResult_COption_TypeZDecodeErrorZ_clone_ptr(LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR arg);
12097 /* @internal */
12098 export function CResult_COption_TypeZDecodeErrorZ_clone_ptr(arg: number): number {
12099         if(!isWasmInitialized) {
12100                 throw new Error("initializeWasm() must be awaited first!");
12101         }
12102         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_clone_ptr(arg);
12103         return nativeResponseValue;
12104 }
12105         // struct LDKCResult_COption_TypeZDecodeErrorZ CResult_COption_TypeZDecodeErrorZ_clone(const struct LDKCResult_COption_TypeZDecodeErrorZ *NONNULL_PTR orig);
12106 /* @internal */
12107 export function CResult_COption_TypeZDecodeErrorZ_clone(orig: number): number {
12108         if(!isWasmInitialized) {
12109                 throw new Error("initializeWasm() must be awaited first!");
12110         }
12111         const nativeResponseValue = wasm.TS_CResult_COption_TypeZDecodeErrorZ_clone(orig);
12112         return nativeResponseValue;
12113 }
12114         // struct LDKCResult_PaymentIdPaymentErrorZ CResult_PaymentIdPaymentErrorZ_ok(struct LDKThirtyTwoBytes o);
12115 /* @internal */
12116 export function CResult_PaymentIdPaymentErrorZ_ok(o: number): number {
12117         if(!isWasmInitialized) {
12118                 throw new Error("initializeWasm() must be awaited first!");
12119         }
12120         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_ok(o);
12121         return nativeResponseValue;
12122 }
12123         // struct LDKCResult_PaymentIdPaymentErrorZ CResult_PaymentIdPaymentErrorZ_err(struct LDKPaymentError e);
12124 /* @internal */
12125 export function CResult_PaymentIdPaymentErrorZ_err(e: number): number {
12126         if(!isWasmInitialized) {
12127                 throw new Error("initializeWasm() must be awaited first!");
12128         }
12129         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_err(e);
12130         return nativeResponseValue;
12131 }
12132         // bool CResult_PaymentIdPaymentErrorZ_is_ok(const struct LDKCResult_PaymentIdPaymentErrorZ *NONNULL_PTR o);
12133 /* @internal */
12134 export function CResult_PaymentIdPaymentErrorZ_is_ok(o: number): boolean {
12135         if(!isWasmInitialized) {
12136                 throw new Error("initializeWasm() must be awaited first!");
12137         }
12138         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_is_ok(o);
12139         return nativeResponseValue;
12140 }
12141         // void CResult_PaymentIdPaymentErrorZ_free(struct LDKCResult_PaymentIdPaymentErrorZ _res);
12142 /* @internal */
12143 export function CResult_PaymentIdPaymentErrorZ_free(_res: number): void {
12144         if(!isWasmInitialized) {
12145                 throw new Error("initializeWasm() must be awaited first!");
12146         }
12147         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_free(_res);
12148         // debug statements here
12149 }
12150         // uintptr_t CResult_PaymentIdPaymentErrorZ_clone_ptr(LDKCResult_PaymentIdPaymentErrorZ *NONNULL_PTR arg);
12151 /* @internal */
12152 export function CResult_PaymentIdPaymentErrorZ_clone_ptr(arg: number): number {
12153         if(!isWasmInitialized) {
12154                 throw new Error("initializeWasm() must be awaited first!");
12155         }
12156         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_clone_ptr(arg);
12157         return nativeResponseValue;
12158 }
12159         // struct LDKCResult_PaymentIdPaymentErrorZ CResult_PaymentIdPaymentErrorZ_clone(const struct LDKCResult_PaymentIdPaymentErrorZ *NONNULL_PTR orig);
12160 /* @internal */
12161 export function CResult_PaymentIdPaymentErrorZ_clone(orig: number): number {
12162         if(!isWasmInitialized) {
12163                 throw new Error("initializeWasm() must be awaited first!");
12164         }
12165         const nativeResponseValue = wasm.TS_CResult_PaymentIdPaymentErrorZ_clone(orig);
12166         return nativeResponseValue;
12167 }
12168         // struct LDKCResult_SiPrefixParseErrorZ CResult_SiPrefixParseErrorZ_ok(enum LDKSiPrefix o);
12169 /* @internal */
12170 export function CResult_SiPrefixParseErrorZ_ok(o: SiPrefix): number {
12171         if(!isWasmInitialized) {
12172                 throw new Error("initializeWasm() must be awaited first!");
12173         }
12174         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_ok(o);
12175         return nativeResponseValue;
12176 }
12177         // struct LDKCResult_SiPrefixParseErrorZ CResult_SiPrefixParseErrorZ_err(struct LDKParseError e);
12178 /* @internal */
12179 export function CResult_SiPrefixParseErrorZ_err(e: number): number {
12180         if(!isWasmInitialized) {
12181                 throw new Error("initializeWasm() must be awaited first!");
12182         }
12183         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_err(e);
12184         return nativeResponseValue;
12185 }
12186         // bool CResult_SiPrefixParseErrorZ_is_ok(const struct LDKCResult_SiPrefixParseErrorZ *NONNULL_PTR o);
12187 /* @internal */
12188 export function CResult_SiPrefixParseErrorZ_is_ok(o: number): boolean {
12189         if(!isWasmInitialized) {
12190                 throw new Error("initializeWasm() must be awaited first!");
12191         }
12192         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_is_ok(o);
12193         return nativeResponseValue;
12194 }
12195         // void CResult_SiPrefixParseErrorZ_free(struct LDKCResult_SiPrefixParseErrorZ _res);
12196 /* @internal */
12197 export function CResult_SiPrefixParseErrorZ_free(_res: number): void {
12198         if(!isWasmInitialized) {
12199                 throw new Error("initializeWasm() must be awaited first!");
12200         }
12201         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_free(_res);
12202         // debug statements here
12203 }
12204         // uintptr_t CResult_SiPrefixParseErrorZ_clone_ptr(LDKCResult_SiPrefixParseErrorZ *NONNULL_PTR arg);
12205 /* @internal */
12206 export function CResult_SiPrefixParseErrorZ_clone_ptr(arg: number): number {
12207         if(!isWasmInitialized) {
12208                 throw new Error("initializeWasm() must be awaited first!");
12209         }
12210         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_clone_ptr(arg);
12211         return nativeResponseValue;
12212 }
12213         // struct LDKCResult_SiPrefixParseErrorZ CResult_SiPrefixParseErrorZ_clone(const struct LDKCResult_SiPrefixParseErrorZ *NONNULL_PTR orig);
12214 /* @internal */
12215 export function CResult_SiPrefixParseErrorZ_clone(orig: number): number {
12216         if(!isWasmInitialized) {
12217                 throw new Error("initializeWasm() must be awaited first!");
12218         }
12219         const nativeResponseValue = wasm.TS_CResult_SiPrefixParseErrorZ_clone(orig);
12220         return nativeResponseValue;
12221 }
12222         // struct LDKCResult_InvoiceParseOrSemanticErrorZ CResult_InvoiceParseOrSemanticErrorZ_ok(struct LDKInvoice o);
12223 /* @internal */
12224 export function CResult_InvoiceParseOrSemanticErrorZ_ok(o: number): number {
12225         if(!isWasmInitialized) {
12226                 throw new Error("initializeWasm() must be awaited first!");
12227         }
12228         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_ok(o);
12229         return nativeResponseValue;
12230 }
12231         // struct LDKCResult_InvoiceParseOrSemanticErrorZ CResult_InvoiceParseOrSemanticErrorZ_err(struct LDKParseOrSemanticError e);
12232 /* @internal */
12233 export function CResult_InvoiceParseOrSemanticErrorZ_err(e: number): number {
12234         if(!isWasmInitialized) {
12235                 throw new Error("initializeWasm() must be awaited first!");
12236         }
12237         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_err(e);
12238         return nativeResponseValue;
12239 }
12240         // bool CResult_InvoiceParseOrSemanticErrorZ_is_ok(const struct LDKCResult_InvoiceParseOrSemanticErrorZ *NONNULL_PTR o);
12241 /* @internal */
12242 export function CResult_InvoiceParseOrSemanticErrorZ_is_ok(o: number): boolean {
12243         if(!isWasmInitialized) {
12244                 throw new Error("initializeWasm() must be awaited first!");
12245         }
12246         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_is_ok(o);
12247         return nativeResponseValue;
12248 }
12249         // void CResult_InvoiceParseOrSemanticErrorZ_free(struct LDKCResult_InvoiceParseOrSemanticErrorZ _res);
12250 /* @internal */
12251 export function CResult_InvoiceParseOrSemanticErrorZ_free(_res: number): void {
12252         if(!isWasmInitialized) {
12253                 throw new Error("initializeWasm() must be awaited first!");
12254         }
12255         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_free(_res);
12256         // debug statements here
12257 }
12258         // uintptr_t CResult_InvoiceParseOrSemanticErrorZ_clone_ptr(LDKCResult_InvoiceParseOrSemanticErrorZ *NONNULL_PTR arg);
12259 /* @internal */
12260 export function CResult_InvoiceParseOrSemanticErrorZ_clone_ptr(arg: number): number {
12261         if(!isWasmInitialized) {
12262                 throw new Error("initializeWasm() must be awaited first!");
12263         }
12264         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_clone_ptr(arg);
12265         return nativeResponseValue;
12266 }
12267         // struct LDKCResult_InvoiceParseOrSemanticErrorZ CResult_InvoiceParseOrSemanticErrorZ_clone(const struct LDKCResult_InvoiceParseOrSemanticErrorZ *NONNULL_PTR orig);
12268 /* @internal */
12269 export function CResult_InvoiceParseOrSemanticErrorZ_clone(orig: number): number {
12270         if(!isWasmInitialized) {
12271                 throw new Error("initializeWasm() must be awaited first!");
12272         }
12273         const nativeResponseValue = wasm.TS_CResult_InvoiceParseOrSemanticErrorZ_clone(orig);
12274         return nativeResponseValue;
12275 }
12276         // struct LDKCResult_SignedRawInvoiceParseErrorZ CResult_SignedRawInvoiceParseErrorZ_ok(struct LDKSignedRawInvoice o);
12277 /* @internal */
12278 export function CResult_SignedRawInvoiceParseErrorZ_ok(o: number): number {
12279         if(!isWasmInitialized) {
12280                 throw new Error("initializeWasm() must be awaited first!");
12281         }
12282         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_ok(o);
12283         return nativeResponseValue;
12284 }
12285         // struct LDKCResult_SignedRawInvoiceParseErrorZ CResult_SignedRawInvoiceParseErrorZ_err(struct LDKParseError e);
12286 /* @internal */
12287 export function CResult_SignedRawInvoiceParseErrorZ_err(e: number): number {
12288         if(!isWasmInitialized) {
12289                 throw new Error("initializeWasm() must be awaited first!");
12290         }
12291         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_err(e);
12292         return nativeResponseValue;
12293 }
12294         // bool CResult_SignedRawInvoiceParseErrorZ_is_ok(const struct LDKCResult_SignedRawInvoiceParseErrorZ *NONNULL_PTR o);
12295 /* @internal */
12296 export function CResult_SignedRawInvoiceParseErrorZ_is_ok(o: number): boolean {
12297         if(!isWasmInitialized) {
12298                 throw new Error("initializeWasm() must be awaited first!");
12299         }
12300         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_is_ok(o);
12301         return nativeResponseValue;
12302 }
12303         // void CResult_SignedRawInvoiceParseErrorZ_free(struct LDKCResult_SignedRawInvoiceParseErrorZ _res);
12304 /* @internal */
12305 export function CResult_SignedRawInvoiceParseErrorZ_free(_res: number): void {
12306         if(!isWasmInitialized) {
12307                 throw new Error("initializeWasm() must be awaited first!");
12308         }
12309         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_free(_res);
12310         // debug statements here
12311 }
12312         // uintptr_t CResult_SignedRawInvoiceParseErrorZ_clone_ptr(LDKCResult_SignedRawInvoiceParseErrorZ *NONNULL_PTR arg);
12313 /* @internal */
12314 export function CResult_SignedRawInvoiceParseErrorZ_clone_ptr(arg: number): number {
12315         if(!isWasmInitialized) {
12316                 throw new Error("initializeWasm() must be awaited first!");
12317         }
12318         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_clone_ptr(arg);
12319         return nativeResponseValue;
12320 }
12321         // struct LDKCResult_SignedRawInvoiceParseErrorZ CResult_SignedRawInvoiceParseErrorZ_clone(const struct LDKCResult_SignedRawInvoiceParseErrorZ *NONNULL_PTR orig);
12322 /* @internal */
12323 export function CResult_SignedRawInvoiceParseErrorZ_clone(orig: number): number {
12324         if(!isWasmInitialized) {
12325                 throw new Error("initializeWasm() must be awaited first!");
12326         }
12327         const nativeResponseValue = wasm.TS_CResult_SignedRawInvoiceParseErrorZ_clone(orig);
12328         return nativeResponseValue;
12329 }
12330         // uintptr_t C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone_ptr(LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ *NONNULL_PTR arg);
12331 /* @internal */
12332 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone_ptr(arg: number): number {
12333         if(!isWasmInitialized) {
12334                 throw new Error("initializeWasm() must be awaited first!");
12335         }
12336         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone_ptr(arg);
12337         return nativeResponseValue;
12338 }
12339         // struct LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone(const struct LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ *NONNULL_PTR orig);
12340 /* @internal */
12341 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone(orig: number): number {
12342         if(!isWasmInitialized) {
12343                 throw new Error("initializeWasm() must be awaited first!");
12344         }
12345         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_clone(orig);
12346         return nativeResponseValue;
12347 }
12348         // struct LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ C3Tuple_RawInvoice_u832InvoiceSignatureZ_new(struct LDKRawInvoice a, struct LDKThirtyTwoBytes b, struct LDKInvoiceSignature c);
12349 /* @internal */
12350 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_new(a: number, b: number, c: number): number {
12351         if(!isWasmInitialized) {
12352                 throw new Error("initializeWasm() must be awaited first!");
12353         }
12354         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_new(a, b, c);
12355         return nativeResponseValue;
12356 }
12357         // void C3Tuple_RawInvoice_u832InvoiceSignatureZ_free(struct LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ _res);
12358 /* @internal */
12359 export function C3Tuple_RawInvoice_u832InvoiceSignatureZ_free(_res: number): void {
12360         if(!isWasmInitialized) {
12361                 throw new Error("initializeWasm() must be awaited first!");
12362         }
12363         const nativeResponseValue = wasm.TS_C3Tuple_RawInvoice_u832InvoiceSignatureZ_free(_res);
12364         // debug statements here
12365 }
12366         // struct LDKCResult_PayeePubKeyErrorZ CResult_PayeePubKeyErrorZ_ok(struct LDKPayeePubKey o);
12367 /* @internal */
12368 export function CResult_PayeePubKeyErrorZ_ok(o: number): number {
12369         if(!isWasmInitialized) {
12370                 throw new Error("initializeWasm() must be awaited first!");
12371         }
12372         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_ok(o);
12373         return nativeResponseValue;
12374 }
12375         // struct LDKCResult_PayeePubKeyErrorZ CResult_PayeePubKeyErrorZ_err(enum LDKSecp256k1Error e);
12376 /* @internal */
12377 export function CResult_PayeePubKeyErrorZ_err(e: Secp256k1Error): number {
12378         if(!isWasmInitialized) {
12379                 throw new Error("initializeWasm() must be awaited first!");
12380         }
12381         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_err(e);
12382         return nativeResponseValue;
12383 }
12384         // bool CResult_PayeePubKeyErrorZ_is_ok(const struct LDKCResult_PayeePubKeyErrorZ *NONNULL_PTR o);
12385 /* @internal */
12386 export function CResult_PayeePubKeyErrorZ_is_ok(o: number): boolean {
12387         if(!isWasmInitialized) {
12388                 throw new Error("initializeWasm() must be awaited first!");
12389         }
12390         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_is_ok(o);
12391         return nativeResponseValue;
12392 }
12393         // void CResult_PayeePubKeyErrorZ_free(struct LDKCResult_PayeePubKeyErrorZ _res);
12394 /* @internal */
12395 export function CResult_PayeePubKeyErrorZ_free(_res: number): void {
12396         if(!isWasmInitialized) {
12397                 throw new Error("initializeWasm() must be awaited first!");
12398         }
12399         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_free(_res);
12400         // debug statements here
12401 }
12402         // uintptr_t CResult_PayeePubKeyErrorZ_clone_ptr(LDKCResult_PayeePubKeyErrorZ *NONNULL_PTR arg);
12403 /* @internal */
12404 export function CResult_PayeePubKeyErrorZ_clone_ptr(arg: number): number {
12405         if(!isWasmInitialized) {
12406                 throw new Error("initializeWasm() must be awaited first!");
12407         }
12408         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_clone_ptr(arg);
12409         return nativeResponseValue;
12410 }
12411         // struct LDKCResult_PayeePubKeyErrorZ CResult_PayeePubKeyErrorZ_clone(const struct LDKCResult_PayeePubKeyErrorZ *NONNULL_PTR orig);
12412 /* @internal */
12413 export function CResult_PayeePubKeyErrorZ_clone(orig: number): number {
12414         if(!isWasmInitialized) {
12415                 throw new Error("initializeWasm() must be awaited first!");
12416         }
12417         const nativeResponseValue = wasm.TS_CResult_PayeePubKeyErrorZ_clone(orig);
12418         return nativeResponseValue;
12419 }
12420         // void CVec_PrivateRouteZ_free(struct LDKCVec_PrivateRouteZ _res);
12421 /* @internal */
12422 export function CVec_PrivateRouteZ_free(_res: number): void {
12423         if(!isWasmInitialized) {
12424                 throw new Error("initializeWasm() must be awaited first!");
12425         }
12426         const nativeResponseValue = wasm.TS_CVec_PrivateRouteZ_free(_res);
12427         // debug statements here
12428 }
12429         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_ok(struct LDKPositiveTimestamp o);
12430 /* @internal */
12431 export function CResult_PositiveTimestampCreationErrorZ_ok(o: number): number {
12432         if(!isWasmInitialized) {
12433                 throw new Error("initializeWasm() must be awaited first!");
12434         }
12435         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_ok(o);
12436         return nativeResponseValue;
12437 }
12438         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_err(enum LDKCreationError e);
12439 /* @internal */
12440 export function CResult_PositiveTimestampCreationErrorZ_err(e: CreationError): number {
12441         if(!isWasmInitialized) {
12442                 throw new Error("initializeWasm() must be awaited first!");
12443         }
12444         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_err(e);
12445         return nativeResponseValue;
12446 }
12447         // bool CResult_PositiveTimestampCreationErrorZ_is_ok(const struct LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR o);
12448 /* @internal */
12449 export function CResult_PositiveTimestampCreationErrorZ_is_ok(o: number): boolean {
12450         if(!isWasmInitialized) {
12451                 throw new Error("initializeWasm() must be awaited first!");
12452         }
12453         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_is_ok(o);
12454         return nativeResponseValue;
12455 }
12456         // void CResult_PositiveTimestampCreationErrorZ_free(struct LDKCResult_PositiveTimestampCreationErrorZ _res);
12457 /* @internal */
12458 export function CResult_PositiveTimestampCreationErrorZ_free(_res: number): void {
12459         if(!isWasmInitialized) {
12460                 throw new Error("initializeWasm() must be awaited first!");
12461         }
12462         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_free(_res);
12463         // debug statements here
12464 }
12465         // uintptr_t CResult_PositiveTimestampCreationErrorZ_clone_ptr(LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR arg);
12466 /* @internal */
12467 export function CResult_PositiveTimestampCreationErrorZ_clone_ptr(arg: number): number {
12468         if(!isWasmInitialized) {
12469                 throw new Error("initializeWasm() must be awaited first!");
12470         }
12471         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_clone_ptr(arg);
12472         return nativeResponseValue;
12473 }
12474         // struct LDKCResult_PositiveTimestampCreationErrorZ CResult_PositiveTimestampCreationErrorZ_clone(const struct LDKCResult_PositiveTimestampCreationErrorZ *NONNULL_PTR orig);
12475 /* @internal */
12476 export function CResult_PositiveTimestampCreationErrorZ_clone(orig: number): number {
12477         if(!isWasmInitialized) {
12478                 throw new Error("initializeWasm() must be awaited first!");
12479         }
12480         const nativeResponseValue = wasm.TS_CResult_PositiveTimestampCreationErrorZ_clone(orig);
12481         return nativeResponseValue;
12482 }
12483         // struct LDKCResult_NoneSemanticErrorZ CResult_NoneSemanticErrorZ_ok(void);
12484 /* @internal */
12485 export function CResult_NoneSemanticErrorZ_ok(): number {
12486         if(!isWasmInitialized) {
12487                 throw new Error("initializeWasm() must be awaited first!");
12488         }
12489         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_ok();
12490         return nativeResponseValue;
12491 }
12492         // struct LDKCResult_NoneSemanticErrorZ CResult_NoneSemanticErrorZ_err(enum LDKSemanticError e);
12493 /* @internal */
12494 export function CResult_NoneSemanticErrorZ_err(e: SemanticError): number {
12495         if(!isWasmInitialized) {
12496                 throw new Error("initializeWasm() must be awaited first!");
12497         }
12498         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_err(e);
12499         return nativeResponseValue;
12500 }
12501         // bool CResult_NoneSemanticErrorZ_is_ok(const struct LDKCResult_NoneSemanticErrorZ *NONNULL_PTR o);
12502 /* @internal */
12503 export function CResult_NoneSemanticErrorZ_is_ok(o: number): boolean {
12504         if(!isWasmInitialized) {
12505                 throw new Error("initializeWasm() must be awaited first!");
12506         }
12507         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_is_ok(o);
12508         return nativeResponseValue;
12509 }
12510         // void CResult_NoneSemanticErrorZ_free(struct LDKCResult_NoneSemanticErrorZ _res);
12511 /* @internal */
12512 export function CResult_NoneSemanticErrorZ_free(_res: number): void {
12513         if(!isWasmInitialized) {
12514                 throw new Error("initializeWasm() must be awaited first!");
12515         }
12516         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_free(_res);
12517         // debug statements here
12518 }
12519         // uintptr_t CResult_NoneSemanticErrorZ_clone_ptr(LDKCResult_NoneSemanticErrorZ *NONNULL_PTR arg);
12520 /* @internal */
12521 export function CResult_NoneSemanticErrorZ_clone_ptr(arg: number): number {
12522         if(!isWasmInitialized) {
12523                 throw new Error("initializeWasm() must be awaited first!");
12524         }
12525         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_clone_ptr(arg);
12526         return nativeResponseValue;
12527 }
12528         // struct LDKCResult_NoneSemanticErrorZ CResult_NoneSemanticErrorZ_clone(const struct LDKCResult_NoneSemanticErrorZ *NONNULL_PTR orig);
12529 /* @internal */
12530 export function CResult_NoneSemanticErrorZ_clone(orig: number): number {
12531         if(!isWasmInitialized) {
12532                 throw new Error("initializeWasm() must be awaited first!");
12533         }
12534         const nativeResponseValue = wasm.TS_CResult_NoneSemanticErrorZ_clone(orig);
12535         return nativeResponseValue;
12536 }
12537         // struct LDKCResult_InvoiceSemanticErrorZ CResult_InvoiceSemanticErrorZ_ok(struct LDKInvoice o);
12538 /* @internal */
12539 export function CResult_InvoiceSemanticErrorZ_ok(o: number): number {
12540         if(!isWasmInitialized) {
12541                 throw new Error("initializeWasm() must be awaited first!");
12542         }
12543         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_ok(o);
12544         return nativeResponseValue;
12545 }
12546         // struct LDKCResult_InvoiceSemanticErrorZ CResult_InvoiceSemanticErrorZ_err(enum LDKSemanticError e);
12547 /* @internal */
12548 export function CResult_InvoiceSemanticErrorZ_err(e: SemanticError): number {
12549         if(!isWasmInitialized) {
12550                 throw new Error("initializeWasm() must be awaited first!");
12551         }
12552         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_err(e);
12553         return nativeResponseValue;
12554 }
12555         // bool CResult_InvoiceSemanticErrorZ_is_ok(const struct LDKCResult_InvoiceSemanticErrorZ *NONNULL_PTR o);
12556 /* @internal */
12557 export function CResult_InvoiceSemanticErrorZ_is_ok(o: number): boolean {
12558         if(!isWasmInitialized) {
12559                 throw new Error("initializeWasm() must be awaited first!");
12560         }
12561         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_is_ok(o);
12562         return nativeResponseValue;
12563 }
12564         // void CResult_InvoiceSemanticErrorZ_free(struct LDKCResult_InvoiceSemanticErrorZ _res);
12565 /* @internal */
12566 export function CResult_InvoiceSemanticErrorZ_free(_res: number): void {
12567         if(!isWasmInitialized) {
12568                 throw new Error("initializeWasm() must be awaited first!");
12569         }
12570         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_free(_res);
12571         // debug statements here
12572 }
12573         // uintptr_t CResult_InvoiceSemanticErrorZ_clone_ptr(LDKCResult_InvoiceSemanticErrorZ *NONNULL_PTR arg);
12574 /* @internal */
12575 export function CResult_InvoiceSemanticErrorZ_clone_ptr(arg: number): number {
12576         if(!isWasmInitialized) {
12577                 throw new Error("initializeWasm() must be awaited first!");
12578         }
12579         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_clone_ptr(arg);
12580         return nativeResponseValue;
12581 }
12582         // struct LDKCResult_InvoiceSemanticErrorZ CResult_InvoiceSemanticErrorZ_clone(const struct LDKCResult_InvoiceSemanticErrorZ *NONNULL_PTR orig);
12583 /* @internal */
12584 export function CResult_InvoiceSemanticErrorZ_clone(orig: number): number {
12585         if(!isWasmInitialized) {
12586                 throw new Error("initializeWasm() must be awaited first!");
12587         }
12588         const nativeResponseValue = wasm.TS_CResult_InvoiceSemanticErrorZ_clone(orig);
12589         return nativeResponseValue;
12590 }
12591         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_ok(struct LDKDescription o);
12592 /* @internal */
12593 export function CResult_DescriptionCreationErrorZ_ok(o: number): number {
12594         if(!isWasmInitialized) {
12595                 throw new Error("initializeWasm() must be awaited first!");
12596         }
12597         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_ok(o);
12598         return nativeResponseValue;
12599 }
12600         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_err(enum LDKCreationError e);
12601 /* @internal */
12602 export function CResult_DescriptionCreationErrorZ_err(e: CreationError): number {
12603         if(!isWasmInitialized) {
12604                 throw new Error("initializeWasm() must be awaited first!");
12605         }
12606         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_err(e);
12607         return nativeResponseValue;
12608 }
12609         // bool CResult_DescriptionCreationErrorZ_is_ok(const struct LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR o);
12610 /* @internal */
12611 export function CResult_DescriptionCreationErrorZ_is_ok(o: number): boolean {
12612         if(!isWasmInitialized) {
12613                 throw new Error("initializeWasm() must be awaited first!");
12614         }
12615         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_is_ok(o);
12616         return nativeResponseValue;
12617 }
12618         // void CResult_DescriptionCreationErrorZ_free(struct LDKCResult_DescriptionCreationErrorZ _res);
12619 /* @internal */
12620 export function CResult_DescriptionCreationErrorZ_free(_res: number): void {
12621         if(!isWasmInitialized) {
12622                 throw new Error("initializeWasm() must be awaited first!");
12623         }
12624         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_free(_res);
12625         // debug statements here
12626 }
12627         // uintptr_t CResult_DescriptionCreationErrorZ_clone_ptr(LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR arg);
12628 /* @internal */
12629 export function CResult_DescriptionCreationErrorZ_clone_ptr(arg: number): number {
12630         if(!isWasmInitialized) {
12631                 throw new Error("initializeWasm() must be awaited first!");
12632         }
12633         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_clone_ptr(arg);
12634         return nativeResponseValue;
12635 }
12636         // struct LDKCResult_DescriptionCreationErrorZ CResult_DescriptionCreationErrorZ_clone(const struct LDKCResult_DescriptionCreationErrorZ *NONNULL_PTR orig);
12637 /* @internal */
12638 export function CResult_DescriptionCreationErrorZ_clone(orig: number): number {
12639         if(!isWasmInitialized) {
12640                 throw new Error("initializeWasm() must be awaited first!");
12641         }
12642         const nativeResponseValue = wasm.TS_CResult_DescriptionCreationErrorZ_clone(orig);
12643         return nativeResponseValue;
12644 }
12645         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_ok(struct LDKPrivateRoute o);
12646 /* @internal */
12647 export function CResult_PrivateRouteCreationErrorZ_ok(o: number): number {
12648         if(!isWasmInitialized) {
12649                 throw new Error("initializeWasm() must be awaited first!");
12650         }
12651         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_ok(o);
12652         return nativeResponseValue;
12653 }
12654         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_err(enum LDKCreationError e);
12655 /* @internal */
12656 export function CResult_PrivateRouteCreationErrorZ_err(e: CreationError): number {
12657         if(!isWasmInitialized) {
12658                 throw new Error("initializeWasm() must be awaited first!");
12659         }
12660         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_err(e);
12661         return nativeResponseValue;
12662 }
12663         // bool CResult_PrivateRouteCreationErrorZ_is_ok(const struct LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR o);
12664 /* @internal */
12665 export function CResult_PrivateRouteCreationErrorZ_is_ok(o: number): boolean {
12666         if(!isWasmInitialized) {
12667                 throw new Error("initializeWasm() must be awaited first!");
12668         }
12669         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_is_ok(o);
12670         return nativeResponseValue;
12671 }
12672         // void CResult_PrivateRouteCreationErrorZ_free(struct LDKCResult_PrivateRouteCreationErrorZ _res);
12673 /* @internal */
12674 export function CResult_PrivateRouteCreationErrorZ_free(_res: number): void {
12675         if(!isWasmInitialized) {
12676                 throw new Error("initializeWasm() must be awaited first!");
12677         }
12678         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_free(_res);
12679         // debug statements here
12680 }
12681         // uintptr_t CResult_PrivateRouteCreationErrorZ_clone_ptr(LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR arg);
12682 /* @internal */
12683 export function CResult_PrivateRouteCreationErrorZ_clone_ptr(arg: number): number {
12684         if(!isWasmInitialized) {
12685                 throw new Error("initializeWasm() must be awaited first!");
12686         }
12687         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_clone_ptr(arg);
12688         return nativeResponseValue;
12689 }
12690         // struct LDKCResult_PrivateRouteCreationErrorZ CResult_PrivateRouteCreationErrorZ_clone(const struct LDKCResult_PrivateRouteCreationErrorZ *NONNULL_PTR orig);
12691 /* @internal */
12692 export function CResult_PrivateRouteCreationErrorZ_clone(orig: number): number {
12693         if(!isWasmInitialized) {
12694                 throw new Error("initializeWasm() must be awaited first!");
12695         }
12696         const nativeResponseValue = wasm.TS_CResult_PrivateRouteCreationErrorZ_clone(orig);
12697         return nativeResponseValue;
12698 }
12699         // struct LDKCResult_StringErrorZ CResult_StringErrorZ_ok(struct LDKStr o);
12700 /* @internal */
12701 export function CResult_StringErrorZ_ok(o: number): number {
12702         if(!isWasmInitialized) {
12703                 throw new Error("initializeWasm() must be awaited first!");
12704         }
12705         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_ok(o);
12706         return nativeResponseValue;
12707 }
12708         // struct LDKCResult_StringErrorZ CResult_StringErrorZ_err(enum LDKSecp256k1Error e);
12709 /* @internal */
12710 export function CResult_StringErrorZ_err(e: Secp256k1Error): number {
12711         if(!isWasmInitialized) {
12712                 throw new Error("initializeWasm() must be awaited first!");
12713         }
12714         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_err(e);
12715         return nativeResponseValue;
12716 }
12717         // bool CResult_StringErrorZ_is_ok(const struct LDKCResult_StringErrorZ *NONNULL_PTR o);
12718 /* @internal */
12719 export function CResult_StringErrorZ_is_ok(o: number): boolean {
12720         if(!isWasmInitialized) {
12721                 throw new Error("initializeWasm() must be awaited first!");
12722         }
12723         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_is_ok(o);
12724         return nativeResponseValue;
12725 }
12726         // void CResult_StringErrorZ_free(struct LDKCResult_StringErrorZ _res);
12727 /* @internal */
12728 export function CResult_StringErrorZ_free(_res: number): void {
12729         if(!isWasmInitialized) {
12730                 throw new Error("initializeWasm() must be awaited first!");
12731         }
12732         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_free(_res);
12733         // debug statements here
12734 }
12735         // uintptr_t CResult_StringErrorZ_clone_ptr(LDKCResult_StringErrorZ *NONNULL_PTR arg);
12736 /* @internal */
12737 export function CResult_StringErrorZ_clone_ptr(arg: number): number {
12738         if(!isWasmInitialized) {
12739                 throw new Error("initializeWasm() must be awaited first!");
12740         }
12741         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_clone_ptr(arg);
12742         return nativeResponseValue;
12743 }
12744         // struct LDKCResult_StringErrorZ CResult_StringErrorZ_clone(const struct LDKCResult_StringErrorZ *NONNULL_PTR orig);
12745 /* @internal */
12746 export function CResult_StringErrorZ_clone(orig: number): number {
12747         if(!isWasmInitialized) {
12748                 throw new Error("initializeWasm() must be awaited first!");
12749         }
12750         const nativeResponseValue = wasm.TS_CResult_StringErrorZ_clone(orig);
12751         return nativeResponseValue;
12752 }
12753         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_ok(struct LDKChannelMonitorUpdate o);
12754 /* @internal */
12755 export function CResult_ChannelMonitorUpdateDecodeErrorZ_ok(o: number): number {
12756         if(!isWasmInitialized) {
12757                 throw new Error("initializeWasm() must be awaited first!");
12758         }
12759         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_ok(o);
12760         return nativeResponseValue;
12761 }
12762         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_err(struct LDKDecodeError e);
12763 /* @internal */
12764 export function CResult_ChannelMonitorUpdateDecodeErrorZ_err(e: number): number {
12765         if(!isWasmInitialized) {
12766                 throw new Error("initializeWasm() must be awaited first!");
12767         }
12768         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_err(e);
12769         return nativeResponseValue;
12770 }
12771         // bool CResult_ChannelMonitorUpdateDecodeErrorZ_is_ok(const struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR o);
12772 /* @internal */
12773 export function CResult_ChannelMonitorUpdateDecodeErrorZ_is_ok(o: number): boolean {
12774         if(!isWasmInitialized) {
12775                 throw new Error("initializeWasm() must be awaited first!");
12776         }
12777         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_is_ok(o);
12778         return nativeResponseValue;
12779 }
12780         // void CResult_ChannelMonitorUpdateDecodeErrorZ_free(struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ _res);
12781 /* @internal */
12782 export function CResult_ChannelMonitorUpdateDecodeErrorZ_free(_res: number): void {
12783         if(!isWasmInitialized) {
12784                 throw new Error("initializeWasm() must be awaited first!");
12785         }
12786         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_free(_res);
12787         // debug statements here
12788 }
12789         // uintptr_t CResult_ChannelMonitorUpdateDecodeErrorZ_clone_ptr(LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR arg);
12790 /* @internal */
12791 export function CResult_ChannelMonitorUpdateDecodeErrorZ_clone_ptr(arg: number): number {
12792         if(!isWasmInitialized) {
12793                 throw new Error("initializeWasm() must be awaited first!");
12794         }
12795         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_clone_ptr(arg);
12796         return nativeResponseValue;
12797 }
12798         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ CResult_ChannelMonitorUpdateDecodeErrorZ_clone(const struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ *NONNULL_PTR orig);
12799 /* @internal */
12800 export function CResult_ChannelMonitorUpdateDecodeErrorZ_clone(orig: number): number {
12801         if(!isWasmInitialized) {
12802                 throw new Error("initializeWasm() must be awaited first!");
12803         }
12804         const nativeResponseValue = wasm.TS_CResult_ChannelMonitorUpdateDecodeErrorZ_clone(orig);
12805         return nativeResponseValue;
12806 }
12807         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_some(struct LDKMonitorEvent o);
12808 /* @internal */
12809 export function COption_MonitorEventZ_some(o: number): number {
12810         if(!isWasmInitialized) {
12811                 throw new Error("initializeWasm() must be awaited first!");
12812         }
12813         const nativeResponseValue = wasm.TS_COption_MonitorEventZ_some(o);
12814         return nativeResponseValue;
12815 }
12816         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_none(void);
12817 /* @internal */
12818 export function COption_MonitorEventZ_none(): number {
12819         if(!isWasmInitialized) {
12820                 throw new Error("initializeWasm() must be awaited first!");
12821         }
12822         const nativeResponseValue = wasm.TS_COption_MonitorEventZ_none();
12823         return nativeResponseValue;
12824 }
12825         // void COption_MonitorEventZ_free(struct LDKCOption_MonitorEventZ _res);
12826 /* @internal */
12827 export function COption_MonitorEventZ_free(_res: number): void {
12828         if(!isWasmInitialized) {
12829                 throw new Error("initializeWasm() must be awaited first!");
12830         }
12831         const nativeResponseValue = wasm.TS_COption_MonitorEventZ_free(_res);
12832         // debug statements here
12833 }
12834         // uintptr_t COption_MonitorEventZ_clone_ptr(LDKCOption_MonitorEventZ *NONNULL_PTR arg);
12835 /* @internal */
12836 export function COption_MonitorEventZ_clone_ptr(arg: number): number {
12837         if(!isWasmInitialized) {
12838                 throw new Error("initializeWasm() must be awaited first!");
12839         }
12840         const nativeResponseValue = wasm.TS_COption_MonitorEventZ_clone_ptr(arg);
12841         return nativeResponseValue;
12842 }
12843         // struct LDKCOption_MonitorEventZ COption_MonitorEventZ_clone(const struct LDKCOption_MonitorEventZ *NONNULL_PTR orig);
12844 /* @internal */
12845 export function COption_MonitorEventZ_clone(orig: number): number {
12846         if(!isWasmInitialized) {
12847                 throw new Error("initializeWasm() must be awaited first!");
12848         }
12849         const nativeResponseValue = wasm.TS_COption_MonitorEventZ_clone(orig);
12850         return nativeResponseValue;
12851 }
12852         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_ok(struct LDKCOption_MonitorEventZ o);
12853 /* @internal */
12854 export function CResult_COption_MonitorEventZDecodeErrorZ_ok(o: number): number {
12855         if(!isWasmInitialized) {
12856                 throw new Error("initializeWasm() must be awaited first!");
12857         }
12858         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_ok(o);
12859         return nativeResponseValue;
12860 }
12861         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_err(struct LDKDecodeError e);
12862 /* @internal */
12863 export function CResult_COption_MonitorEventZDecodeErrorZ_err(e: number): number {
12864         if(!isWasmInitialized) {
12865                 throw new Error("initializeWasm() must be awaited first!");
12866         }
12867         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_err(e);
12868         return nativeResponseValue;
12869 }
12870         // bool CResult_COption_MonitorEventZDecodeErrorZ_is_ok(const struct LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR o);
12871 /* @internal */
12872 export function CResult_COption_MonitorEventZDecodeErrorZ_is_ok(o: number): boolean {
12873         if(!isWasmInitialized) {
12874                 throw new Error("initializeWasm() must be awaited first!");
12875         }
12876         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_is_ok(o);
12877         return nativeResponseValue;
12878 }
12879         // void CResult_COption_MonitorEventZDecodeErrorZ_free(struct LDKCResult_COption_MonitorEventZDecodeErrorZ _res);
12880 /* @internal */
12881 export function CResult_COption_MonitorEventZDecodeErrorZ_free(_res: number): void {
12882         if(!isWasmInitialized) {
12883                 throw new Error("initializeWasm() must be awaited first!");
12884         }
12885         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_free(_res);
12886         // debug statements here
12887 }
12888         // uintptr_t CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR arg);
12889 /* @internal */
12890 export function CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(arg: number): number {
12891         if(!isWasmInitialized) {
12892                 throw new Error("initializeWasm() must be awaited first!");
12893         }
12894         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_clone_ptr(arg);
12895         return nativeResponseValue;
12896 }
12897         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ CResult_COption_MonitorEventZDecodeErrorZ_clone(const struct LDKCResult_COption_MonitorEventZDecodeErrorZ *NONNULL_PTR orig);
12898 /* @internal */
12899 export function CResult_COption_MonitorEventZDecodeErrorZ_clone(orig: number): number {
12900         if(!isWasmInitialized) {
12901                 throw new Error("initializeWasm() must be awaited first!");
12902         }
12903         const nativeResponseValue = wasm.TS_CResult_COption_MonitorEventZDecodeErrorZ_clone(orig);
12904         return nativeResponseValue;
12905 }
12906         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_ok(struct LDKHTLCUpdate o);
12907 /* @internal */
12908 export function CResult_HTLCUpdateDecodeErrorZ_ok(o: number): number {
12909         if(!isWasmInitialized) {
12910                 throw new Error("initializeWasm() must be awaited first!");
12911         }
12912         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_ok(o);
12913         return nativeResponseValue;
12914 }
12915         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_err(struct LDKDecodeError e);
12916 /* @internal */
12917 export function CResult_HTLCUpdateDecodeErrorZ_err(e: number): number {
12918         if(!isWasmInitialized) {
12919                 throw new Error("initializeWasm() must be awaited first!");
12920         }
12921         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_err(e);
12922         return nativeResponseValue;
12923 }
12924         // bool CResult_HTLCUpdateDecodeErrorZ_is_ok(const struct LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR o);
12925 /* @internal */
12926 export function CResult_HTLCUpdateDecodeErrorZ_is_ok(o: number): boolean {
12927         if(!isWasmInitialized) {
12928                 throw new Error("initializeWasm() must be awaited first!");
12929         }
12930         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_is_ok(o);
12931         return nativeResponseValue;
12932 }
12933         // void CResult_HTLCUpdateDecodeErrorZ_free(struct LDKCResult_HTLCUpdateDecodeErrorZ _res);
12934 /* @internal */
12935 export function CResult_HTLCUpdateDecodeErrorZ_free(_res: number): void {
12936         if(!isWasmInitialized) {
12937                 throw new Error("initializeWasm() must be awaited first!");
12938         }
12939         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_free(_res);
12940         // debug statements here
12941 }
12942         // uintptr_t CResult_HTLCUpdateDecodeErrorZ_clone_ptr(LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR arg);
12943 /* @internal */
12944 export function CResult_HTLCUpdateDecodeErrorZ_clone_ptr(arg: number): number {
12945         if(!isWasmInitialized) {
12946                 throw new Error("initializeWasm() must be awaited first!");
12947         }
12948         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_clone_ptr(arg);
12949         return nativeResponseValue;
12950 }
12951         // struct LDKCResult_HTLCUpdateDecodeErrorZ CResult_HTLCUpdateDecodeErrorZ_clone(const struct LDKCResult_HTLCUpdateDecodeErrorZ *NONNULL_PTR orig);
12952 /* @internal */
12953 export function CResult_HTLCUpdateDecodeErrorZ_clone(orig: number): number {
12954         if(!isWasmInitialized) {
12955                 throw new Error("initializeWasm() must be awaited first!");
12956         }
12957         const nativeResponseValue = wasm.TS_CResult_HTLCUpdateDecodeErrorZ_clone(orig);
12958         return nativeResponseValue;
12959 }
12960         // uintptr_t C2Tuple_OutPointScriptZ_clone_ptr(LDKC2Tuple_OutPointScriptZ *NONNULL_PTR arg);
12961 /* @internal */
12962 export function C2Tuple_OutPointScriptZ_clone_ptr(arg: number): number {
12963         if(!isWasmInitialized) {
12964                 throw new Error("initializeWasm() must be awaited first!");
12965         }
12966         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_clone_ptr(arg);
12967         return nativeResponseValue;
12968 }
12969         // struct LDKC2Tuple_OutPointScriptZ C2Tuple_OutPointScriptZ_clone(const struct LDKC2Tuple_OutPointScriptZ *NONNULL_PTR orig);
12970 /* @internal */
12971 export function C2Tuple_OutPointScriptZ_clone(orig: number): number {
12972         if(!isWasmInitialized) {
12973                 throw new Error("initializeWasm() must be awaited first!");
12974         }
12975         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_clone(orig);
12976         return nativeResponseValue;
12977 }
12978         // struct LDKC2Tuple_OutPointScriptZ C2Tuple_OutPointScriptZ_new(struct LDKOutPoint a, struct LDKCVec_u8Z b);
12979 /* @internal */
12980 export function C2Tuple_OutPointScriptZ_new(a: number, b: number): number {
12981         if(!isWasmInitialized) {
12982                 throw new Error("initializeWasm() must be awaited first!");
12983         }
12984         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_new(a, b);
12985         return nativeResponseValue;
12986 }
12987         // void C2Tuple_OutPointScriptZ_free(struct LDKC2Tuple_OutPointScriptZ _res);
12988 /* @internal */
12989 export function C2Tuple_OutPointScriptZ_free(_res: number): void {
12990         if(!isWasmInitialized) {
12991                 throw new Error("initializeWasm() must be awaited first!");
12992         }
12993         const nativeResponseValue = wasm.TS_C2Tuple_OutPointScriptZ_free(_res);
12994         // debug statements here
12995 }
12996         // uintptr_t C2Tuple_u32ScriptZ_clone_ptr(LDKC2Tuple_u32ScriptZ *NONNULL_PTR arg);
12997 /* @internal */
12998 export function C2Tuple_u32ScriptZ_clone_ptr(arg: number): number {
12999         if(!isWasmInitialized) {
13000                 throw new Error("initializeWasm() must be awaited first!");
13001         }
13002         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_clone_ptr(arg);
13003         return nativeResponseValue;
13004 }
13005         // struct LDKC2Tuple_u32ScriptZ C2Tuple_u32ScriptZ_clone(const struct LDKC2Tuple_u32ScriptZ *NONNULL_PTR orig);
13006 /* @internal */
13007 export function C2Tuple_u32ScriptZ_clone(orig: number): number {
13008         if(!isWasmInitialized) {
13009                 throw new Error("initializeWasm() must be awaited first!");
13010         }
13011         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_clone(orig);
13012         return nativeResponseValue;
13013 }
13014         // struct LDKC2Tuple_u32ScriptZ C2Tuple_u32ScriptZ_new(uint32_t a, struct LDKCVec_u8Z b);
13015 /* @internal */
13016 export function C2Tuple_u32ScriptZ_new(a: number, b: number): number {
13017         if(!isWasmInitialized) {
13018                 throw new Error("initializeWasm() must be awaited first!");
13019         }
13020         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_new(a, b);
13021         return nativeResponseValue;
13022 }
13023         // void C2Tuple_u32ScriptZ_free(struct LDKC2Tuple_u32ScriptZ _res);
13024 /* @internal */
13025 export function C2Tuple_u32ScriptZ_free(_res: number): void {
13026         if(!isWasmInitialized) {
13027                 throw new Error("initializeWasm() must be awaited first!");
13028         }
13029         const nativeResponseValue = wasm.TS_C2Tuple_u32ScriptZ_free(_res);
13030         // debug statements here
13031 }
13032         // void CVec_C2Tuple_u32ScriptZZ_free(struct LDKCVec_C2Tuple_u32ScriptZZ _res);
13033 /* @internal */
13034 export function CVec_C2Tuple_u32ScriptZZ_free(_res: number): void {
13035         if(!isWasmInitialized) {
13036                 throw new Error("initializeWasm() must be awaited first!");
13037         }
13038         const nativeResponseValue = wasm.TS_CVec_C2Tuple_u32ScriptZZ_free(_res);
13039         // debug statements here
13040 }
13041         // uintptr_t C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone_ptr(LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ *NONNULL_PTR arg);
13042 /* @internal */
13043 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone_ptr(arg: number): number {
13044         if(!isWasmInitialized) {
13045                 throw new Error("initializeWasm() must be awaited first!");
13046         }
13047         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone_ptr(arg);
13048         return nativeResponseValue;
13049 }
13050         // struct LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone(const struct LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ *NONNULL_PTR orig);
13051 /* @internal */
13052 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone(orig: number): number {
13053         if(!isWasmInitialized) {
13054                 throw new Error("initializeWasm() must be awaited first!");
13055         }
13056         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_clone(orig);
13057         return nativeResponseValue;
13058 }
13059         // struct LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_new(struct LDKThirtyTwoBytes a, struct LDKCVec_C2Tuple_u32ScriptZZ b);
13060 /* @internal */
13061 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_new(a: number, b: number): number {
13062         if(!isWasmInitialized) {
13063                 throw new Error("initializeWasm() must be awaited first!");
13064         }
13065         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_new(a, b);
13066         return nativeResponseValue;
13067 }
13068         // void C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_free(struct LDKC2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ _res);
13069 /* @internal */
13070 export function C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_free(_res: number): void {
13071         if(!isWasmInitialized) {
13072                 throw new Error("initializeWasm() must be awaited first!");
13073         }
13074         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZ_free(_res);
13075         // debug statements here
13076 }
13077         // void CVec_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZZ_free(struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZZ _res);
13078 /* @internal */
13079 export function CVec_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZZ_free(_res: number): void {
13080         if(!isWasmInitialized) {
13081                 throw new Error("initializeWasm() must be awaited first!");
13082         }
13083         const nativeResponseValue = wasm.TS_CVec_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZZ_free(_res);
13084         // debug statements here
13085 }
13086         // void CVec_EventZ_free(struct LDKCVec_EventZ _res);
13087 /* @internal */
13088 export function CVec_EventZ_free(_res: number): void {
13089         if(!isWasmInitialized) {
13090                 throw new Error("initializeWasm() must be awaited first!");
13091         }
13092         const nativeResponseValue = wasm.TS_CVec_EventZ_free(_res);
13093         // debug statements here
13094 }
13095         // void CVec_TransactionZ_free(struct LDKCVec_TransactionZ _res);
13096 /* @internal */
13097 export function CVec_TransactionZ_free(_res: number): void {
13098         if(!isWasmInitialized) {
13099                 throw new Error("initializeWasm() must be awaited first!");
13100         }
13101         const nativeResponseValue = wasm.TS_CVec_TransactionZ_free(_res);
13102         // debug statements here
13103 }
13104         // uintptr_t C2Tuple_u32TxOutZ_clone_ptr(LDKC2Tuple_u32TxOutZ *NONNULL_PTR arg);
13105 /* @internal */
13106 export function C2Tuple_u32TxOutZ_clone_ptr(arg: number): number {
13107         if(!isWasmInitialized) {
13108                 throw new Error("initializeWasm() must be awaited first!");
13109         }
13110         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_clone_ptr(arg);
13111         return nativeResponseValue;
13112 }
13113         // struct LDKC2Tuple_u32TxOutZ C2Tuple_u32TxOutZ_clone(const struct LDKC2Tuple_u32TxOutZ *NONNULL_PTR orig);
13114 /* @internal */
13115 export function C2Tuple_u32TxOutZ_clone(orig: number): number {
13116         if(!isWasmInitialized) {
13117                 throw new Error("initializeWasm() must be awaited first!");
13118         }
13119         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_clone(orig);
13120         return nativeResponseValue;
13121 }
13122         // struct LDKC2Tuple_u32TxOutZ C2Tuple_u32TxOutZ_new(uint32_t a, struct LDKTxOut b);
13123 /* @internal */
13124 export function C2Tuple_u32TxOutZ_new(a: number, b: number): number {
13125         if(!isWasmInitialized) {
13126                 throw new Error("initializeWasm() must be awaited first!");
13127         }
13128         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_new(a, b);
13129         return nativeResponseValue;
13130 }
13131         // void C2Tuple_u32TxOutZ_free(struct LDKC2Tuple_u32TxOutZ _res);
13132 /* @internal */
13133 export function C2Tuple_u32TxOutZ_free(_res: number): void {
13134         if(!isWasmInitialized) {
13135                 throw new Error("initializeWasm() must be awaited first!");
13136         }
13137         const nativeResponseValue = wasm.TS_C2Tuple_u32TxOutZ_free(_res);
13138         // debug statements here
13139 }
13140         // void CVec_C2Tuple_u32TxOutZZ_free(struct LDKCVec_C2Tuple_u32TxOutZZ _res);
13141 /* @internal */
13142 export function CVec_C2Tuple_u32TxOutZZ_free(_res: number): void {
13143         if(!isWasmInitialized) {
13144                 throw new Error("initializeWasm() must be awaited first!");
13145         }
13146         const nativeResponseValue = wasm.TS_CVec_C2Tuple_u32TxOutZZ_free(_res);
13147         // debug statements here
13148 }
13149         // uintptr_t C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone_ptr(LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR arg);
13150 /* @internal */
13151 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone_ptr(arg: number): number {
13152         if(!isWasmInitialized) {
13153                 throw new Error("initializeWasm() must be awaited first!");
13154         }
13155         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone_ptr(arg);
13156         return nativeResponseValue;
13157 }
13158         // struct LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone(const struct LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ *NONNULL_PTR orig);
13159 /* @internal */
13160 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone(orig: number): number {
13161         if(!isWasmInitialized) {
13162                 throw new Error("initializeWasm() must be awaited first!");
13163         }
13164         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_clone(orig);
13165         return nativeResponseValue;
13166 }
13167         // struct LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_new(struct LDKThirtyTwoBytes a, struct LDKCVec_C2Tuple_u32TxOutZZ b);
13168 /* @internal */
13169 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_new(a: number, b: number): number {
13170         if(!isWasmInitialized) {
13171                 throw new Error("initializeWasm() must be awaited first!");
13172         }
13173         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_new(a, b);
13174         return nativeResponseValue;
13175 }
13176         // void C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_free(struct LDKC2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ _res);
13177 /* @internal */
13178 export function C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_free(_res: number): void {
13179         if(!isWasmInitialized) {
13180                 throw new Error("initializeWasm() must be awaited first!");
13181         }
13182         const nativeResponseValue = wasm.TS_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZ_free(_res);
13183         // debug statements here
13184 }
13185         // void CVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ_free(struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ _res);
13186 /* @internal */
13187 export function CVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ_free(_res: number): void {
13188         if(!isWasmInitialized) {
13189                 throw new Error("initializeWasm() must be awaited first!");
13190         }
13191         const nativeResponseValue = wasm.TS_CVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ_free(_res);
13192         // debug statements here
13193 }
13194         // void CVec_BalanceZ_free(struct LDKCVec_BalanceZ _res);
13195 /* @internal */
13196 export function CVec_BalanceZ_free(_res: number): void {
13197         if(!isWasmInitialized) {
13198                 throw new Error("initializeWasm() must be awaited first!");
13199         }
13200         const nativeResponseValue = wasm.TS_CVec_BalanceZ_free(_res);
13201         // debug statements here
13202 }
13203         // uintptr_t C2Tuple_BlockHashChannelMonitorZ_clone_ptr(LDKC2Tuple_BlockHashChannelMonitorZ *NONNULL_PTR arg);
13204 /* @internal */
13205 export function C2Tuple_BlockHashChannelMonitorZ_clone_ptr(arg: number): number {
13206         if(!isWasmInitialized) {
13207                 throw new Error("initializeWasm() must be awaited first!");
13208         }
13209         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_clone_ptr(arg);
13210         return nativeResponseValue;
13211 }
13212         // struct LDKC2Tuple_BlockHashChannelMonitorZ C2Tuple_BlockHashChannelMonitorZ_clone(const struct LDKC2Tuple_BlockHashChannelMonitorZ *NONNULL_PTR orig);
13213 /* @internal */
13214 export function C2Tuple_BlockHashChannelMonitorZ_clone(orig: number): number {
13215         if(!isWasmInitialized) {
13216                 throw new Error("initializeWasm() must be awaited first!");
13217         }
13218         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_clone(orig);
13219         return nativeResponseValue;
13220 }
13221         // struct LDKC2Tuple_BlockHashChannelMonitorZ C2Tuple_BlockHashChannelMonitorZ_new(struct LDKThirtyTwoBytes a, struct LDKChannelMonitor b);
13222 /* @internal */
13223 export function C2Tuple_BlockHashChannelMonitorZ_new(a: number, b: number): number {
13224         if(!isWasmInitialized) {
13225                 throw new Error("initializeWasm() must be awaited first!");
13226         }
13227         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_new(a, b);
13228         return nativeResponseValue;
13229 }
13230         // void C2Tuple_BlockHashChannelMonitorZ_free(struct LDKC2Tuple_BlockHashChannelMonitorZ _res);
13231 /* @internal */
13232 export function C2Tuple_BlockHashChannelMonitorZ_free(_res: number): void {
13233         if(!isWasmInitialized) {
13234                 throw new Error("initializeWasm() must be awaited first!");
13235         }
13236         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_free(_res);
13237         // debug statements here
13238 }
13239         // struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(struct LDKC2Tuple_BlockHashChannelMonitorZ o);
13240 /* @internal */
13241 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(o: number): number {
13242         if(!isWasmInitialized) {
13243                 throw new Error("initializeWasm() must be awaited first!");
13244         }
13245         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_ok(o);
13246         return nativeResponseValue;
13247 }
13248         // struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(struct LDKDecodeError e);
13249 /* @internal */
13250 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(e: number): number {
13251         if(!isWasmInitialized) {
13252                 throw new Error("initializeWasm() must be awaited first!");
13253         }
13254         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_err(e);
13255         return nativeResponseValue;
13256 }
13257         // bool CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_is_ok(const struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ *NONNULL_PTR o);
13258 /* @internal */
13259 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_is_ok(o: number): boolean {
13260         if(!isWasmInitialized) {
13261                 throw new Error("initializeWasm() must be awaited first!");
13262         }
13263         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_is_ok(o);
13264         return nativeResponseValue;
13265 }
13266         // void CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ _res);
13267 /* @internal */
13268 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(_res: number): void {
13269         if(!isWasmInitialized) {
13270                 throw new Error("initializeWasm() must be awaited first!");
13271         }
13272         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_free(_res);
13273         // debug statements here
13274 }
13275         // uintptr_t CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone_ptr(LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ *NONNULL_PTR arg);
13276 /* @internal */
13277 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone_ptr(arg: number): number {
13278         if(!isWasmInitialized) {
13279                 throw new Error("initializeWasm() must be awaited first!");
13280         }
13281         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone_ptr(arg);
13282         return nativeResponseValue;
13283 }
13284         // struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone(const struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ *NONNULL_PTR orig);
13285 /* @internal */
13286 export function CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone(orig: number): number {
13287         if(!isWasmInitialized) {
13288                 throw new Error("initializeWasm() must be awaited first!");
13289         }
13290         const nativeResponseValue = wasm.TS_CResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ_clone(orig);
13291         return nativeResponseValue;
13292 }
13293         // uintptr_t C2Tuple_PublicKeyTypeZ_clone_ptr(LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR arg);
13294 /* @internal */
13295 export function C2Tuple_PublicKeyTypeZ_clone_ptr(arg: number): number {
13296         if(!isWasmInitialized) {
13297                 throw new Error("initializeWasm() must be awaited first!");
13298         }
13299         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_clone_ptr(arg);
13300         return nativeResponseValue;
13301 }
13302         // struct LDKC2Tuple_PublicKeyTypeZ C2Tuple_PublicKeyTypeZ_clone(const struct LDKC2Tuple_PublicKeyTypeZ *NONNULL_PTR orig);
13303 /* @internal */
13304 export function C2Tuple_PublicKeyTypeZ_clone(orig: number): number {
13305         if(!isWasmInitialized) {
13306                 throw new Error("initializeWasm() must be awaited first!");
13307         }
13308         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_clone(orig);
13309         return nativeResponseValue;
13310 }
13311         // struct LDKC2Tuple_PublicKeyTypeZ C2Tuple_PublicKeyTypeZ_new(struct LDKPublicKey a, struct LDKType b);
13312 /* @internal */
13313 export function C2Tuple_PublicKeyTypeZ_new(a: number, b: number): number {
13314         if(!isWasmInitialized) {
13315                 throw new Error("initializeWasm() must be awaited first!");
13316         }
13317         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_new(a, b);
13318         return nativeResponseValue;
13319 }
13320         // void C2Tuple_PublicKeyTypeZ_free(struct LDKC2Tuple_PublicKeyTypeZ _res);
13321 /* @internal */
13322 export function C2Tuple_PublicKeyTypeZ_free(_res: number): void {
13323         if(!isWasmInitialized) {
13324                 throw new Error("initializeWasm() must be awaited first!");
13325         }
13326         const nativeResponseValue = wasm.TS_C2Tuple_PublicKeyTypeZ_free(_res);
13327         // debug statements here
13328 }
13329         // void CVec_C2Tuple_PublicKeyTypeZZ_free(struct LDKCVec_C2Tuple_PublicKeyTypeZZ _res);
13330 /* @internal */
13331 export function CVec_C2Tuple_PublicKeyTypeZZ_free(_res: number): void {
13332         if(!isWasmInitialized) {
13333                 throw new Error("initializeWasm() must be awaited first!");
13334         }
13335         const nativeResponseValue = wasm.TS_CVec_C2Tuple_PublicKeyTypeZZ_free(_res);
13336         // debug statements here
13337 }
13338         // struct LDKCOption_NetAddressZ COption_NetAddressZ_some(struct LDKNetAddress o);
13339 /* @internal */
13340 export function COption_NetAddressZ_some(o: number): number {
13341         if(!isWasmInitialized) {
13342                 throw new Error("initializeWasm() must be awaited first!");
13343         }
13344         const nativeResponseValue = wasm.TS_COption_NetAddressZ_some(o);
13345         return nativeResponseValue;
13346 }
13347         // struct LDKCOption_NetAddressZ COption_NetAddressZ_none(void);
13348 /* @internal */
13349 export function COption_NetAddressZ_none(): number {
13350         if(!isWasmInitialized) {
13351                 throw new Error("initializeWasm() must be awaited first!");
13352         }
13353         const nativeResponseValue = wasm.TS_COption_NetAddressZ_none();
13354         return nativeResponseValue;
13355 }
13356         // void COption_NetAddressZ_free(struct LDKCOption_NetAddressZ _res);
13357 /* @internal */
13358 export function COption_NetAddressZ_free(_res: number): void {
13359         if(!isWasmInitialized) {
13360                 throw new Error("initializeWasm() must be awaited first!");
13361         }
13362         const nativeResponseValue = wasm.TS_COption_NetAddressZ_free(_res);
13363         // debug statements here
13364 }
13365         // uintptr_t COption_NetAddressZ_clone_ptr(LDKCOption_NetAddressZ *NONNULL_PTR arg);
13366 /* @internal */
13367 export function COption_NetAddressZ_clone_ptr(arg: number): number {
13368         if(!isWasmInitialized) {
13369                 throw new Error("initializeWasm() must be awaited first!");
13370         }
13371         const nativeResponseValue = wasm.TS_COption_NetAddressZ_clone_ptr(arg);
13372         return nativeResponseValue;
13373 }
13374         // struct LDKCOption_NetAddressZ COption_NetAddressZ_clone(const struct LDKCOption_NetAddressZ *NONNULL_PTR orig);
13375 /* @internal */
13376 export function COption_NetAddressZ_clone(orig: number): number {
13377         if(!isWasmInitialized) {
13378                 throw new Error("initializeWasm() must be awaited first!");
13379         }
13380         const nativeResponseValue = wasm.TS_COption_NetAddressZ_clone(orig);
13381         return nativeResponseValue;
13382 }
13383         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_ok(struct LDKCVec_u8Z o);
13384 /* @internal */
13385 export function CResult_CVec_u8ZPeerHandleErrorZ_ok(o: number): number {
13386         if(!isWasmInitialized) {
13387                 throw new Error("initializeWasm() must be awaited first!");
13388         }
13389         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_ok(o);
13390         return nativeResponseValue;
13391 }
13392         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_err(struct LDKPeerHandleError e);
13393 /* @internal */
13394 export function CResult_CVec_u8ZPeerHandleErrorZ_err(e: number): number {
13395         if(!isWasmInitialized) {
13396                 throw new Error("initializeWasm() must be awaited first!");
13397         }
13398         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_err(e);
13399         return nativeResponseValue;
13400 }
13401         // bool CResult_CVec_u8ZPeerHandleErrorZ_is_ok(const struct LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR o);
13402 /* @internal */
13403 export function CResult_CVec_u8ZPeerHandleErrorZ_is_ok(o: number): boolean {
13404         if(!isWasmInitialized) {
13405                 throw new Error("initializeWasm() must be awaited first!");
13406         }
13407         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_is_ok(o);
13408         return nativeResponseValue;
13409 }
13410         // void CResult_CVec_u8ZPeerHandleErrorZ_free(struct LDKCResult_CVec_u8ZPeerHandleErrorZ _res);
13411 /* @internal */
13412 export function CResult_CVec_u8ZPeerHandleErrorZ_free(_res: number): void {
13413         if(!isWasmInitialized) {
13414                 throw new Error("initializeWasm() must be awaited first!");
13415         }
13416         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_free(_res);
13417         // debug statements here
13418 }
13419         // uintptr_t CResult_CVec_u8ZPeerHandleErrorZ_clone_ptr(LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR arg);
13420 /* @internal */
13421 export function CResult_CVec_u8ZPeerHandleErrorZ_clone_ptr(arg: number): number {
13422         if(!isWasmInitialized) {
13423                 throw new Error("initializeWasm() must be awaited first!");
13424         }
13425         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_clone_ptr(arg);
13426         return nativeResponseValue;
13427 }
13428         // struct LDKCResult_CVec_u8ZPeerHandleErrorZ CResult_CVec_u8ZPeerHandleErrorZ_clone(const struct LDKCResult_CVec_u8ZPeerHandleErrorZ *NONNULL_PTR orig);
13429 /* @internal */
13430 export function CResult_CVec_u8ZPeerHandleErrorZ_clone(orig: number): number {
13431         if(!isWasmInitialized) {
13432                 throw new Error("initializeWasm() must be awaited first!");
13433         }
13434         const nativeResponseValue = wasm.TS_CResult_CVec_u8ZPeerHandleErrorZ_clone(orig);
13435         return nativeResponseValue;
13436 }
13437         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_ok(void);
13438 /* @internal */
13439 export function CResult_NonePeerHandleErrorZ_ok(): number {
13440         if(!isWasmInitialized) {
13441                 throw new Error("initializeWasm() must be awaited first!");
13442         }
13443         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_ok();
13444         return nativeResponseValue;
13445 }
13446         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_err(struct LDKPeerHandleError e);
13447 /* @internal */
13448 export function CResult_NonePeerHandleErrorZ_err(e: number): number {
13449         if(!isWasmInitialized) {
13450                 throw new Error("initializeWasm() must be awaited first!");
13451         }
13452         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_err(e);
13453         return nativeResponseValue;
13454 }
13455         // bool CResult_NonePeerHandleErrorZ_is_ok(const struct LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR o);
13456 /* @internal */
13457 export function CResult_NonePeerHandleErrorZ_is_ok(o: number): boolean {
13458         if(!isWasmInitialized) {
13459                 throw new Error("initializeWasm() must be awaited first!");
13460         }
13461         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_is_ok(o);
13462         return nativeResponseValue;
13463 }
13464         // void CResult_NonePeerHandleErrorZ_free(struct LDKCResult_NonePeerHandleErrorZ _res);
13465 /* @internal */
13466 export function CResult_NonePeerHandleErrorZ_free(_res: number): void {
13467         if(!isWasmInitialized) {
13468                 throw new Error("initializeWasm() must be awaited first!");
13469         }
13470         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_free(_res);
13471         // debug statements here
13472 }
13473         // uintptr_t CResult_NonePeerHandleErrorZ_clone_ptr(LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR arg);
13474 /* @internal */
13475 export function CResult_NonePeerHandleErrorZ_clone_ptr(arg: number): number {
13476         if(!isWasmInitialized) {
13477                 throw new Error("initializeWasm() must be awaited first!");
13478         }
13479         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_clone_ptr(arg);
13480         return nativeResponseValue;
13481 }
13482         // struct LDKCResult_NonePeerHandleErrorZ CResult_NonePeerHandleErrorZ_clone(const struct LDKCResult_NonePeerHandleErrorZ *NONNULL_PTR orig);
13483 /* @internal */
13484 export function CResult_NonePeerHandleErrorZ_clone(orig: number): number {
13485         if(!isWasmInitialized) {
13486                 throw new Error("initializeWasm() must be awaited first!");
13487         }
13488         const nativeResponseValue = wasm.TS_CResult_NonePeerHandleErrorZ_clone(orig);
13489         return nativeResponseValue;
13490 }
13491         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_ok(bool o);
13492 /* @internal */
13493 export function CResult_boolPeerHandleErrorZ_ok(o: boolean): number {
13494         if(!isWasmInitialized) {
13495                 throw new Error("initializeWasm() must be awaited first!");
13496         }
13497         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_ok(o);
13498         return nativeResponseValue;
13499 }
13500         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_err(struct LDKPeerHandleError e);
13501 /* @internal */
13502 export function CResult_boolPeerHandleErrorZ_err(e: number): number {
13503         if(!isWasmInitialized) {
13504                 throw new Error("initializeWasm() must be awaited first!");
13505         }
13506         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_err(e);
13507         return nativeResponseValue;
13508 }
13509         // bool CResult_boolPeerHandleErrorZ_is_ok(const struct LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR o);
13510 /* @internal */
13511 export function CResult_boolPeerHandleErrorZ_is_ok(o: number): boolean {
13512         if(!isWasmInitialized) {
13513                 throw new Error("initializeWasm() must be awaited first!");
13514         }
13515         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_is_ok(o);
13516         return nativeResponseValue;
13517 }
13518         // void CResult_boolPeerHandleErrorZ_free(struct LDKCResult_boolPeerHandleErrorZ _res);
13519 /* @internal */
13520 export function CResult_boolPeerHandleErrorZ_free(_res: number): void {
13521         if(!isWasmInitialized) {
13522                 throw new Error("initializeWasm() must be awaited first!");
13523         }
13524         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_free(_res);
13525         // debug statements here
13526 }
13527         // uintptr_t CResult_boolPeerHandleErrorZ_clone_ptr(LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR arg);
13528 /* @internal */
13529 export function CResult_boolPeerHandleErrorZ_clone_ptr(arg: number): number {
13530         if(!isWasmInitialized) {
13531                 throw new Error("initializeWasm() must be awaited first!");
13532         }
13533         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_clone_ptr(arg);
13534         return nativeResponseValue;
13535 }
13536         // struct LDKCResult_boolPeerHandleErrorZ CResult_boolPeerHandleErrorZ_clone(const struct LDKCResult_boolPeerHandleErrorZ *NONNULL_PTR orig);
13537 /* @internal */
13538 export function CResult_boolPeerHandleErrorZ_clone(orig: number): number {
13539         if(!isWasmInitialized) {
13540                 throw new Error("initializeWasm() must be awaited first!");
13541         }
13542         const nativeResponseValue = wasm.TS_CResult_boolPeerHandleErrorZ_clone(orig);
13543         return nativeResponseValue;
13544 }
13545         // struct LDKCResult_NoneErrorZ CResult_NoneErrorZ_ok(void);
13546 /* @internal */
13547 export function CResult_NoneErrorZ_ok(): number {
13548         if(!isWasmInitialized) {
13549                 throw new Error("initializeWasm() must be awaited first!");
13550         }
13551         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_ok();
13552         return nativeResponseValue;
13553 }
13554         // struct LDKCResult_NoneErrorZ CResult_NoneErrorZ_err(enum LDKIOError e);
13555 /* @internal */
13556 export function CResult_NoneErrorZ_err(e: IOError): number {
13557         if(!isWasmInitialized) {
13558                 throw new Error("initializeWasm() must be awaited first!");
13559         }
13560         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_err(e);
13561         return nativeResponseValue;
13562 }
13563         // bool CResult_NoneErrorZ_is_ok(const struct LDKCResult_NoneErrorZ *NONNULL_PTR o);
13564 /* @internal */
13565 export function CResult_NoneErrorZ_is_ok(o: number): boolean {
13566         if(!isWasmInitialized) {
13567                 throw new Error("initializeWasm() must be awaited first!");
13568         }
13569         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_is_ok(o);
13570         return nativeResponseValue;
13571 }
13572         // void CResult_NoneErrorZ_free(struct LDKCResult_NoneErrorZ _res);
13573 /* @internal */
13574 export function CResult_NoneErrorZ_free(_res: number): void {
13575         if(!isWasmInitialized) {
13576                 throw new Error("initializeWasm() must be awaited first!");
13577         }
13578         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_free(_res);
13579         // debug statements here
13580 }
13581         // uintptr_t CResult_NoneErrorZ_clone_ptr(LDKCResult_NoneErrorZ *NONNULL_PTR arg);
13582 /* @internal */
13583 export function CResult_NoneErrorZ_clone_ptr(arg: number): number {
13584         if(!isWasmInitialized) {
13585                 throw new Error("initializeWasm() must be awaited first!");
13586         }
13587         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_clone_ptr(arg);
13588         return nativeResponseValue;
13589 }
13590         // struct LDKCResult_NoneErrorZ CResult_NoneErrorZ_clone(const struct LDKCResult_NoneErrorZ *NONNULL_PTR orig);
13591 /* @internal */
13592 export function CResult_NoneErrorZ_clone(orig: number): number {
13593         if(!isWasmInitialized) {
13594                 throw new Error("initializeWasm() must be awaited first!");
13595         }
13596         const nativeResponseValue = wasm.TS_CResult_NoneErrorZ_clone(orig);
13597         return nativeResponseValue;
13598 }
13599         // struct LDKCResult_NetAddressDecodeErrorZ CResult_NetAddressDecodeErrorZ_ok(struct LDKNetAddress o);
13600 /* @internal */
13601 export function CResult_NetAddressDecodeErrorZ_ok(o: number): number {
13602         if(!isWasmInitialized) {
13603                 throw new Error("initializeWasm() must be awaited first!");
13604         }
13605         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_ok(o);
13606         return nativeResponseValue;
13607 }
13608         // struct LDKCResult_NetAddressDecodeErrorZ CResult_NetAddressDecodeErrorZ_err(struct LDKDecodeError e);
13609 /* @internal */
13610 export function CResult_NetAddressDecodeErrorZ_err(e: number): number {
13611         if(!isWasmInitialized) {
13612                 throw new Error("initializeWasm() must be awaited first!");
13613         }
13614         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_err(e);
13615         return nativeResponseValue;
13616 }
13617         // bool CResult_NetAddressDecodeErrorZ_is_ok(const struct LDKCResult_NetAddressDecodeErrorZ *NONNULL_PTR o);
13618 /* @internal */
13619 export function CResult_NetAddressDecodeErrorZ_is_ok(o: number): boolean {
13620         if(!isWasmInitialized) {
13621                 throw new Error("initializeWasm() must be awaited first!");
13622         }
13623         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_is_ok(o);
13624         return nativeResponseValue;
13625 }
13626         // void CResult_NetAddressDecodeErrorZ_free(struct LDKCResult_NetAddressDecodeErrorZ _res);
13627 /* @internal */
13628 export function CResult_NetAddressDecodeErrorZ_free(_res: number): void {
13629         if(!isWasmInitialized) {
13630                 throw new Error("initializeWasm() must be awaited first!");
13631         }
13632         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_free(_res);
13633         // debug statements here
13634 }
13635         // uintptr_t CResult_NetAddressDecodeErrorZ_clone_ptr(LDKCResult_NetAddressDecodeErrorZ *NONNULL_PTR arg);
13636 /* @internal */
13637 export function CResult_NetAddressDecodeErrorZ_clone_ptr(arg: number): number {
13638         if(!isWasmInitialized) {
13639                 throw new Error("initializeWasm() must be awaited first!");
13640         }
13641         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_clone_ptr(arg);
13642         return nativeResponseValue;
13643 }
13644         // struct LDKCResult_NetAddressDecodeErrorZ CResult_NetAddressDecodeErrorZ_clone(const struct LDKCResult_NetAddressDecodeErrorZ *NONNULL_PTR orig);
13645 /* @internal */
13646 export function CResult_NetAddressDecodeErrorZ_clone(orig: number): number {
13647         if(!isWasmInitialized) {
13648                 throw new Error("initializeWasm() must be awaited first!");
13649         }
13650         const nativeResponseValue = wasm.TS_CResult_NetAddressDecodeErrorZ_clone(orig);
13651         return nativeResponseValue;
13652 }
13653         // void CVec_UpdateAddHTLCZ_free(struct LDKCVec_UpdateAddHTLCZ _res);
13654 /* @internal */
13655 export function CVec_UpdateAddHTLCZ_free(_res: number): void {
13656         if(!isWasmInitialized) {
13657                 throw new Error("initializeWasm() must be awaited first!");
13658         }
13659         const nativeResponseValue = wasm.TS_CVec_UpdateAddHTLCZ_free(_res);
13660         // debug statements here
13661 }
13662         // void CVec_UpdateFulfillHTLCZ_free(struct LDKCVec_UpdateFulfillHTLCZ _res);
13663 /* @internal */
13664 export function CVec_UpdateFulfillHTLCZ_free(_res: number): void {
13665         if(!isWasmInitialized) {
13666                 throw new Error("initializeWasm() must be awaited first!");
13667         }
13668         const nativeResponseValue = wasm.TS_CVec_UpdateFulfillHTLCZ_free(_res);
13669         // debug statements here
13670 }
13671         // void CVec_UpdateFailHTLCZ_free(struct LDKCVec_UpdateFailHTLCZ _res);
13672 /* @internal */
13673 export function CVec_UpdateFailHTLCZ_free(_res: number): void {
13674         if(!isWasmInitialized) {
13675                 throw new Error("initializeWasm() must be awaited first!");
13676         }
13677         const nativeResponseValue = wasm.TS_CVec_UpdateFailHTLCZ_free(_res);
13678         // debug statements here
13679 }
13680         // void CVec_UpdateFailMalformedHTLCZ_free(struct LDKCVec_UpdateFailMalformedHTLCZ _res);
13681 /* @internal */
13682 export function CVec_UpdateFailMalformedHTLCZ_free(_res: number): void {
13683         if(!isWasmInitialized) {
13684                 throw new Error("initializeWasm() must be awaited first!");
13685         }
13686         const nativeResponseValue = wasm.TS_CVec_UpdateFailMalformedHTLCZ_free(_res);
13687         // debug statements here
13688 }
13689         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_ok(struct LDKAcceptChannel o);
13690 /* @internal */
13691 export function CResult_AcceptChannelDecodeErrorZ_ok(o: number): number {
13692         if(!isWasmInitialized) {
13693                 throw new Error("initializeWasm() must be awaited first!");
13694         }
13695         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_ok(o);
13696         return nativeResponseValue;
13697 }
13698         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_err(struct LDKDecodeError e);
13699 /* @internal */
13700 export function CResult_AcceptChannelDecodeErrorZ_err(e: number): number {
13701         if(!isWasmInitialized) {
13702                 throw new Error("initializeWasm() must be awaited first!");
13703         }
13704         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_err(e);
13705         return nativeResponseValue;
13706 }
13707         // bool CResult_AcceptChannelDecodeErrorZ_is_ok(const struct LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR o);
13708 /* @internal */
13709 export function CResult_AcceptChannelDecodeErrorZ_is_ok(o: number): boolean {
13710         if(!isWasmInitialized) {
13711                 throw new Error("initializeWasm() must be awaited first!");
13712         }
13713         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_is_ok(o);
13714         return nativeResponseValue;
13715 }
13716         // void CResult_AcceptChannelDecodeErrorZ_free(struct LDKCResult_AcceptChannelDecodeErrorZ _res);
13717 /* @internal */
13718 export function CResult_AcceptChannelDecodeErrorZ_free(_res: number): void {
13719         if(!isWasmInitialized) {
13720                 throw new Error("initializeWasm() must be awaited first!");
13721         }
13722         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_free(_res);
13723         // debug statements here
13724 }
13725         // uintptr_t CResult_AcceptChannelDecodeErrorZ_clone_ptr(LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR arg);
13726 /* @internal */
13727 export function CResult_AcceptChannelDecodeErrorZ_clone_ptr(arg: number): number {
13728         if(!isWasmInitialized) {
13729                 throw new Error("initializeWasm() must be awaited first!");
13730         }
13731         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_clone_ptr(arg);
13732         return nativeResponseValue;
13733 }
13734         // struct LDKCResult_AcceptChannelDecodeErrorZ CResult_AcceptChannelDecodeErrorZ_clone(const struct LDKCResult_AcceptChannelDecodeErrorZ *NONNULL_PTR orig);
13735 /* @internal */
13736 export function CResult_AcceptChannelDecodeErrorZ_clone(orig: number): number {
13737         if(!isWasmInitialized) {
13738                 throw new Error("initializeWasm() must be awaited first!");
13739         }
13740         const nativeResponseValue = wasm.TS_CResult_AcceptChannelDecodeErrorZ_clone(orig);
13741         return nativeResponseValue;
13742 }
13743         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_ok(struct LDKAnnouncementSignatures o);
13744 /* @internal */
13745 export function CResult_AnnouncementSignaturesDecodeErrorZ_ok(o: number): number {
13746         if(!isWasmInitialized) {
13747                 throw new Error("initializeWasm() must be awaited first!");
13748         }
13749         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_ok(o);
13750         return nativeResponseValue;
13751 }
13752         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_err(struct LDKDecodeError e);
13753 /* @internal */
13754 export function CResult_AnnouncementSignaturesDecodeErrorZ_err(e: number): number {
13755         if(!isWasmInitialized) {
13756                 throw new Error("initializeWasm() must be awaited first!");
13757         }
13758         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_err(e);
13759         return nativeResponseValue;
13760 }
13761         // bool CResult_AnnouncementSignaturesDecodeErrorZ_is_ok(const struct LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR o);
13762 /* @internal */
13763 export function CResult_AnnouncementSignaturesDecodeErrorZ_is_ok(o: number): boolean {
13764         if(!isWasmInitialized) {
13765                 throw new Error("initializeWasm() must be awaited first!");
13766         }
13767         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_is_ok(o);
13768         return nativeResponseValue;
13769 }
13770         // void CResult_AnnouncementSignaturesDecodeErrorZ_free(struct LDKCResult_AnnouncementSignaturesDecodeErrorZ _res);
13771 /* @internal */
13772 export function CResult_AnnouncementSignaturesDecodeErrorZ_free(_res: number): void {
13773         if(!isWasmInitialized) {
13774                 throw new Error("initializeWasm() must be awaited first!");
13775         }
13776         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_free(_res);
13777         // debug statements here
13778 }
13779         // uintptr_t CResult_AnnouncementSignaturesDecodeErrorZ_clone_ptr(LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR arg);
13780 /* @internal */
13781 export function CResult_AnnouncementSignaturesDecodeErrorZ_clone_ptr(arg: number): number {
13782         if(!isWasmInitialized) {
13783                 throw new Error("initializeWasm() must be awaited first!");
13784         }
13785         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_clone_ptr(arg);
13786         return nativeResponseValue;
13787 }
13788         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ CResult_AnnouncementSignaturesDecodeErrorZ_clone(const struct LDKCResult_AnnouncementSignaturesDecodeErrorZ *NONNULL_PTR orig);
13789 /* @internal */
13790 export function CResult_AnnouncementSignaturesDecodeErrorZ_clone(orig: number): number {
13791         if(!isWasmInitialized) {
13792                 throw new Error("initializeWasm() must be awaited first!");
13793         }
13794         const nativeResponseValue = wasm.TS_CResult_AnnouncementSignaturesDecodeErrorZ_clone(orig);
13795         return nativeResponseValue;
13796 }
13797         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_ok(struct LDKChannelReestablish o);
13798 /* @internal */
13799 export function CResult_ChannelReestablishDecodeErrorZ_ok(o: number): number {
13800         if(!isWasmInitialized) {
13801                 throw new Error("initializeWasm() must be awaited first!");
13802         }
13803         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_ok(o);
13804         return nativeResponseValue;
13805 }
13806         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_err(struct LDKDecodeError e);
13807 /* @internal */
13808 export function CResult_ChannelReestablishDecodeErrorZ_err(e: number): number {
13809         if(!isWasmInitialized) {
13810                 throw new Error("initializeWasm() must be awaited first!");
13811         }
13812         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_err(e);
13813         return nativeResponseValue;
13814 }
13815         // bool CResult_ChannelReestablishDecodeErrorZ_is_ok(const struct LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR o);
13816 /* @internal */
13817 export function CResult_ChannelReestablishDecodeErrorZ_is_ok(o: number): boolean {
13818         if(!isWasmInitialized) {
13819                 throw new Error("initializeWasm() must be awaited first!");
13820         }
13821         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_is_ok(o);
13822         return nativeResponseValue;
13823 }
13824         // void CResult_ChannelReestablishDecodeErrorZ_free(struct LDKCResult_ChannelReestablishDecodeErrorZ _res);
13825 /* @internal */
13826 export function CResult_ChannelReestablishDecodeErrorZ_free(_res: number): void {
13827         if(!isWasmInitialized) {
13828                 throw new Error("initializeWasm() must be awaited first!");
13829         }
13830         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_free(_res);
13831         // debug statements here
13832 }
13833         // uintptr_t CResult_ChannelReestablishDecodeErrorZ_clone_ptr(LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR arg);
13834 /* @internal */
13835 export function CResult_ChannelReestablishDecodeErrorZ_clone_ptr(arg: number): number {
13836         if(!isWasmInitialized) {
13837                 throw new Error("initializeWasm() must be awaited first!");
13838         }
13839         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_clone_ptr(arg);
13840         return nativeResponseValue;
13841 }
13842         // struct LDKCResult_ChannelReestablishDecodeErrorZ CResult_ChannelReestablishDecodeErrorZ_clone(const struct LDKCResult_ChannelReestablishDecodeErrorZ *NONNULL_PTR orig);
13843 /* @internal */
13844 export function CResult_ChannelReestablishDecodeErrorZ_clone(orig: number): number {
13845         if(!isWasmInitialized) {
13846                 throw new Error("initializeWasm() must be awaited first!");
13847         }
13848         const nativeResponseValue = wasm.TS_CResult_ChannelReestablishDecodeErrorZ_clone(orig);
13849         return nativeResponseValue;
13850 }
13851         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_ok(struct LDKClosingSigned o);
13852 /* @internal */
13853 export function CResult_ClosingSignedDecodeErrorZ_ok(o: number): number {
13854         if(!isWasmInitialized) {
13855                 throw new Error("initializeWasm() must be awaited first!");
13856         }
13857         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_ok(o);
13858         return nativeResponseValue;
13859 }
13860         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_err(struct LDKDecodeError e);
13861 /* @internal */
13862 export function CResult_ClosingSignedDecodeErrorZ_err(e: number): number {
13863         if(!isWasmInitialized) {
13864                 throw new Error("initializeWasm() must be awaited first!");
13865         }
13866         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_err(e);
13867         return nativeResponseValue;
13868 }
13869         // bool CResult_ClosingSignedDecodeErrorZ_is_ok(const struct LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR o);
13870 /* @internal */
13871 export function CResult_ClosingSignedDecodeErrorZ_is_ok(o: number): boolean {
13872         if(!isWasmInitialized) {
13873                 throw new Error("initializeWasm() must be awaited first!");
13874         }
13875         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_is_ok(o);
13876         return nativeResponseValue;
13877 }
13878         // void CResult_ClosingSignedDecodeErrorZ_free(struct LDKCResult_ClosingSignedDecodeErrorZ _res);
13879 /* @internal */
13880 export function CResult_ClosingSignedDecodeErrorZ_free(_res: number): void {
13881         if(!isWasmInitialized) {
13882                 throw new Error("initializeWasm() must be awaited first!");
13883         }
13884         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_free(_res);
13885         // debug statements here
13886 }
13887         // uintptr_t CResult_ClosingSignedDecodeErrorZ_clone_ptr(LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR arg);
13888 /* @internal */
13889 export function CResult_ClosingSignedDecodeErrorZ_clone_ptr(arg: number): number {
13890         if(!isWasmInitialized) {
13891                 throw new Error("initializeWasm() must be awaited first!");
13892         }
13893         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_clone_ptr(arg);
13894         return nativeResponseValue;
13895 }
13896         // struct LDKCResult_ClosingSignedDecodeErrorZ CResult_ClosingSignedDecodeErrorZ_clone(const struct LDKCResult_ClosingSignedDecodeErrorZ *NONNULL_PTR orig);
13897 /* @internal */
13898 export function CResult_ClosingSignedDecodeErrorZ_clone(orig: number): number {
13899         if(!isWasmInitialized) {
13900                 throw new Error("initializeWasm() must be awaited first!");
13901         }
13902         const nativeResponseValue = wasm.TS_CResult_ClosingSignedDecodeErrorZ_clone(orig);
13903         return nativeResponseValue;
13904 }
13905         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_ok(struct LDKClosingSignedFeeRange o);
13906 /* @internal */
13907 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_ok(o: number): number {
13908         if(!isWasmInitialized) {
13909                 throw new Error("initializeWasm() must be awaited first!");
13910         }
13911         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_ok(o);
13912         return nativeResponseValue;
13913 }
13914         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_err(struct LDKDecodeError e);
13915 /* @internal */
13916 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_err(e: number): number {
13917         if(!isWasmInitialized) {
13918                 throw new Error("initializeWasm() must be awaited first!");
13919         }
13920         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_err(e);
13921         return nativeResponseValue;
13922 }
13923         // bool CResult_ClosingSignedFeeRangeDecodeErrorZ_is_ok(const struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR o);
13924 /* @internal */
13925 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_is_ok(o: number): boolean {
13926         if(!isWasmInitialized) {
13927                 throw new Error("initializeWasm() must be awaited first!");
13928         }
13929         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_is_ok(o);
13930         return nativeResponseValue;
13931 }
13932         // void CResult_ClosingSignedFeeRangeDecodeErrorZ_free(struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ _res);
13933 /* @internal */
13934 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_free(_res: number): void {
13935         if(!isWasmInitialized) {
13936                 throw new Error("initializeWasm() must be awaited first!");
13937         }
13938         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_free(_res);
13939         // debug statements here
13940 }
13941         // uintptr_t CResult_ClosingSignedFeeRangeDecodeErrorZ_clone_ptr(LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR arg);
13942 /* @internal */
13943 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_clone_ptr(arg: number): number {
13944         if(!isWasmInitialized) {
13945                 throw new Error("initializeWasm() must be awaited first!");
13946         }
13947         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_clone_ptr(arg);
13948         return nativeResponseValue;
13949 }
13950         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ CResult_ClosingSignedFeeRangeDecodeErrorZ_clone(const struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ *NONNULL_PTR orig);
13951 /* @internal */
13952 export function CResult_ClosingSignedFeeRangeDecodeErrorZ_clone(orig: number): number {
13953         if(!isWasmInitialized) {
13954                 throw new Error("initializeWasm() must be awaited first!");
13955         }
13956         const nativeResponseValue = wasm.TS_CResult_ClosingSignedFeeRangeDecodeErrorZ_clone(orig);
13957         return nativeResponseValue;
13958 }
13959         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_ok(struct LDKCommitmentSigned o);
13960 /* @internal */
13961 export function CResult_CommitmentSignedDecodeErrorZ_ok(o: number): number {
13962         if(!isWasmInitialized) {
13963                 throw new Error("initializeWasm() must be awaited first!");
13964         }
13965         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_ok(o);
13966         return nativeResponseValue;
13967 }
13968         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_err(struct LDKDecodeError e);
13969 /* @internal */
13970 export function CResult_CommitmentSignedDecodeErrorZ_err(e: number): number {
13971         if(!isWasmInitialized) {
13972                 throw new Error("initializeWasm() must be awaited first!");
13973         }
13974         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_err(e);
13975         return nativeResponseValue;
13976 }
13977         // bool CResult_CommitmentSignedDecodeErrorZ_is_ok(const struct LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR o);
13978 /* @internal */
13979 export function CResult_CommitmentSignedDecodeErrorZ_is_ok(o: number): boolean {
13980         if(!isWasmInitialized) {
13981                 throw new Error("initializeWasm() must be awaited first!");
13982         }
13983         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_is_ok(o);
13984         return nativeResponseValue;
13985 }
13986         // void CResult_CommitmentSignedDecodeErrorZ_free(struct LDKCResult_CommitmentSignedDecodeErrorZ _res);
13987 /* @internal */
13988 export function CResult_CommitmentSignedDecodeErrorZ_free(_res: number): void {
13989         if(!isWasmInitialized) {
13990                 throw new Error("initializeWasm() must be awaited first!");
13991         }
13992         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_free(_res);
13993         // debug statements here
13994 }
13995         // uintptr_t CResult_CommitmentSignedDecodeErrorZ_clone_ptr(LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR arg);
13996 /* @internal */
13997 export function CResult_CommitmentSignedDecodeErrorZ_clone_ptr(arg: number): number {
13998         if(!isWasmInitialized) {
13999                 throw new Error("initializeWasm() must be awaited first!");
14000         }
14001         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_clone_ptr(arg);
14002         return nativeResponseValue;
14003 }
14004         // struct LDKCResult_CommitmentSignedDecodeErrorZ CResult_CommitmentSignedDecodeErrorZ_clone(const struct LDKCResult_CommitmentSignedDecodeErrorZ *NONNULL_PTR orig);
14005 /* @internal */
14006 export function CResult_CommitmentSignedDecodeErrorZ_clone(orig: number): number {
14007         if(!isWasmInitialized) {
14008                 throw new Error("initializeWasm() must be awaited first!");
14009         }
14010         const nativeResponseValue = wasm.TS_CResult_CommitmentSignedDecodeErrorZ_clone(orig);
14011         return nativeResponseValue;
14012 }
14013         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_ok(struct LDKFundingCreated o);
14014 /* @internal */
14015 export function CResult_FundingCreatedDecodeErrorZ_ok(o: number): number {
14016         if(!isWasmInitialized) {
14017                 throw new Error("initializeWasm() must be awaited first!");
14018         }
14019         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_ok(o);
14020         return nativeResponseValue;
14021 }
14022         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_err(struct LDKDecodeError e);
14023 /* @internal */
14024 export function CResult_FundingCreatedDecodeErrorZ_err(e: number): number {
14025         if(!isWasmInitialized) {
14026                 throw new Error("initializeWasm() must be awaited first!");
14027         }
14028         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_err(e);
14029         return nativeResponseValue;
14030 }
14031         // bool CResult_FundingCreatedDecodeErrorZ_is_ok(const struct LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR o);
14032 /* @internal */
14033 export function CResult_FundingCreatedDecodeErrorZ_is_ok(o: number): boolean {
14034         if(!isWasmInitialized) {
14035                 throw new Error("initializeWasm() must be awaited first!");
14036         }
14037         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_is_ok(o);
14038         return nativeResponseValue;
14039 }
14040         // void CResult_FundingCreatedDecodeErrorZ_free(struct LDKCResult_FundingCreatedDecodeErrorZ _res);
14041 /* @internal */
14042 export function CResult_FundingCreatedDecodeErrorZ_free(_res: number): void {
14043         if(!isWasmInitialized) {
14044                 throw new Error("initializeWasm() must be awaited first!");
14045         }
14046         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_free(_res);
14047         // debug statements here
14048 }
14049         // uintptr_t CResult_FundingCreatedDecodeErrorZ_clone_ptr(LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR arg);
14050 /* @internal */
14051 export function CResult_FundingCreatedDecodeErrorZ_clone_ptr(arg: number): number {
14052         if(!isWasmInitialized) {
14053                 throw new Error("initializeWasm() must be awaited first!");
14054         }
14055         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_clone_ptr(arg);
14056         return nativeResponseValue;
14057 }
14058         // struct LDKCResult_FundingCreatedDecodeErrorZ CResult_FundingCreatedDecodeErrorZ_clone(const struct LDKCResult_FundingCreatedDecodeErrorZ *NONNULL_PTR orig);
14059 /* @internal */
14060 export function CResult_FundingCreatedDecodeErrorZ_clone(orig: number): number {
14061         if(!isWasmInitialized) {
14062                 throw new Error("initializeWasm() must be awaited first!");
14063         }
14064         const nativeResponseValue = wasm.TS_CResult_FundingCreatedDecodeErrorZ_clone(orig);
14065         return nativeResponseValue;
14066 }
14067         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_ok(struct LDKFundingSigned o);
14068 /* @internal */
14069 export function CResult_FundingSignedDecodeErrorZ_ok(o: number): number {
14070         if(!isWasmInitialized) {
14071                 throw new Error("initializeWasm() must be awaited first!");
14072         }
14073         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_ok(o);
14074         return nativeResponseValue;
14075 }
14076         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_err(struct LDKDecodeError e);
14077 /* @internal */
14078 export function CResult_FundingSignedDecodeErrorZ_err(e: number): number {
14079         if(!isWasmInitialized) {
14080                 throw new Error("initializeWasm() must be awaited first!");
14081         }
14082         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_err(e);
14083         return nativeResponseValue;
14084 }
14085         // bool CResult_FundingSignedDecodeErrorZ_is_ok(const struct LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR o);
14086 /* @internal */
14087 export function CResult_FundingSignedDecodeErrorZ_is_ok(o: number): boolean {
14088         if(!isWasmInitialized) {
14089                 throw new Error("initializeWasm() must be awaited first!");
14090         }
14091         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_is_ok(o);
14092         return nativeResponseValue;
14093 }
14094         // void CResult_FundingSignedDecodeErrorZ_free(struct LDKCResult_FundingSignedDecodeErrorZ _res);
14095 /* @internal */
14096 export function CResult_FundingSignedDecodeErrorZ_free(_res: number): void {
14097         if(!isWasmInitialized) {
14098                 throw new Error("initializeWasm() must be awaited first!");
14099         }
14100         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_free(_res);
14101         // debug statements here
14102 }
14103         // uintptr_t CResult_FundingSignedDecodeErrorZ_clone_ptr(LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR arg);
14104 /* @internal */
14105 export function CResult_FundingSignedDecodeErrorZ_clone_ptr(arg: number): number {
14106         if(!isWasmInitialized) {
14107                 throw new Error("initializeWasm() must be awaited first!");
14108         }
14109         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_clone_ptr(arg);
14110         return nativeResponseValue;
14111 }
14112         // struct LDKCResult_FundingSignedDecodeErrorZ CResult_FundingSignedDecodeErrorZ_clone(const struct LDKCResult_FundingSignedDecodeErrorZ *NONNULL_PTR orig);
14113 /* @internal */
14114 export function CResult_FundingSignedDecodeErrorZ_clone(orig: number): number {
14115         if(!isWasmInitialized) {
14116                 throw new Error("initializeWasm() must be awaited first!");
14117         }
14118         const nativeResponseValue = wasm.TS_CResult_FundingSignedDecodeErrorZ_clone(orig);
14119         return nativeResponseValue;
14120 }
14121         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_ok(struct LDKChannelReady o);
14122 /* @internal */
14123 export function CResult_ChannelReadyDecodeErrorZ_ok(o: number): number {
14124         if(!isWasmInitialized) {
14125                 throw new Error("initializeWasm() must be awaited first!");
14126         }
14127         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_ok(o);
14128         return nativeResponseValue;
14129 }
14130         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_err(struct LDKDecodeError e);
14131 /* @internal */
14132 export function CResult_ChannelReadyDecodeErrorZ_err(e: number): number {
14133         if(!isWasmInitialized) {
14134                 throw new Error("initializeWasm() must be awaited first!");
14135         }
14136         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_err(e);
14137         return nativeResponseValue;
14138 }
14139         // bool CResult_ChannelReadyDecodeErrorZ_is_ok(const struct LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR o);
14140 /* @internal */
14141 export function CResult_ChannelReadyDecodeErrorZ_is_ok(o: number): boolean {
14142         if(!isWasmInitialized) {
14143                 throw new Error("initializeWasm() must be awaited first!");
14144         }
14145         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_is_ok(o);
14146         return nativeResponseValue;
14147 }
14148         // void CResult_ChannelReadyDecodeErrorZ_free(struct LDKCResult_ChannelReadyDecodeErrorZ _res);
14149 /* @internal */
14150 export function CResult_ChannelReadyDecodeErrorZ_free(_res: number): void {
14151         if(!isWasmInitialized) {
14152                 throw new Error("initializeWasm() must be awaited first!");
14153         }
14154         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_free(_res);
14155         // debug statements here
14156 }
14157         // uintptr_t CResult_ChannelReadyDecodeErrorZ_clone_ptr(LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR arg);
14158 /* @internal */
14159 export function CResult_ChannelReadyDecodeErrorZ_clone_ptr(arg: number): number {
14160         if(!isWasmInitialized) {
14161                 throw new Error("initializeWasm() must be awaited first!");
14162         }
14163         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_clone_ptr(arg);
14164         return nativeResponseValue;
14165 }
14166         // struct LDKCResult_ChannelReadyDecodeErrorZ CResult_ChannelReadyDecodeErrorZ_clone(const struct LDKCResult_ChannelReadyDecodeErrorZ *NONNULL_PTR orig);
14167 /* @internal */
14168 export function CResult_ChannelReadyDecodeErrorZ_clone(orig: number): number {
14169         if(!isWasmInitialized) {
14170                 throw new Error("initializeWasm() must be awaited first!");
14171         }
14172         const nativeResponseValue = wasm.TS_CResult_ChannelReadyDecodeErrorZ_clone(orig);
14173         return nativeResponseValue;
14174 }
14175         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_ok(struct LDKInit o);
14176 /* @internal */
14177 export function CResult_InitDecodeErrorZ_ok(o: number): number {
14178         if(!isWasmInitialized) {
14179                 throw new Error("initializeWasm() must be awaited first!");
14180         }
14181         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_ok(o);
14182         return nativeResponseValue;
14183 }
14184         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_err(struct LDKDecodeError e);
14185 /* @internal */
14186 export function CResult_InitDecodeErrorZ_err(e: number): number {
14187         if(!isWasmInitialized) {
14188                 throw new Error("initializeWasm() must be awaited first!");
14189         }
14190         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_err(e);
14191         return nativeResponseValue;
14192 }
14193         // bool CResult_InitDecodeErrorZ_is_ok(const struct LDKCResult_InitDecodeErrorZ *NONNULL_PTR o);
14194 /* @internal */
14195 export function CResult_InitDecodeErrorZ_is_ok(o: number): boolean {
14196         if(!isWasmInitialized) {
14197                 throw new Error("initializeWasm() must be awaited first!");
14198         }
14199         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_is_ok(o);
14200         return nativeResponseValue;
14201 }
14202         // void CResult_InitDecodeErrorZ_free(struct LDKCResult_InitDecodeErrorZ _res);
14203 /* @internal */
14204 export function CResult_InitDecodeErrorZ_free(_res: number): void {
14205         if(!isWasmInitialized) {
14206                 throw new Error("initializeWasm() must be awaited first!");
14207         }
14208         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_free(_res);
14209         // debug statements here
14210 }
14211         // uintptr_t CResult_InitDecodeErrorZ_clone_ptr(LDKCResult_InitDecodeErrorZ *NONNULL_PTR arg);
14212 /* @internal */
14213 export function CResult_InitDecodeErrorZ_clone_ptr(arg: number): number {
14214         if(!isWasmInitialized) {
14215                 throw new Error("initializeWasm() must be awaited first!");
14216         }
14217         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_clone_ptr(arg);
14218         return nativeResponseValue;
14219 }
14220         // struct LDKCResult_InitDecodeErrorZ CResult_InitDecodeErrorZ_clone(const struct LDKCResult_InitDecodeErrorZ *NONNULL_PTR orig);
14221 /* @internal */
14222 export function CResult_InitDecodeErrorZ_clone(orig: number): number {
14223         if(!isWasmInitialized) {
14224                 throw new Error("initializeWasm() must be awaited first!");
14225         }
14226         const nativeResponseValue = wasm.TS_CResult_InitDecodeErrorZ_clone(orig);
14227         return nativeResponseValue;
14228 }
14229         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_ok(struct LDKOpenChannel o);
14230 /* @internal */
14231 export function CResult_OpenChannelDecodeErrorZ_ok(o: number): number {
14232         if(!isWasmInitialized) {
14233                 throw new Error("initializeWasm() must be awaited first!");
14234         }
14235         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_ok(o);
14236         return nativeResponseValue;
14237 }
14238         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_err(struct LDKDecodeError e);
14239 /* @internal */
14240 export function CResult_OpenChannelDecodeErrorZ_err(e: number): number {
14241         if(!isWasmInitialized) {
14242                 throw new Error("initializeWasm() must be awaited first!");
14243         }
14244         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_err(e);
14245         return nativeResponseValue;
14246 }
14247         // bool CResult_OpenChannelDecodeErrorZ_is_ok(const struct LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR o);
14248 /* @internal */
14249 export function CResult_OpenChannelDecodeErrorZ_is_ok(o: number): boolean {
14250         if(!isWasmInitialized) {
14251                 throw new Error("initializeWasm() must be awaited first!");
14252         }
14253         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_is_ok(o);
14254         return nativeResponseValue;
14255 }
14256         // void CResult_OpenChannelDecodeErrorZ_free(struct LDKCResult_OpenChannelDecodeErrorZ _res);
14257 /* @internal */
14258 export function CResult_OpenChannelDecodeErrorZ_free(_res: number): void {
14259         if(!isWasmInitialized) {
14260                 throw new Error("initializeWasm() must be awaited first!");
14261         }
14262         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_free(_res);
14263         // debug statements here
14264 }
14265         // uintptr_t CResult_OpenChannelDecodeErrorZ_clone_ptr(LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR arg);
14266 /* @internal */
14267 export function CResult_OpenChannelDecodeErrorZ_clone_ptr(arg: number): number {
14268         if(!isWasmInitialized) {
14269                 throw new Error("initializeWasm() must be awaited first!");
14270         }
14271         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_clone_ptr(arg);
14272         return nativeResponseValue;
14273 }
14274         // struct LDKCResult_OpenChannelDecodeErrorZ CResult_OpenChannelDecodeErrorZ_clone(const struct LDKCResult_OpenChannelDecodeErrorZ *NONNULL_PTR orig);
14275 /* @internal */
14276 export function CResult_OpenChannelDecodeErrorZ_clone(orig: number): number {
14277         if(!isWasmInitialized) {
14278                 throw new Error("initializeWasm() must be awaited first!");
14279         }
14280         const nativeResponseValue = wasm.TS_CResult_OpenChannelDecodeErrorZ_clone(orig);
14281         return nativeResponseValue;
14282 }
14283         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_ok(struct LDKRevokeAndACK o);
14284 /* @internal */
14285 export function CResult_RevokeAndACKDecodeErrorZ_ok(o: number): number {
14286         if(!isWasmInitialized) {
14287                 throw new Error("initializeWasm() must be awaited first!");
14288         }
14289         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_ok(o);
14290         return nativeResponseValue;
14291 }
14292         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_err(struct LDKDecodeError e);
14293 /* @internal */
14294 export function CResult_RevokeAndACKDecodeErrorZ_err(e: number): number {
14295         if(!isWasmInitialized) {
14296                 throw new Error("initializeWasm() must be awaited first!");
14297         }
14298         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_err(e);
14299         return nativeResponseValue;
14300 }
14301         // bool CResult_RevokeAndACKDecodeErrorZ_is_ok(const struct LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR o);
14302 /* @internal */
14303 export function CResult_RevokeAndACKDecodeErrorZ_is_ok(o: number): boolean {
14304         if(!isWasmInitialized) {
14305                 throw new Error("initializeWasm() must be awaited first!");
14306         }
14307         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_is_ok(o);
14308         return nativeResponseValue;
14309 }
14310         // void CResult_RevokeAndACKDecodeErrorZ_free(struct LDKCResult_RevokeAndACKDecodeErrorZ _res);
14311 /* @internal */
14312 export function CResult_RevokeAndACKDecodeErrorZ_free(_res: number): void {
14313         if(!isWasmInitialized) {
14314                 throw new Error("initializeWasm() must be awaited first!");
14315         }
14316         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_free(_res);
14317         // debug statements here
14318 }
14319         // uintptr_t CResult_RevokeAndACKDecodeErrorZ_clone_ptr(LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR arg);
14320 /* @internal */
14321 export function CResult_RevokeAndACKDecodeErrorZ_clone_ptr(arg: number): number {
14322         if(!isWasmInitialized) {
14323                 throw new Error("initializeWasm() must be awaited first!");
14324         }
14325         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_clone_ptr(arg);
14326         return nativeResponseValue;
14327 }
14328         // struct LDKCResult_RevokeAndACKDecodeErrorZ CResult_RevokeAndACKDecodeErrorZ_clone(const struct LDKCResult_RevokeAndACKDecodeErrorZ *NONNULL_PTR orig);
14329 /* @internal */
14330 export function CResult_RevokeAndACKDecodeErrorZ_clone(orig: number): number {
14331         if(!isWasmInitialized) {
14332                 throw new Error("initializeWasm() must be awaited first!");
14333         }
14334         const nativeResponseValue = wasm.TS_CResult_RevokeAndACKDecodeErrorZ_clone(orig);
14335         return nativeResponseValue;
14336 }
14337         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_ok(struct LDKShutdown o);
14338 /* @internal */
14339 export function CResult_ShutdownDecodeErrorZ_ok(o: number): number {
14340         if(!isWasmInitialized) {
14341                 throw new Error("initializeWasm() must be awaited first!");
14342         }
14343         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_ok(o);
14344         return nativeResponseValue;
14345 }
14346         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_err(struct LDKDecodeError e);
14347 /* @internal */
14348 export function CResult_ShutdownDecodeErrorZ_err(e: number): number {
14349         if(!isWasmInitialized) {
14350                 throw new Error("initializeWasm() must be awaited first!");
14351         }
14352         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_err(e);
14353         return nativeResponseValue;
14354 }
14355         // bool CResult_ShutdownDecodeErrorZ_is_ok(const struct LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR o);
14356 /* @internal */
14357 export function CResult_ShutdownDecodeErrorZ_is_ok(o: number): boolean {
14358         if(!isWasmInitialized) {
14359                 throw new Error("initializeWasm() must be awaited first!");
14360         }
14361         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_is_ok(o);
14362         return nativeResponseValue;
14363 }
14364         // void CResult_ShutdownDecodeErrorZ_free(struct LDKCResult_ShutdownDecodeErrorZ _res);
14365 /* @internal */
14366 export function CResult_ShutdownDecodeErrorZ_free(_res: number): void {
14367         if(!isWasmInitialized) {
14368                 throw new Error("initializeWasm() must be awaited first!");
14369         }
14370         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_free(_res);
14371         // debug statements here
14372 }
14373         // uintptr_t CResult_ShutdownDecodeErrorZ_clone_ptr(LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR arg);
14374 /* @internal */
14375 export function CResult_ShutdownDecodeErrorZ_clone_ptr(arg: number): number {
14376         if(!isWasmInitialized) {
14377                 throw new Error("initializeWasm() must be awaited first!");
14378         }
14379         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_clone_ptr(arg);
14380         return nativeResponseValue;
14381 }
14382         // struct LDKCResult_ShutdownDecodeErrorZ CResult_ShutdownDecodeErrorZ_clone(const struct LDKCResult_ShutdownDecodeErrorZ *NONNULL_PTR orig);
14383 /* @internal */
14384 export function CResult_ShutdownDecodeErrorZ_clone(orig: number): number {
14385         if(!isWasmInitialized) {
14386                 throw new Error("initializeWasm() must be awaited first!");
14387         }
14388         const nativeResponseValue = wasm.TS_CResult_ShutdownDecodeErrorZ_clone(orig);
14389         return nativeResponseValue;
14390 }
14391         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_ok(struct LDKUpdateFailHTLC o);
14392 /* @internal */
14393 export function CResult_UpdateFailHTLCDecodeErrorZ_ok(o: number): number {
14394         if(!isWasmInitialized) {
14395                 throw new Error("initializeWasm() must be awaited first!");
14396         }
14397         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_ok(o);
14398         return nativeResponseValue;
14399 }
14400         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_err(struct LDKDecodeError e);
14401 /* @internal */
14402 export function CResult_UpdateFailHTLCDecodeErrorZ_err(e: number): number {
14403         if(!isWasmInitialized) {
14404                 throw new Error("initializeWasm() must be awaited first!");
14405         }
14406         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_err(e);
14407         return nativeResponseValue;
14408 }
14409         // bool CResult_UpdateFailHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR o);
14410 /* @internal */
14411 export function CResult_UpdateFailHTLCDecodeErrorZ_is_ok(o: number): boolean {
14412         if(!isWasmInitialized) {
14413                 throw new Error("initializeWasm() must be awaited first!");
14414         }
14415         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_is_ok(o);
14416         return nativeResponseValue;
14417 }
14418         // void CResult_UpdateFailHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFailHTLCDecodeErrorZ _res);
14419 /* @internal */
14420 export function CResult_UpdateFailHTLCDecodeErrorZ_free(_res: number): void {
14421         if(!isWasmInitialized) {
14422                 throw new Error("initializeWasm() must be awaited first!");
14423         }
14424         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_free(_res);
14425         // debug statements here
14426 }
14427         // uintptr_t CResult_UpdateFailHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR arg);
14428 /* @internal */
14429 export function CResult_UpdateFailHTLCDecodeErrorZ_clone_ptr(arg: number): number {
14430         if(!isWasmInitialized) {
14431                 throw new Error("initializeWasm() must be awaited first!");
14432         }
14433         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_clone_ptr(arg);
14434         return nativeResponseValue;
14435 }
14436         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ CResult_UpdateFailHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFailHTLCDecodeErrorZ *NONNULL_PTR orig);
14437 /* @internal */
14438 export function CResult_UpdateFailHTLCDecodeErrorZ_clone(orig: number): number {
14439         if(!isWasmInitialized) {
14440                 throw new Error("initializeWasm() must be awaited first!");
14441         }
14442         const nativeResponseValue = wasm.TS_CResult_UpdateFailHTLCDecodeErrorZ_clone(orig);
14443         return nativeResponseValue;
14444 }
14445         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_ok(struct LDKUpdateFailMalformedHTLC o);
14446 /* @internal */
14447 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_ok(o: number): number {
14448         if(!isWasmInitialized) {
14449                 throw new Error("initializeWasm() must be awaited first!");
14450         }
14451         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_ok(o);
14452         return nativeResponseValue;
14453 }
14454         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_err(struct LDKDecodeError e);
14455 /* @internal */
14456 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_err(e: number): number {
14457         if(!isWasmInitialized) {
14458                 throw new Error("initializeWasm() must be awaited first!");
14459         }
14460         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_err(e);
14461         return nativeResponseValue;
14462 }
14463         // bool CResult_UpdateFailMalformedHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR o);
14464 /* @internal */
14465 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_is_ok(o: number): boolean {
14466         if(!isWasmInitialized) {
14467                 throw new Error("initializeWasm() must be awaited first!");
14468         }
14469         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_is_ok(o);
14470         return nativeResponseValue;
14471 }
14472         // void CResult_UpdateFailMalformedHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ _res);
14473 /* @internal */
14474 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_free(_res: number): void {
14475         if(!isWasmInitialized) {
14476                 throw new Error("initializeWasm() must be awaited first!");
14477         }
14478         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_free(_res);
14479         // debug statements here
14480 }
14481         // uintptr_t CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR arg);
14482 /* @internal */
14483 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone_ptr(arg: number): number {
14484         if(!isWasmInitialized) {
14485                 throw new Error("initializeWasm() must be awaited first!");
14486         }
14487         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone_ptr(arg);
14488         return nativeResponseValue;
14489 }
14490         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ *NONNULL_PTR orig);
14491 /* @internal */
14492 export function CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone(orig: number): number {
14493         if(!isWasmInitialized) {
14494                 throw new Error("initializeWasm() must be awaited first!");
14495         }
14496         const nativeResponseValue = wasm.TS_CResult_UpdateFailMalformedHTLCDecodeErrorZ_clone(orig);
14497         return nativeResponseValue;
14498 }
14499         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_ok(struct LDKUpdateFee o);
14500 /* @internal */
14501 export function CResult_UpdateFeeDecodeErrorZ_ok(o: number): number {
14502         if(!isWasmInitialized) {
14503                 throw new Error("initializeWasm() must be awaited first!");
14504         }
14505         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_ok(o);
14506         return nativeResponseValue;
14507 }
14508         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_err(struct LDKDecodeError e);
14509 /* @internal */
14510 export function CResult_UpdateFeeDecodeErrorZ_err(e: number): number {
14511         if(!isWasmInitialized) {
14512                 throw new Error("initializeWasm() must be awaited first!");
14513         }
14514         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_err(e);
14515         return nativeResponseValue;
14516 }
14517         // bool CResult_UpdateFeeDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR o);
14518 /* @internal */
14519 export function CResult_UpdateFeeDecodeErrorZ_is_ok(o: number): boolean {
14520         if(!isWasmInitialized) {
14521                 throw new Error("initializeWasm() must be awaited first!");
14522         }
14523         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_is_ok(o);
14524         return nativeResponseValue;
14525 }
14526         // void CResult_UpdateFeeDecodeErrorZ_free(struct LDKCResult_UpdateFeeDecodeErrorZ _res);
14527 /* @internal */
14528 export function CResult_UpdateFeeDecodeErrorZ_free(_res: number): void {
14529         if(!isWasmInitialized) {
14530                 throw new Error("initializeWasm() must be awaited first!");
14531         }
14532         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_free(_res);
14533         // debug statements here
14534 }
14535         // uintptr_t CResult_UpdateFeeDecodeErrorZ_clone_ptr(LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR arg);
14536 /* @internal */
14537 export function CResult_UpdateFeeDecodeErrorZ_clone_ptr(arg: number): number {
14538         if(!isWasmInitialized) {
14539                 throw new Error("initializeWasm() must be awaited first!");
14540         }
14541         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_clone_ptr(arg);
14542         return nativeResponseValue;
14543 }
14544         // struct LDKCResult_UpdateFeeDecodeErrorZ CResult_UpdateFeeDecodeErrorZ_clone(const struct LDKCResult_UpdateFeeDecodeErrorZ *NONNULL_PTR orig);
14545 /* @internal */
14546 export function CResult_UpdateFeeDecodeErrorZ_clone(orig: number): number {
14547         if(!isWasmInitialized) {
14548                 throw new Error("initializeWasm() must be awaited first!");
14549         }
14550         const nativeResponseValue = wasm.TS_CResult_UpdateFeeDecodeErrorZ_clone(orig);
14551         return nativeResponseValue;
14552 }
14553         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_ok(struct LDKUpdateFulfillHTLC o);
14554 /* @internal */
14555 export function CResult_UpdateFulfillHTLCDecodeErrorZ_ok(o: number): number {
14556         if(!isWasmInitialized) {
14557                 throw new Error("initializeWasm() must be awaited first!");
14558         }
14559         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_ok(o);
14560         return nativeResponseValue;
14561 }
14562         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_err(struct LDKDecodeError e);
14563 /* @internal */
14564 export function CResult_UpdateFulfillHTLCDecodeErrorZ_err(e: number): number {
14565         if(!isWasmInitialized) {
14566                 throw new Error("initializeWasm() must be awaited first!");
14567         }
14568         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_err(e);
14569         return nativeResponseValue;
14570 }
14571         // bool CResult_UpdateFulfillHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR o);
14572 /* @internal */
14573 export function CResult_UpdateFulfillHTLCDecodeErrorZ_is_ok(o: number): boolean {
14574         if(!isWasmInitialized) {
14575                 throw new Error("initializeWasm() must be awaited first!");
14576         }
14577         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_is_ok(o);
14578         return nativeResponseValue;
14579 }
14580         // void CResult_UpdateFulfillHTLCDecodeErrorZ_free(struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ _res);
14581 /* @internal */
14582 export function CResult_UpdateFulfillHTLCDecodeErrorZ_free(_res: number): void {
14583         if(!isWasmInitialized) {
14584                 throw new Error("initializeWasm() must be awaited first!");
14585         }
14586         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_free(_res);
14587         // debug statements here
14588 }
14589         // uintptr_t CResult_UpdateFulfillHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR arg);
14590 /* @internal */
14591 export function CResult_UpdateFulfillHTLCDecodeErrorZ_clone_ptr(arg: number): number {
14592         if(!isWasmInitialized) {
14593                 throw new Error("initializeWasm() must be awaited first!");
14594         }
14595         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_clone_ptr(arg);
14596         return nativeResponseValue;
14597 }
14598         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ CResult_UpdateFulfillHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ *NONNULL_PTR orig);
14599 /* @internal */
14600 export function CResult_UpdateFulfillHTLCDecodeErrorZ_clone(orig: number): number {
14601         if(!isWasmInitialized) {
14602                 throw new Error("initializeWasm() must be awaited first!");
14603         }
14604         const nativeResponseValue = wasm.TS_CResult_UpdateFulfillHTLCDecodeErrorZ_clone(orig);
14605         return nativeResponseValue;
14606 }
14607         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_ok(struct LDKUpdateAddHTLC o);
14608 /* @internal */
14609 export function CResult_UpdateAddHTLCDecodeErrorZ_ok(o: number): number {
14610         if(!isWasmInitialized) {
14611                 throw new Error("initializeWasm() must be awaited first!");
14612         }
14613         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_ok(o);
14614         return nativeResponseValue;
14615 }
14616         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_err(struct LDKDecodeError e);
14617 /* @internal */
14618 export function CResult_UpdateAddHTLCDecodeErrorZ_err(e: number): number {
14619         if(!isWasmInitialized) {
14620                 throw new Error("initializeWasm() must be awaited first!");
14621         }
14622         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_err(e);
14623         return nativeResponseValue;
14624 }
14625         // bool CResult_UpdateAddHTLCDecodeErrorZ_is_ok(const struct LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR o);
14626 /* @internal */
14627 export function CResult_UpdateAddHTLCDecodeErrorZ_is_ok(o: number): boolean {
14628         if(!isWasmInitialized) {
14629                 throw new Error("initializeWasm() must be awaited first!");
14630         }
14631         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_is_ok(o);
14632         return nativeResponseValue;
14633 }
14634         // void CResult_UpdateAddHTLCDecodeErrorZ_free(struct LDKCResult_UpdateAddHTLCDecodeErrorZ _res);
14635 /* @internal */
14636 export function CResult_UpdateAddHTLCDecodeErrorZ_free(_res: number): void {
14637         if(!isWasmInitialized) {
14638                 throw new Error("initializeWasm() must be awaited first!");
14639         }
14640         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_free(_res);
14641         // debug statements here
14642 }
14643         // uintptr_t CResult_UpdateAddHTLCDecodeErrorZ_clone_ptr(LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR arg);
14644 /* @internal */
14645 export function CResult_UpdateAddHTLCDecodeErrorZ_clone_ptr(arg: number): number {
14646         if(!isWasmInitialized) {
14647                 throw new Error("initializeWasm() must be awaited first!");
14648         }
14649         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_clone_ptr(arg);
14650         return nativeResponseValue;
14651 }
14652         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ CResult_UpdateAddHTLCDecodeErrorZ_clone(const struct LDKCResult_UpdateAddHTLCDecodeErrorZ *NONNULL_PTR orig);
14653 /* @internal */
14654 export function CResult_UpdateAddHTLCDecodeErrorZ_clone(orig: number): number {
14655         if(!isWasmInitialized) {
14656                 throw new Error("initializeWasm() must be awaited first!");
14657         }
14658         const nativeResponseValue = wasm.TS_CResult_UpdateAddHTLCDecodeErrorZ_clone(orig);
14659         return nativeResponseValue;
14660 }
14661         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_ok(struct LDKPing o);
14662 /* @internal */
14663 export function CResult_PingDecodeErrorZ_ok(o: number): number {
14664         if(!isWasmInitialized) {
14665                 throw new Error("initializeWasm() must be awaited first!");
14666         }
14667         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_ok(o);
14668         return nativeResponseValue;
14669 }
14670         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_err(struct LDKDecodeError e);
14671 /* @internal */
14672 export function CResult_PingDecodeErrorZ_err(e: number): number {
14673         if(!isWasmInitialized) {
14674                 throw new Error("initializeWasm() must be awaited first!");
14675         }
14676         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_err(e);
14677         return nativeResponseValue;
14678 }
14679         // bool CResult_PingDecodeErrorZ_is_ok(const struct LDKCResult_PingDecodeErrorZ *NONNULL_PTR o);
14680 /* @internal */
14681 export function CResult_PingDecodeErrorZ_is_ok(o: number): boolean {
14682         if(!isWasmInitialized) {
14683                 throw new Error("initializeWasm() must be awaited first!");
14684         }
14685         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_is_ok(o);
14686         return nativeResponseValue;
14687 }
14688         // void CResult_PingDecodeErrorZ_free(struct LDKCResult_PingDecodeErrorZ _res);
14689 /* @internal */
14690 export function CResult_PingDecodeErrorZ_free(_res: number): void {
14691         if(!isWasmInitialized) {
14692                 throw new Error("initializeWasm() must be awaited first!");
14693         }
14694         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_free(_res);
14695         // debug statements here
14696 }
14697         // uintptr_t CResult_PingDecodeErrorZ_clone_ptr(LDKCResult_PingDecodeErrorZ *NONNULL_PTR arg);
14698 /* @internal */
14699 export function CResult_PingDecodeErrorZ_clone_ptr(arg: number): number {
14700         if(!isWasmInitialized) {
14701                 throw new Error("initializeWasm() must be awaited first!");
14702         }
14703         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_clone_ptr(arg);
14704         return nativeResponseValue;
14705 }
14706         // struct LDKCResult_PingDecodeErrorZ CResult_PingDecodeErrorZ_clone(const struct LDKCResult_PingDecodeErrorZ *NONNULL_PTR orig);
14707 /* @internal */
14708 export function CResult_PingDecodeErrorZ_clone(orig: number): number {
14709         if(!isWasmInitialized) {
14710                 throw new Error("initializeWasm() must be awaited first!");
14711         }
14712         const nativeResponseValue = wasm.TS_CResult_PingDecodeErrorZ_clone(orig);
14713         return nativeResponseValue;
14714 }
14715         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_ok(struct LDKPong o);
14716 /* @internal */
14717 export function CResult_PongDecodeErrorZ_ok(o: number): number {
14718         if(!isWasmInitialized) {
14719                 throw new Error("initializeWasm() must be awaited first!");
14720         }
14721         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_ok(o);
14722         return nativeResponseValue;
14723 }
14724         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_err(struct LDKDecodeError e);
14725 /* @internal */
14726 export function CResult_PongDecodeErrorZ_err(e: number): number {
14727         if(!isWasmInitialized) {
14728                 throw new Error("initializeWasm() must be awaited first!");
14729         }
14730         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_err(e);
14731         return nativeResponseValue;
14732 }
14733         // bool CResult_PongDecodeErrorZ_is_ok(const struct LDKCResult_PongDecodeErrorZ *NONNULL_PTR o);
14734 /* @internal */
14735 export function CResult_PongDecodeErrorZ_is_ok(o: number): boolean {
14736         if(!isWasmInitialized) {
14737                 throw new Error("initializeWasm() must be awaited first!");
14738         }
14739         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_is_ok(o);
14740         return nativeResponseValue;
14741 }
14742         // void CResult_PongDecodeErrorZ_free(struct LDKCResult_PongDecodeErrorZ _res);
14743 /* @internal */
14744 export function CResult_PongDecodeErrorZ_free(_res: number): void {
14745         if(!isWasmInitialized) {
14746                 throw new Error("initializeWasm() must be awaited first!");
14747         }
14748         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_free(_res);
14749         // debug statements here
14750 }
14751         // uintptr_t CResult_PongDecodeErrorZ_clone_ptr(LDKCResult_PongDecodeErrorZ *NONNULL_PTR arg);
14752 /* @internal */
14753 export function CResult_PongDecodeErrorZ_clone_ptr(arg: number): number {
14754         if(!isWasmInitialized) {
14755                 throw new Error("initializeWasm() must be awaited first!");
14756         }
14757         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_clone_ptr(arg);
14758         return nativeResponseValue;
14759 }
14760         // struct LDKCResult_PongDecodeErrorZ CResult_PongDecodeErrorZ_clone(const struct LDKCResult_PongDecodeErrorZ *NONNULL_PTR orig);
14761 /* @internal */
14762 export function CResult_PongDecodeErrorZ_clone(orig: number): number {
14763         if(!isWasmInitialized) {
14764                 throw new Error("initializeWasm() must be awaited first!");
14765         }
14766         const nativeResponseValue = wasm.TS_CResult_PongDecodeErrorZ_clone(orig);
14767         return nativeResponseValue;
14768 }
14769         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok(struct LDKUnsignedChannelAnnouncement o);
14770 /* @internal */
14771 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok(o: number): number {
14772         if(!isWasmInitialized) {
14773                 throw new Error("initializeWasm() must be awaited first!");
14774         }
14775         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_ok(o);
14776         return nativeResponseValue;
14777 }
14778         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
14779 /* @internal */
14780 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_err(e: number): number {
14781         if(!isWasmInitialized) {
14782                 throw new Error("initializeWasm() must be awaited first!");
14783         }
14784         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_err(e);
14785         return nativeResponseValue;
14786 }
14787         // bool CResult_UnsignedChannelAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR o);
14788 /* @internal */
14789 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_is_ok(o: number): boolean {
14790         if(!isWasmInitialized) {
14791                 throw new Error("initializeWasm() must be awaited first!");
14792         }
14793         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_is_ok(o);
14794         return nativeResponseValue;
14795 }
14796         // void CResult_UnsignedChannelAnnouncementDecodeErrorZ_free(struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ _res);
14797 /* @internal */
14798 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_free(_res: number): void {
14799         if(!isWasmInitialized) {
14800                 throw new Error("initializeWasm() must be awaited first!");
14801         }
14802         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_free(_res);
14803         // debug statements here
14804 }
14805         // uintptr_t CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR arg);
14806 /* @internal */
14807 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone_ptr(arg: number): number {
14808         if(!isWasmInitialized) {
14809                 throw new Error("initializeWasm() must be awaited first!");
14810         }
14811         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone_ptr(arg);
14812         return nativeResponseValue;
14813 }
14814         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone(const struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ *NONNULL_PTR orig);
14815 /* @internal */
14816 export function CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone(orig: number): number {
14817         if(!isWasmInitialized) {
14818                 throw new Error("initializeWasm() must be awaited first!");
14819         }
14820         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelAnnouncementDecodeErrorZ_clone(orig);
14821         return nativeResponseValue;
14822 }
14823         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_ok(struct LDKChannelAnnouncement o);
14824 /* @internal */
14825 export function CResult_ChannelAnnouncementDecodeErrorZ_ok(o: number): number {
14826         if(!isWasmInitialized) {
14827                 throw new Error("initializeWasm() must be awaited first!");
14828         }
14829         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_ok(o);
14830         return nativeResponseValue;
14831 }
14832         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
14833 /* @internal */
14834 export function CResult_ChannelAnnouncementDecodeErrorZ_err(e: number): number {
14835         if(!isWasmInitialized) {
14836                 throw new Error("initializeWasm() must be awaited first!");
14837         }
14838         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_err(e);
14839         return nativeResponseValue;
14840 }
14841         // bool CResult_ChannelAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR o);
14842 /* @internal */
14843 export function CResult_ChannelAnnouncementDecodeErrorZ_is_ok(o: number): boolean {
14844         if(!isWasmInitialized) {
14845                 throw new Error("initializeWasm() must be awaited first!");
14846         }
14847         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_is_ok(o);
14848         return nativeResponseValue;
14849 }
14850         // void CResult_ChannelAnnouncementDecodeErrorZ_free(struct LDKCResult_ChannelAnnouncementDecodeErrorZ _res);
14851 /* @internal */
14852 export function CResult_ChannelAnnouncementDecodeErrorZ_free(_res: number): void {
14853         if(!isWasmInitialized) {
14854                 throw new Error("initializeWasm() must be awaited first!");
14855         }
14856         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_free(_res);
14857         // debug statements here
14858 }
14859         // uintptr_t CResult_ChannelAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR arg);
14860 /* @internal */
14861 export function CResult_ChannelAnnouncementDecodeErrorZ_clone_ptr(arg: number): number {
14862         if(!isWasmInitialized) {
14863                 throw new Error("initializeWasm() must be awaited first!");
14864         }
14865         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_clone_ptr(arg);
14866         return nativeResponseValue;
14867 }
14868         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ CResult_ChannelAnnouncementDecodeErrorZ_clone(const struct LDKCResult_ChannelAnnouncementDecodeErrorZ *NONNULL_PTR orig);
14869 /* @internal */
14870 export function CResult_ChannelAnnouncementDecodeErrorZ_clone(orig: number): number {
14871         if(!isWasmInitialized) {
14872                 throw new Error("initializeWasm() must be awaited first!");
14873         }
14874         const nativeResponseValue = wasm.TS_CResult_ChannelAnnouncementDecodeErrorZ_clone(orig);
14875         return nativeResponseValue;
14876 }
14877         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_ok(struct LDKUnsignedChannelUpdate o);
14878 /* @internal */
14879 export function CResult_UnsignedChannelUpdateDecodeErrorZ_ok(o: number): number {
14880         if(!isWasmInitialized) {
14881                 throw new Error("initializeWasm() must be awaited first!");
14882         }
14883         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_ok(o);
14884         return nativeResponseValue;
14885 }
14886         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_err(struct LDKDecodeError e);
14887 /* @internal */
14888 export function CResult_UnsignedChannelUpdateDecodeErrorZ_err(e: number): number {
14889         if(!isWasmInitialized) {
14890                 throw new Error("initializeWasm() must be awaited first!");
14891         }
14892         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_err(e);
14893         return nativeResponseValue;
14894 }
14895         // bool CResult_UnsignedChannelUpdateDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR o);
14896 /* @internal */
14897 export function CResult_UnsignedChannelUpdateDecodeErrorZ_is_ok(o: number): boolean {
14898         if(!isWasmInitialized) {
14899                 throw new Error("initializeWasm() must be awaited first!");
14900         }
14901         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_is_ok(o);
14902         return nativeResponseValue;
14903 }
14904         // void CResult_UnsignedChannelUpdateDecodeErrorZ_free(struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ _res);
14905 /* @internal */
14906 export function CResult_UnsignedChannelUpdateDecodeErrorZ_free(_res: number): void {
14907         if(!isWasmInitialized) {
14908                 throw new Error("initializeWasm() must be awaited first!");
14909         }
14910         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_free(_res);
14911         // debug statements here
14912 }
14913         // uintptr_t CResult_UnsignedChannelUpdateDecodeErrorZ_clone_ptr(LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR arg);
14914 /* @internal */
14915 export function CResult_UnsignedChannelUpdateDecodeErrorZ_clone_ptr(arg: number): number {
14916         if(!isWasmInitialized) {
14917                 throw new Error("initializeWasm() must be awaited first!");
14918         }
14919         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_clone_ptr(arg);
14920         return nativeResponseValue;
14921 }
14922         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ CResult_UnsignedChannelUpdateDecodeErrorZ_clone(const struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ *NONNULL_PTR orig);
14923 /* @internal */
14924 export function CResult_UnsignedChannelUpdateDecodeErrorZ_clone(orig: number): number {
14925         if(!isWasmInitialized) {
14926                 throw new Error("initializeWasm() must be awaited first!");
14927         }
14928         const nativeResponseValue = wasm.TS_CResult_UnsignedChannelUpdateDecodeErrorZ_clone(orig);
14929         return nativeResponseValue;
14930 }
14931         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_ok(struct LDKChannelUpdate o);
14932 /* @internal */
14933 export function CResult_ChannelUpdateDecodeErrorZ_ok(o: number): number {
14934         if(!isWasmInitialized) {
14935                 throw new Error("initializeWasm() must be awaited first!");
14936         }
14937         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_ok(o);
14938         return nativeResponseValue;
14939 }
14940         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_err(struct LDKDecodeError e);
14941 /* @internal */
14942 export function CResult_ChannelUpdateDecodeErrorZ_err(e: number): number {
14943         if(!isWasmInitialized) {
14944                 throw new Error("initializeWasm() must be awaited first!");
14945         }
14946         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_err(e);
14947         return nativeResponseValue;
14948 }
14949         // bool CResult_ChannelUpdateDecodeErrorZ_is_ok(const struct LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR o);
14950 /* @internal */
14951 export function CResult_ChannelUpdateDecodeErrorZ_is_ok(o: number): boolean {
14952         if(!isWasmInitialized) {
14953                 throw new Error("initializeWasm() must be awaited first!");
14954         }
14955         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_is_ok(o);
14956         return nativeResponseValue;
14957 }
14958         // void CResult_ChannelUpdateDecodeErrorZ_free(struct LDKCResult_ChannelUpdateDecodeErrorZ _res);
14959 /* @internal */
14960 export function CResult_ChannelUpdateDecodeErrorZ_free(_res: number): void {
14961         if(!isWasmInitialized) {
14962                 throw new Error("initializeWasm() must be awaited first!");
14963         }
14964         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_free(_res);
14965         // debug statements here
14966 }
14967         // uintptr_t CResult_ChannelUpdateDecodeErrorZ_clone_ptr(LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR arg);
14968 /* @internal */
14969 export function CResult_ChannelUpdateDecodeErrorZ_clone_ptr(arg: number): number {
14970         if(!isWasmInitialized) {
14971                 throw new Error("initializeWasm() must be awaited first!");
14972         }
14973         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_clone_ptr(arg);
14974         return nativeResponseValue;
14975 }
14976         // struct LDKCResult_ChannelUpdateDecodeErrorZ CResult_ChannelUpdateDecodeErrorZ_clone(const struct LDKCResult_ChannelUpdateDecodeErrorZ *NONNULL_PTR orig);
14977 /* @internal */
14978 export function CResult_ChannelUpdateDecodeErrorZ_clone(orig: number): number {
14979         if(!isWasmInitialized) {
14980                 throw new Error("initializeWasm() must be awaited first!");
14981         }
14982         const nativeResponseValue = wasm.TS_CResult_ChannelUpdateDecodeErrorZ_clone(orig);
14983         return nativeResponseValue;
14984 }
14985         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_ok(struct LDKErrorMessage o);
14986 /* @internal */
14987 export function CResult_ErrorMessageDecodeErrorZ_ok(o: number): number {
14988         if(!isWasmInitialized) {
14989                 throw new Error("initializeWasm() must be awaited first!");
14990         }
14991         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_ok(o);
14992         return nativeResponseValue;
14993 }
14994         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_err(struct LDKDecodeError e);
14995 /* @internal */
14996 export function CResult_ErrorMessageDecodeErrorZ_err(e: number): number {
14997         if(!isWasmInitialized) {
14998                 throw new Error("initializeWasm() must be awaited first!");
14999         }
15000         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_err(e);
15001         return nativeResponseValue;
15002 }
15003         // bool CResult_ErrorMessageDecodeErrorZ_is_ok(const struct LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR o);
15004 /* @internal */
15005 export function CResult_ErrorMessageDecodeErrorZ_is_ok(o: number): boolean {
15006         if(!isWasmInitialized) {
15007                 throw new Error("initializeWasm() must be awaited first!");
15008         }
15009         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_is_ok(o);
15010         return nativeResponseValue;
15011 }
15012         // void CResult_ErrorMessageDecodeErrorZ_free(struct LDKCResult_ErrorMessageDecodeErrorZ _res);
15013 /* @internal */
15014 export function CResult_ErrorMessageDecodeErrorZ_free(_res: number): void {
15015         if(!isWasmInitialized) {
15016                 throw new Error("initializeWasm() must be awaited first!");
15017         }
15018         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_free(_res);
15019         // debug statements here
15020 }
15021         // uintptr_t CResult_ErrorMessageDecodeErrorZ_clone_ptr(LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR arg);
15022 /* @internal */
15023 export function CResult_ErrorMessageDecodeErrorZ_clone_ptr(arg: number): number {
15024         if(!isWasmInitialized) {
15025                 throw new Error("initializeWasm() must be awaited first!");
15026         }
15027         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_clone_ptr(arg);
15028         return nativeResponseValue;
15029 }
15030         // struct LDKCResult_ErrorMessageDecodeErrorZ CResult_ErrorMessageDecodeErrorZ_clone(const struct LDKCResult_ErrorMessageDecodeErrorZ *NONNULL_PTR orig);
15031 /* @internal */
15032 export function CResult_ErrorMessageDecodeErrorZ_clone(orig: number): number {
15033         if(!isWasmInitialized) {
15034                 throw new Error("initializeWasm() must be awaited first!");
15035         }
15036         const nativeResponseValue = wasm.TS_CResult_ErrorMessageDecodeErrorZ_clone(orig);
15037         return nativeResponseValue;
15038 }
15039         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_ok(struct LDKWarningMessage o);
15040 /* @internal */
15041 export function CResult_WarningMessageDecodeErrorZ_ok(o: number): number {
15042         if(!isWasmInitialized) {
15043                 throw new Error("initializeWasm() must be awaited first!");
15044         }
15045         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_ok(o);
15046         return nativeResponseValue;
15047 }
15048         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_err(struct LDKDecodeError e);
15049 /* @internal */
15050 export function CResult_WarningMessageDecodeErrorZ_err(e: number): number {
15051         if(!isWasmInitialized) {
15052                 throw new Error("initializeWasm() must be awaited first!");
15053         }
15054         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_err(e);
15055         return nativeResponseValue;
15056 }
15057         // bool CResult_WarningMessageDecodeErrorZ_is_ok(const struct LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR o);
15058 /* @internal */
15059 export function CResult_WarningMessageDecodeErrorZ_is_ok(o: number): boolean {
15060         if(!isWasmInitialized) {
15061                 throw new Error("initializeWasm() must be awaited first!");
15062         }
15063         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_is_ok(o);
15064         return nativeResponseValue;
15065 }
15066         // void CResult_WarningMessageDecodeErrorZ_free(struct LDKCResult_WarningMessageDecodeErrorZ _res);
15067 /* @internal */
15068 export function CResult_WarningMessageDecodeErrorZ_free(_res: number): void {
15069         if(!isWasmInitialized) {
15070                 throw new Error("initializeWasm() must be awaited first!");
15071         }
15072         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_free(_res);
15073         // debug statements here
15074 }
15075         // uintptr_t CResult_WarningMessageDecodeErrorZ_clone_ptr(LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR arg);
15076 /* @internal */
15077 export function CResult_WarningMessageDecodeErrorZ_clone_ptr(arg: number): number {
15078         if(!isWasmInitialized) {
15079                 throw new Error("initializeWasm() must be awaited first!");
15080         }
15081         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_clone_ptr(arg);
15082         return nativeResponseValue;
15083 }
15084         // struct LDKCResult_WarningMessageDecodeErrorZ CResult_WarningMessageDecodeErrorZ_clone(const struct LDKCResult_WarningMessageDecodeErrorZ *NONNULL_PTR orig);
15085 /* @internal */
15086 export function CResult_WarningMessageDecodeErrorZ_clone(orig: number): number {
15087         if(!isWasmInitialized) {
15088                 throw new Error("initializeWasm() must be awaited first!");
15089         }
15090         const nativeResponseValue = wasm.TS_CResult_WarningMessageDecodeErrorZ_clone(orig);
15091         return nativeResponseValue;
15092 }
15093         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok(struct LDKUnsignedNodeAnnouncement o);
15094 /* @internal */
15095 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok(o: number): number {
15096         if(!isWasmInitialized) {
15097                 throw new Error("initializeWasm() must be awaited first!");
15098         }
15099         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_ok(o);
15100         return nativeResponseValue;
15101 }
15102         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
15103 /* @internal */
15104 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_err(e: number): number {
15105         if(!isWasmInitialized) {
15106                 throw new Error("initializeWasm() must be awaited first!");
15107         }
15108         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_err(e);
15109         return nativeResponseValue;
15110 }
15111         // bool CResult_UnsignedNodeAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR o);
15112 /* @internal */
15113 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_is_ok(o: number): boolean {
15114         if(!isWasmInitialized) {
15115                 throw new Error("initializeWasm() must be awaited first!");
15116         }
15117         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_is_ok(o);
15118         return nativeResponseValue;
15119 }
15120         // void CResult_UnsignedNodeAnnouncementDecodeErrorZ_free(struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ _res);
15121 /* @internal */
15122 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_free(_res: number): void {
15123         if(!isWasmInitialized) {
15124                 throw new Error("initializeWasm() must be awaited first!");
15125         }
15126         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_free(_res);
15127         // debug statements here
15128 }
15129         // uintptr_t CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR arg);
15130 /* @internal */
15131 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone_ptr(arg: number): number {
15132         if(!isWasmInitialized) {
15133                 throw new Error("initializeWasm() must be awaited first!");
15134         }
15135         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone_ptr(arg);
15136         return nativeResponseValue;
15137 }
15138         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone(const struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ *NONNULL_PTR orig);
15139 /* @internal */
15140 export function CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone(orig: number): number {
15141         if(!isWasmInitialized) {
15142                 throw new Error("initializeWasm() must be awaited first!");
15143         }
15144         const nativeResponseValue = wasm.TS_CResult_UnsignedNodeAnnouncementDecodeErrorZ_clone(orig);
15145         return nativeResponseValue;
15146 }
15147         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_ok(struct LDKNodeAnnouncement o);
15148 /* @internal */
15149 export function CResult_NodeAnnouncementDecodeErrorZ_ok(o: number): number {
15150         if(!isWasmInitialized) {
15151                 throw new Error("initializeWasm() must be awaited first!");
15152         }
15153         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_ok(o);
15154         return nativeResponseValue;
15155 }
15156         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_err(struct LDKDecodeError e);
15157 /* @internal */
15158 export function CResult_NodeAnnouncementDecodeErrorZ_err(e: number): number {
15159         if(!isWasmInitialized) {
15160                 throw new Error("initializeWasm() must be awaited first!");
15161         }
15162         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_err(e);
15163         return nativeResponseValue;
15164 }
15165         // bool CResult_NodeAnnouncementDecodeErrorZ_is_ok(const struct LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR o);
15166 /* @internal */
15167 export function CResult_NodeAnnouncementDecodeErrorZ_is_ok(o: number): boolean {
15168         if(!isWasmInitialized) {
15169                 throw new Error("initializeWasm() must be awaited first!");
15170         }
15171         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_is_ok(o);
15172         return nativeResponseValue;
15173 }
15174         // void CResult_NodeAnnouncementDecodeErrorZ_free(struct LDKCResult_NodeAnnouncementDecodeErrorZ _res);
15175 /* @internal */
15176 export function CResult_NodeAnnouncementDecodeErrorZ_free(_res: number): void {
15177         if(!isWasmInitialized) {
15178                 throw new Error("initializeWasm() must be awaited first!");
15179         }
15180         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_free(_res);
15181         // debug statements here
15182 }
15183         // uintptr_t CResult_NodeAnnouncementDecodeErrorZ_clone_ptr(LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR arg);
15184 /* @internal */
15185 export function CResult_NodeAnnouncementDecodeErrorZ_clone_ptr(arg: number): number {
15186         if(!isWasmInitialized) {
15187                 throw new Error("initializeWasm() must be awaited first!");
15188         }
15189         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_clone_ptr(arg);
15190         return nativeResponseValue;
15191 }
15192         // struct LDKCResult_NodeAnnouncementDecodeErrorZ CResult_NodeAnnouncementDecodeErrorZ_clone(const struct LDKCResult_NodeAnnouncementDecodeErrorZ *NONNULL_PTR orig);
15193 /* @internal */
15194 export function CResult_NodeAnnouncementDecodeErrorZ_clone(orig: number): number {
15195         if(!isWasmInitialized) {
15196                 throw new Error("initializeWasm() must be awaited first!");
15197         }
15198         const nativeResponseValue = wasm.TS_CResult_NodeAnnouncementDecodeErrorZ_clone(orig);
15199         return nativeResponseValue;
15200 }
15201         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_ok(struct LDKQueryShortChannelIds o);
15202 /* @internal */
15203 export function CResult_QueryShortChannelIdsDecodeErrorZ_ok(o: number): number {
15204         if(!isWasmInitialized) {
15205                 throw new Error("initializeWasm() must be awaited first!");
15206         }
15207         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_ok(o);
15208         return nativeResponseValue;
15209 }
15210         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_err(struct LDKDecodeError e);
15211 /* @internal */
15212 export function CResult_QueryShortChannelIdsDecodeErrorZ_err(e: number): number {
15213         if(!isWasmInitialized) {
15214                 throw new Error("initializeWasm() must be awaited first!");
15215         }
15216         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_err(e);
15217         return nativeResponseValue;
15218 }
15219         // bool CResult_QueryShortChannelIdsDecodeErrorZ_is_ok(const struct LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR o);
15220 /* @internal */
15221 export function CResult_QueryShortChannelIdsDecodeErrorZ_is_ok(o: number): boolean {
15222         if(!isWasmInitialized) {
15223                 throw new Error("initializeWasm() must be awaited first!");
15224         }
15225         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_is_ok(o);
15226         return nativeResponseValue;
15227 }
15228         // void CResult_QueryShortChannelIdsDecodeErrorZ_free(struct LDKCResult_QueryShortChannelIdsDecodeErrorZ _res);
15229 /* @internal */
15230 export function CResult_QueryShortChannelIdsDecodeErrorZ_free(_res: number): void {
15231         if(!isWasmInitialized) {
15232                 throw new Error("initializeWasm() must be awaited first!");
15233         }
15234         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_free(_res);
15235         // debug statements here
15236 }
15237         // uintptr_t CResult_QueryShortChannelIdsDecodeErrorZ_clone_ptr(LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR arg);
15238 /* @internal */
15239 export function CResult_QueryShortChannelIdsDecodeErrorZ_clone_ptr(arg: number): number {
15240         if(!isWasmInitialized) {
15241                 throw new Error("initializeWasm() must be awaited first!");
15242         }
15243         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_clone_ptr(arg);
15244         return nativeResponseValue;
15245 }
15246         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ CResult_QueryShortChannelIdsDecodeErrorZ_clone(const struct LDKCResult_QueryShortChannelIdsDecodeErrorZ *NONNULL_PTR orig);
15247 /* @internal */
15248 export function CResult_QueryShortChannelIdsDecodeErrorZ_clone(orig: number): number {
15249         if(!isWasmInitialized) {
15250                 throw new Error("initializeWasm() must be awaited first!");
15251         }
15252         const nativeResponseValue = wasm.TS_CResult_QueryShortChannelIdsDecodeErrorZ_clone(orig);
15253         return nativeResponseValue;
15254 }
15255         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(struct LDKReplyShortChannelIdsEnd o);
15256 /* @internal */
15257 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(o: number): number {
15258         if(!isWasmInitialized) {
15259                 throw new Error("initializeWasm() must be awaited first!");
15260         }
15261         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_ok(o);
15262         return nativeResponseValue;
15263 }
15264         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(struct LDKDecodeError e);
15265 /* @internal */
15266 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(e: number): number {
15267         if(!isWasmInitialized) {
15268                 throw new Error("initializeWasm() must be awaited first!");
15269         }
15270         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_err(e);
15271         return nativeResponseValue;
15272 }
15273         // bool CResult_ReplyShortChannelIdsEndDecodeErrorZ_is_ok(const struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR o);
15274 /* @internal */
15275 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_is_ok(o: number): boolean {
15276         if(!isWasmInitialized) {
15277                 throw new Error("initializeWasm() must be awaited first!");
15278         }
15279         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_is_ok(o);
15280         return nativeResponseValue;
15281 }
15282         // void CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ _res);
15283 /* @internal */
15284 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(_res: number): void {
15285         if(!isWasmInitialized) {
15286                 throw new Error("initializeWasm() must be awaited first!");
15287         }
15288         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_free(_res);
15289         // debug statements here
15290 }
15291         // uintptr_t CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone_ptr(LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR arg);
15292 /* @internal */
15293 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone_ptr(arg: number): number {
15294         if(!isWasmInitialized) {
15295                 throw new Error("initializeWasm() must be awaited first!");
15296         }
15297         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone_ptr(arg);
15298         return nativeResponseValue;
15299 }
15300         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone(const struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ *NONNULL_PTR orig);
15301 /* @internal */
15302 export function CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone(orig: number): number {
15303         if(!isWasmInitialized) {
15304                 throw new Error("initializeWasm() must be awaited first!");
15305         }
15306         const nativeResponseValue = wasm.TS_CResult_ReplyShortChannelIdsEndDecodeErrorZ_clone(orig);
15307         return nativeResponseValue;
15308 }
15309         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_ok(struct LDKQueryChannelRange o);
15310 /* @internal */
15311 export function CResult_QueryChannelRangeDecodeErrorZ_ok(o: number): number {
15312         if(!isWasmInitialized) {
15313                 throw new Error("initializeWasm() must be awaited first!");
15314         }
15315         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_ok(o);
15316         return nativeResponseValue;
15317 }
15318         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_err(struct LDKDecodeError e);
15319 /* @internal */
15320 export function CResult_QueryChannelRangeDecodeErrorZ_err(e: number): number {
15321         if(!isWasmInitialized) {
15322                 throw new Error("initializeWasm() must be awaited first!");
15323         }
15324         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_err(e);
15325         return nativeResponseValue;
15326 }
15327         // bool CResult_QueryChannelRangeDecodeErrorZ_is_ok(const struct LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR o);
15328 /* @internal */
15329 export function CResult_QueryChannelRangeDecodeErrorZ_is_ok(o: number): boolean {
15330         if(!isWasmInitialized) {
15331                 throw new Error("initializeWasm() must be awaited first!");
15332         }
15333         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_is_ok(o);
15334         return nativeResponseValue;
15335 }
15336         // void CResult_QueryChannelRangeDecodeErrorZ_free(struct LDKCResult_QueryChannelRangeDecodeErrorZ _res);
15337 /* @internal */
15338 export function CResult_QueryChannelRangeDecodeErrorZ_free(_res: number): void {
15339         if(!isWasmInitialized) {
15340                 throw new Error("initializeWasm() must be awaited first!");
15341         }
15342         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_free(_res);
15343         // debug statements here
15344 }
15345         // uintptr_t CResult_QueryChannelRangeDecodeErrorZ_clone_ptr(LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR arg);
15346 /* @internal */
15347 export function CResult_QueryChannelRangeDecodeErrorZ_clone_ptr(arg: number): number {
15348         if(!isWasmInitialized) {
15349                 throw new Error("initializeWasm() must be awaited first!");
15350         }
15351         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_clone_ptr(arg);
15352         return nativeResponseValue;
15353 }
15354         // struct LDKCResult_QueryChannelRangeDecodeErrorZ CResult_QueryChannelRangeDecodeErrorZ_clone(const struct LDKCResult_QueryChannelRangeDecodeErrorZ *NONNULL_PTR orig);
15355 /* @internal */
15356 export function CResult_QueryChannelRangeDecodeErrorZ_clone(orig: number): number {
15357         if(!isWasmInitialized) {
15358                 throw new Error("initializeWasm() must be awaited first!");
15359         }
15360         const nativeResponseValue = wasm.TS_CResult_QueryChannelRangeDecodeErrorZ_clone(orig);
15361         return nativeResponseValue;
15362 }
15363         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_ok(struct LDKReplyChannelRange o);
15364 /* @internal */
15365 export function CResult_ReplyChannelRangeDecodeErrorZ_ok(o: number): number {
15366         if(!isWasmInitialized) {
15367                 throw new Error("initializeWasm() must be awaited first!");
15368         }
15369         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_ok(o);
15370         return nativeResponseValue;
15371 }
15372         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_err(struct LDKDecodeError e);
15373 /* @internal */
15374 export function CResult_ReplyChannelRangeDecodeErrorZ_err(e: number): number {
15375         if(!isWasmInitialized) {
15376                 throw new Error("initializeWasm() must be awaited first!");
15377         }
15378         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_err(e);
15379         return nativeResponseValue;
15380 }
15381         // bool CResult_ReplyChannelRangeDecodeErrorZ_is_ok(const struct LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR o);
15382 /* @internal */
15383 export function CResult_ReplyChannelRangeDecodeErrorZ_is_ok(o: number): boolean {
15384         if(!isWasmInitialized) {
15385                 throw new Error("initializeWasm() must be awaited first!");
15386         }
15387         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_is_ok(o);
15388         return nativeResponseValue;
15389 }
15390         // void CResult_ReplyChannelRangeDecodeErrorZ_free(struct LDKCResult_ReplyChannelRangeDecodeErrorZ _res);
15391 /* @internal */
15392 export function CResult_ReplyChannelRangeDecodeErrorZ_free(_res: number): void {
15393         if(!isWasmInitialized) {
15394                 throw new Error("initializeWasm() must be awaited first!");
15395         }
15396         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_free(_res);
15397         // debug statements here
15398 }
15399         // uintptr_t CResult_ReplyChannelRangeDecodeErrorZ_clone_ptr(LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR arg);
15400 /* @internal */
15401 export function CResult_ReplyChannelRangeDecodeErrorZ_clone_ptr(arg: number): number {
15402         if(!isWasmInitialized) {
15403                 throw new Error("initializeWasm() must be awaited first!");
15404         }
15405         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_clone_ptr(arg);
15406         return nativeResponseValue;
15407 }
15408         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ CResult_ReplyChannelRangeDecodeErrorZ_clone(const struct LDKCResult_ReplyChannelRangeDecodeErrorZ *NONNULL_PTR orig);
15409 /* @internal */
15410 export function CResult_ReplyChannelRangeDecodeErrorZ_clone(orig: number): number {
15411         if(!isWasmInitialized) {
15412                 throw new Error("initializeWasm() must be awaited first!");
15413         }
15414         const nativeResponseValue = wasm.TS_CResult_ReplyChannelRangeDecodeErrorZ_clone(orig);
15415         return nativeResponseValue;
15416 }
15417         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_ok(struct LDKGossipTimestampFilter o);
15418 /* @internal */
15419 export function CResult_GossipTimestampFilterDecodeErrorZ_ok(o: number): number {
15420         if(!isWasmInitialized) {
15421                 throw new Error("initializeWasm() must be awaited first!");
15422         }
15423         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_ok(o);
15424         return nativeResponseValue;
15425 }
15426         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_err(struct LDKDecodeError e);
15427 /* @internal */
15428 export function CResult_GossipTimestampFilterDecodeErrorZ_err(e: number): number {
15429         if(!isWasmInitialized) {
15430                 throw new Error("initializeWasm() must be awaited first!");
15431         }
15432         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_err(e);
15433         return nativeResponseValue;
15434 }
15435         // bool CResult_GossipTimestampFilterDecodeErrorZ_is_ok(const struct LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR o);
15436 /* @internal */
15437 export function CResult_GossipTimestampFilterDecodeErrorZ_is_ok(o: number): boolean {
15438         if(!isWasmInitialized) {
15439                 throw new Error("initializeWasm() must be awaited first!");
15440         }
15441         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_is_ok(o);
15442         return nativeResponseValue;
15443 }
15444         // void CResult_GossipTimestampFilterDecodeErrorZ_free(struct LDKCResult_GossipTimestampFilterDecodeErrorZ _res);
15445 /* @internal */
15446 export function CResult_GossipTimestampFilterDecodeErrorZ_free(_res: number): void {
15447         if(!isWasmInitialized) {
15448                 throw new Error("initializeWasm() must be awaited first!");
15449         }
15450         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_free(_res);
15451         // debug statements here
15452 }
15453         // uintptr_t CResult_GossipTimestampFilterDecodeErrorZ_clone_ptr(LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR arg);
15454 /* @internal */
15455 export function CResult_GossipTimestampFilterDecodeErrorZ_clone_ptr(arg: number): number {
15456         if(!isWasmInitialized) {
15457                 throw new Error("initializeWasm() must be awaited first!");
15458         }
15459         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_clone_ptr(arg);
15460         return nativeResponseValue;
15461 }
15462         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ CResult_GossipTimestampFilterDecodeErrorZ_clone(const struct LDKCResult_GossipTimestampFilterDecodeErrorZ *NONNULL_PTR orig);
15463 /* @internal */
15464 export function CResult_GossipTimestampFilterDecodeErrorZ_clone(orig: number): number {
15465         if(!isWasmInitialized) {
15466                 throw new Error("initializeWasm() must be awaited first!");
15467         }
15468         const nativeResponseValue = wasm.TS_CResult_GossipTimestampFilterDecodeErrorZ_clone(orig);
15469         return nativeResponseValue;
15470 }
15471         // struct LDKCResult_InvoiceSignOrCreationErrorZ CResult_InvoiceSignOrCreationErrorZ_ok(struct LDKInvoice o);
15472 /* @internal */
15473 export function CResult_InvoiceSignOrCreationErrorZ_ok(o: number): number {
15474         if(!isWasmInitialized) {
15475                 throw new Error("initializeWasm() must be awaited first!");
15476         }
15477         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_ok(o);
15478         return nativeResponseValue;
15479 }
15480         // struct LDKCResult_InvoiceSignOrCreationErrorZ CResult_InvoiceSignOrCreationErrorZ_err(struct LDKSignOrCreationError e);
15481 /* @internal */
15482 export function CResult_InvoiceSignOrCreationErrorZ_err(e: number): number {
15483         if(!isWasmInitialized) {
15484                 throw new Error("initializeWasm() must be awaited first!");
15485         }
15486         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_err(e);
15487         return nativeResponseValue;
15488 }
15489         // bool CResult_InvoiceSignOrCreationErrorZ_is_ok(const struct LDKCResult_InvoiceSignOrCreationErrorZ *NONNULL_PTR o);
15490 /* @internal */
15491 export function CResult_InvoiceSignOrCreationErrorZ_is_ok(o: number): boolean {
15492         if(!isWasmInitialized) {
15493                 throw new Error("initializeWasm() must be awaited first!");
15494         }
15495         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_is_ok(o);
15496         return nativeResponseValue;
15497 }
15498         // void CResult_InvoiceSignOrCreationErrorZ_free(struct LDKCResult_InvoiceSignOrCreationErrorZ _res);
15499 /* @internal */
15500 export function CResult_InvoiceSignOrCreationErrorZ_free(_res: number): void {
15501         if(!isWasmInitialized) {
15502                 throw new Error("initializeWasm() must be awaited first!");
15503         }
15504         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_free(_res);
15505         // debug statements here
15506 }
15507         // uintptr_t CResult_InvoiceSignOrCreationErrorZ_clone_ptr(LDKCResult_InvoiceSignOrCreationErrorZ *NONNULL_PTR arg);
15508 /* @internal */
15509 export function CResult_InvoiceSignOrCreationErrorZ_clone_ptr(arg: number): number {
15510         if(!isWasmInitialized) {
15511                 throw new Error("initializeWasm() must be awaited first!");
15512         }
15513         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_clone_ptr(arg);
15514         return nativeResponseValue;
15515 }
15516         // struct LDKCResult_InvoiceSignOrCreationErrorZ CResult_InvoiceSignOrCreationErrorZ_clone(const struct LDKCResult_InvoiceSignOrCreationErrorZ *NONNULL_PTR orig);
15517 /* @internal */
15518 export function CResult_InvoiceSignOrCreationErrorZ_clone(orig: number): number {
15519         if(!isWasmInitialized) {
15520                 throw new Error("initializeWasm() must be awaited first!");
15521         }
15522         const nativeResponseValue = wasm.TS_CResult_InvoiceSignOrCreationErrorZ_clone(orig);
15523         return nativeResponseValue;
15524 }
15525         // struct LDKCOption_FilterZ COption_FilterZ_some(struct LDKFilter o);
15526 /* @internal */
15527 export function COption_FilterZ_some(o: number): number {
15528         if(!isWasmInitialized) {
15529                 throw new Error("initializeWasm() must be awaited first!");
15530         }
15531         const nativeResponseValue = wasm.TS_COption_FilterZ_some(o);
15532         return nativeResponseValue;
15533 }
15534         // struct LDKCOption_FilterZ COption_FilterZ_none(void);
15535 /* @internal */
15536 export function COption_FilterZ_none(): number {
15537         if(!isWasmInitialized) {
15538                 throw new Error("initializeWasm() must be awaited first!");
15539         }
15540         const nativeResponseValue = wasm.TS_COption_FilterZ_none();
15541         return nativeResponseValue;
15542 }
15543         // void COption_FilterZ_free(struct LDKCOption_FilterZ _res);
15544 /* @internal */
15545 export function COption_FilterZ_free(_res: number): void {
15546         if(!isWasmInitialized) {
15547                 throw new Error("initializeWasm() must be awaited first!");
15548         }
15549         const nativeResponseValue = wasm.TS_COption_FilterZ_free(_res);
15550         // debug statements here
15551 }
15552         // struct LDKCResult_LockedChannelMonitorNoneZ CResult_LockedChannelMonitorNoneZ_ok(struct LDKLockedChannelMonitor o);
15553 /* @internal */
15554 export function CResult_LockedChannelMonitorNoneZ_ok(o: number): number {
15555         if(!isWasmInitialized) {
15556                 throw new Error("initializeWasm() must be awaited first!");
15557         }
15558         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_ok(o);
15559         return nativeResponseValue;
15560 }
15561         // struct LDKCResult_LockedChannelMonitorNoneZ CResult_LockedChannelMonitorNoneZ_err(void);
15562 /* @internal */
15563 export function CResult_LockedChannelMonitorNoneZ_err(): number {
15564         if(!isWasmInitialized) {
15565                 throw new Error("initializeWasm() must be awaited first!");
15566         }
15567         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_err();
15568         return nativeResponseValue;
15569 }
15570         // bool CResult_LockedChannelMonitorNoneZ_is_ok(const struct LDKCResult_LockedChannelMonitorNoneZ *NONNULL_PTR o);
15571 /* @internal */
15572 export function CResult_LockedChannelMonitorNoneZ_is_ok(o: number): boolean {
15573         if(!isWasmInitialized) {
15574                 throw new Error("initializeWasm() must be awaited first!");
15575         }
15576         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_is_ok(o);
15577         return nativeResponseValue;
15578 }
15579         // void CResult_LockedChannelMonitorNoneZ_free(struct LDKCResult_LockedChannelMonitorNoneZ _res);
15580 /* @internal */
15581 export function CResult_LockedChannelMonitorNoneZ_free(_res: number): void {
15582         if(!isWasmInitialized) {
15583                 throw new Error("initializeWasm() must be awaited first!");
15584         }
15585         const nativeResponseValue = wasm.TS_CResult_LockedChannelMonitorNoneZ_free(_res);
15586         // debug statements here
15587 }
15588         // void CVec_OutPointZ_free(struct LDKCVec_OutPointZ _res);
15589 /* @internal */
15590 export function CVec_OutPointZ_free(_res: number): void {
15591         if(!isWasmInitialized) {
15592                 throw new Error("initializeWasm() must be awaited first!");
15593         }
15594         const nativeResponseValue = wasm.TS_CVec_OutPointZ_free(_res);
15595         // debug statements here
15596 }
15597         // void PaymentPurpose_free(struct LDKPaymentPurpose this_ptr);
15598 /* @internal */
15599 export function PaymentPurpose_free(this_ptr: number): void {
15600         if(!isWasmInitialized) {
15601                 throw new Error("initializeWasm() must be awaited first!");
15602         }
15603         const nativeResponseValue = wasm.TS_PaymentPurpose_free(this_ptr);
15604         // debug statements here
15605 }
15606         // uintptr_t PaymentPurpose_clone_ptr(LDKPaymentPurpose *NONNULL_PTR arg);
15607 /* @internal */
15608 export function PaymentPurpose_clone_ptr(arg: number): number {
15609         if(!isWasmInitialized) {
15610                 throw new Error("initializeWasm() must be awaited first!");
15611         }
15612         const nativeResponseValue = wasm.TS_PaymentPurpose_clone_ptr(arg);
15613         return nativeResponseValue;
15614 }
15615         // struct LDKPaymentPurpose PaymentPurpose_clone(const struct LDKPaymentPurpose *NONNULL_PTR orig);
15616 /* @internal */
15617 export function PaymentPurpose_clone(orig: number): number {
15618         if(!isWasmInitialized) {
15619                 throw new Error("initializeWasm() must be awaited first!");
15620         }
15621         const nativeResponseValue = wasm.TS_PaymentPurpose_clone(orig);
15622         return nativeResponseValue;
15623 }
15624         // struct LDKPaymentPurpose PaymentPurpose_invoice_payment(struct LDKThirtyTwoBytes payment_preimage, struct LDKThirtyTwoBytes payment_secret);
15625 /* @internal */
15626 export function PaymentPurpose_invoice_payment(payment_preimage: number, payment_secret: number): number {
15627         if(!isWasmInitialized) {
15628                 throw new Error("initializeWasm() must be awaited first!");
15629         }
15630         const nativeResponseValue = wasm.TS_PaymentPurpose_invoice_payment(payment_preimage, payment_secret);
15631         return nativeResponseValue;
15632 }
15633         // struct LDKPaymentPurpose PaymentPurpose_spontaneous_payment(struct LDKThirtyTwoBytes a);
15634 /* @internal */
15635 export function PaymentPurpose_spontaneous_payment(a: number): number {
15636         if(!isWasmInitialized) {
15637                 throw new Error("initializeWasm() must be awaited first!");
15638         }
15639         const nativeResponseValue = wasm.TS_PaymentPurpose_spontaneous_payment(a);
15640         return nativeResponseValue;
15641 }
15642         // struct LDKCVec_u8Z PaymentPurpose_write(const struct LDKPaymentPurpose *NONNULL_PTR obj);
15643 /* @internal */
15644 export function PaymentPurpose_write(obj: number): number {
15645         if(!isWasmInitialized) {
15646                 throw new Error("initializeWasm() must be awaited first!");
15647         }
15648         const nativeResponseValue = wasm.TS_PaymentPurpose_write(obj);
15649         return nativeResponseValue;
15650 }
15651         // struct LDKCResult_PaymentPurposeDecodeErrorZ PaymentPurpose_read(struct LDKu8slice ser);
15652 /* @internal */
15653 export function PaymentPurpose_read(ser: number): number {
15654         if(!isWasmInitialized) {
15655                 throw new Error("initializeWasm() must be awaited first!");
15656         }
15657         const nativeResponseValue = wasm.TS_PaymentPurpose_read(ser);
15658         return nativeResponseValue;
15659 }
15660         // void ClosureReason_free(struct LDKClosureReason this_ptr);
15661 /* @internal */
15662 export function ClosureReason_free(this_ptr: number): void {
15663         if(!isWasmInitialized) {
15664                 throw new Error("initializeWasm() must be awaited first!");
15665         }
15666         const nativeResponseValue = wasm.TS_ClosureReason_free(this_ptr);
15667         // debug statements here
15668 }
15669         // uintptr_t ClosureReason_clone_ptr(LDKClosureReason *NONNULL_PTR arg);
15670 /* @internal */
15671 export function ClosureReason_clone_ptr(arg: number): number {
15672         if(!isWasmInitialized) {
15673                 throw new Error("initializeWasm() must be awaited first!");
15674         }
15675         const nativeResponseValue = wasm.TS_ClosureReason_clone_ptr(arg);
15676         return nativeResponseValue;
15677 }
15678         // struct LDKClosureReason ClosureReason_clone(const struct LDKClosureReason *NONNULL_PTR orig);
15679 /* @internal */
15680 export function ClosureReason_clone(orig: number): number {
15681         if(!isWasmInitialized) {
15682                 throw new Error("initializeWasm() must be awaited first!");
15683         }
15684         const nativeResponseValue = wasm.TS_ClosureReason_clone(orig);
15685         return nativeResponseValue;
15686 }
15687         // struct LDKClosureReason ClosureReason_counterparty_force_closed(struct LDKStr peer_msg);
15688 /* @internal */
15689 export function ClosureReason_counterparty_force_closed(peer_msg: number): number {
15690         if(!isWasmInitialized) {
15691                 throw new Error("initializeWasm() must be awaited first!");
15692         }
15693         const nativeResponseValue = wasm.TS_ClosureReason_counterparty_force_closed(peer_msg);
15694         return nativeResponseValue;
15695 }
15696         // struct LDKClosureReason ClosureReason_holder_force_closed(void);
15697 /* @internal */
15698 export function ClosureReason_holder_force_closed(): number {
15699         if(!isWasmInitialized) {
15700                 throw new Error("initializeWasm() must be awaited first!");
15701         }
15702         const nativeResponseValue = wasm.TS_ClosureReason_holder_force_closed();
15703         return nativeResponseValue;
15704 }
15705         // struct LDKClosureReason ClosureReason_cooperative_closure(void);
15706 /* @internal */
15707 export function ClosureReason_cooperative_closure(): number {
15708         if(!isWasmInitialized) {
15709                 throw new Error("initializeWasm() must be awaited first!");
15710         }
15711         const nativeResponseValue = wasm.TS_ClosureReason_cooperative_closure();
15712         return nativeResponseValue;
15713 }
15714         // struct LDKClosureReason ClosureReason_commitment_tx_confirmed(void);
15715 /* @internal */
15716 export function ClosureReason_commitment_tx_confirmed(): number {
15717         if(!isWasmInitialized) {
15718                 throw new Error("initializeWasm() must be awaited first!");
15719         }
15720         const nativeResponseValue = wasm.TS_ClosureReason_commitment_tx_confirmed();
15721         return nativeResponseValue;
15722 }
15723         // struct LDKClosureReason ClosureReason_funding_timed_out(void);
15724 /* @internal */
15725 export function ClosureReason_funding_timed_out(): number {
15726         if(!isWasmInitialized) {
15727                 throw new Error("initializeWasm() must be awaited first!");
15728         }
15729         const nativeResponseValue = wasm.TS_ClosureReason_funding_timed_out();
15730         return nativeResponseValue;
15731 }
15732         // struct LDKClosureReason ClosureReason_processing_error(struct LDKStr err);
15733 /* @internal */
15734 export function ClosureReason_processing_error(err: number): number {
15735         if(!isWasmInitialized) {
15736                 throw new Error("initializeWasm() must be awaited first!");
15737         }
15738         const nativeResponseValue = wasm.TS_ClosureReason_processing_error(err);
15739         return nativeResponseValue;
15740 }
15741         // struct LDKClosureReason ClosureReason_disconnected_peer(void);
15742 /* @internal */
15743 export function ClosureReason_disconnected_peer(): number {
15744         if(!isWasmInitialized) {
15745                 throw new Error("initializeWasm() must be awaited first!");
15746         }
15747         const nativeResponseValue = wasm.TS_ClosureReason_disconnected_peer();
15748         return nativeResponseValue;
15749 }
15750         // struct LDKClosureReason ClosureReason_outdated_channel_manager(void);
15751 /* @internal */
15752 export function ClosureReason_outdated_channel_manager(): number {
15753         if(!isWasmInitialized) {
15754                 throw new Error("initializeWasm() must be awaited first!");
15755         }
15756         const nativeResponseValue = wasm.TS_ClosureReason_outdated_channel_manager();
15757         return nativeResponseValue;
15758 }
15759         // struct LDKCVec_u8Z ClosureReason_write(const struct LDKClosureReason *NONNULL_PTR obj);
15760 /* @internal */
15761 export function ClosureReason_write(obj: number): number {
15762         if(!isWasmInitialized) {
15763                 throw new Error("initializeWasm() must be awaited first!");
15764         }
15765         const nativeResponseValue = wasm.TS_ClosureReason_write(obj);
15766         return nativeResponseValue;
15767 }
15768         // struct LDKCResult_COption_ClosureReasonZDecodeErrorZ ClosureReason_read(struct LDKu8slice ser);
15769 /* @internal */
15770 export function ClosureReason_read(ser: number): number {
15771         if(!isWasmInitialized) {
15772                 throw new Error("initializeWasm() must be awaited first!");
15773         }
15774         const nativeResponseValue = wasm.TS_ClosureReason_read(ser);
15775         return nativeResponseValue;
15776 }
15777         // void HTLCDestination_free(struct LDKHTLCDestination this_ptr);
15778 /* @internal */
15779 export function HTLCDestination_free(this_ptr: number): void {
15780         if(!isWasmInitialized) {
15781                 throw new Error("initializeWasm() must be awaited first!");
15782         }
15783         const nativeResponseValue = wasm.TS_HTLCDestination_free(this_ptr);
15784         // debug statements here
15785 }
15786         // uintptr_t HTLCDestination_clone_ptr(LDKHTLCDestination *NONNULL_PTR arg);
15787 /* @internal */
15788 export function HTLCDestination_clone_ptr(arg: number): number {
15789         if(!isWasmInitialized) {
15790                 throw new Error("initializeWasm() must be awaited first!");
15791         }
15792         const nativeResponseValue = wasm.TS_HTLCDestination_clone_ptr(arg);
15793         return nativeResponseValue;
15794 }
15795         // struct LDKHTLCDestination HTLCDestination_clone(const struct LDKHTLCDestination *NONNULL_PTR orig);
15796 /* @internal */
15797 export function HTLCDestination_clone(orig: number): number {
15798         if(!isWasmInitialized) {
15799                 throw new Error("initializeWasm() must be awaited first!");
15800         }
15801         const nativeResponseValue = wasm.TS_HTLCDestination_clone(orig);
15802         return nativeResponseValue;
15803 }
15804         // struct LDKHTLCDestination HTLCDestination_next_hop_channel(struct LDKPublicKey node_id, struct LDKThirtyTwoBytes channel_id);
15805 /* @internal */
15806 export function HTLCDestination_next_hop_channel(node_id: number, channel_id: number): number {
15807         if(!isWasmInitialized) {
15808                 throw new Error("initializeWasm() must be awaited first!");
15809         }
15810         const nativeResponseValue = wasm.TS_HTLCDestination_next_hop_channel(node_id, channel_id);
15811         return nativeResponseValue;
15812 }
15813         // struct LDKHTLCDestination HTLCDestination_unknown_next_hop(uint64_t requested_forward_scid);
15814 /* @internal */
15815 export function HTLCDestination_unknown_next_hop(requested_forward_scid: bigint): number {
15816         if(!isWasmInitialized) {
15817                 throw new Error("initializeWasm() must be awaited first!");
15818         }
15819         const nativeResponseValue = wasm.TS_HTLCDestination_unknown_next_hop(requested_forward_scid);
15820         return nativeResponseValue;
15821 }
15822         // struct LDKHTLCDestination HTLCDestination_failed_payment(struct LDKThirtyTwoBytes payment_hash);
15823 /* @internal */
15824 export function HTLCDestination_failed_payment(payment_hash: number): number {
15825         if(!isWasmInitialized) {
15826                 throw new Error("initializeWasm() must be awaited first!");
15827         }
15828         const nativeResponseValue = wasm.TS_HTLCDestination_failed_payment(payment_hash);
15829         return nativeResponseValue;
15830 }
15831         // struct LDKCVec_u8Z HTLCDestination_write(const struct LDKHTLCDestination *NONNULL_PTR obj);
15832 /* @internal */
15833 export function HTLCDestination_write(obj: number): number {
15834         if(!isWasmInitialized) {
15835                 throw new Error("initializeWasm() must be awaited first!");
15836         }
15837         const nativeResponseValue = wasm.TS_HTLCDestination_write(obj);
15838         return nativeResponseValue;
15839 }
15840         // struct LDKCResult_COption_HTLCDestinationZDecodeErrorZ HTLCDestination_read(struct LDKu8slice ser);
15841 /* @internal */
15842 export function HTLCDestination_read(ser: number): number {
15843         if(!isWasmInitialized) {
15844                 throw new Error("initializeWasm() must be awaited first!");
15845         }
15846         const nativeResponseValue = wasm.TS_HTLCDestination_read(ser);
15847         return nativeResponseValue;
15848 }
15849         // void Event_free(struct LDKEvent this_ptr);
15850 /* @internal */
15851 export function Event_free(this_ptr: number): void {
15852         if(!isWasmInitialized) {
15853                 throw new Error("initializeWasm() must be awaited first!");
15854         }
15855         const nativeResponseValue = wasm.TS_Event_free(this_ptr);
15856         // debug statements here
15857 }
15858         // uintptr_t Event_clone_ptr(LDKEvent *NONNULL_PTR arg);
15859 /* @internal */
15860 export function Event_clone_ptr(arg: number): number {
15861         if(!isWasmInitialized) {
15862                 throw new Error("initializeWasm() must be awaited first!");
15863         }
15864         const nativeResponseValue = wasm.TS_Event_clone_ptr(arg);
15865         return nativeResponseValue;
15866 }
15867         // struct LDKEvent Event_clone(const struct LDKEvent *NONNULL_PTR orig);
15868 /* @internal */
15869 export function Event_clone(orig: number): number {
15870         if(!isWasmInitialized) {
15871                 throw new Error("initializeWasm() must be awaited first!");
15872         }
15873         const nativeResponseValue = wasm.TS_Event_clone(orig);
15874         return nativeResponseValue;
15875 }
15876         // struct LDKEvent Event_funding_generation_ready(struct LDKThirtyTwoBytes temporary_channel_id, struct LDKPublicKey counterparty_node_id, uint64_t channel_value_satoshis, struct LDKCVec_u8Z output_script, uint64_t user_channel_id);
15877 /* @internal */
15878 export function Event_funding_generation_ready(temporary_channel_id: number, counterparty_node_id: number, channel_value_satoshis: bigint, output_script: number, user_channel_id: bigint): number {
15879         if(!isWasmInitialized) {
15880                 throw new Error("initializeWasm() must be awaited first!");
15881         }
15882         const nativeResponseValue = wasm.TS_Event_funding_generation_ready(temporary_channel_id, counterparty_node_id, channel_value_satoshis, output_script, user_channel_id);
15883         return nativeResponseValue;
15884 }
15885         // struct LDKEvent Event_payment_received(struct LDKThirtyTwoBytes payment_hash, uint64_t amount_msat, struct LDKPaymentPurpose purpose);
15886 /* @internal */
15887 export function Event_payment_received(payment_hash: number, amount_msat: bigint, purpose: number): number {
15888         if(!isWasmInitialized) {
15889                 throw new Error("initializeWasm() must be awaited first!");
15890         }
15891         const nativeResponseValue = wasm.TS_Event_payment_received(payment_hash, amount_msat, purpose);
15892         return nativeResponseValue;
15893 }
15894         // struct LDKEvent Event_payment_claimed(struct LDKThirtyTwoBytes payment_hash, uint64_t amount_msat, struct LDKPaymentPurpose purpose);
15895 /* @internal */
15896 export function Event_payment_claimed(payment_hash: number, amount_msat: bigint, purpose: number): number {
15897         if(!isWasmInitialized) {
15898                 throw new Error("initializeWasm() must be awaited first!");
15899         }
15900         const nativeResponseValue = wasm.TS_Event_payment_claimed(payment_hash, amount_msat, purpose);
15901         return nativeResponseValue;
15902 }
15903         // struct LDKEvent Event_payment_sent(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_preimage, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u64Z fee_paid_msat);
15904 /* @internal */
15905 export function Event_payment_sent(payment_id: number, payment_preimage: number, payment_hash: number, fee_paid_msat: number): number {
15906         if(!isWasmInitialized) {
15907                 throw new Error("initializeWasm() must be awaited first!");
15908         }
15909         const nativeResponseValue = wasm.TS_Event_payment_sent(payment_id, payment_preimage, payment_hash, fee_paid_msat);
15910         return nativeResponseValue;
15911 }
15912         // struct LDKEvent Event_payment_failed(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash);
15913 /* @internal */
15914 export function Event_payment_failed(payment_id: number, payment_hash: number): number {
15915         if(!isWasmInitialized) {
15916                 throw new Error("initializeWasm() must be awaited first!");
15917         }
15918         const nativeResponseValue = wasm.TS_Event_payment_failed(payment_id, payment_hash);
15919         return nativeResponseValue;
15920 }
15921         // struct LDKEvent Event_payment_path_successful(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKCVec_RouteHopZ path);
15922 /* @internal */
15923 export function Event_payment_path_successful(payment_id: number, payment_hash: number, path: number): number {
15924         if(!isWasmInitialized) {
15925                 throw new Error("initializeWasm() must be awaited first!");
15926         }
15927         const nativeResponseValue = wasm.TS_Event_payment_path_successful(payment_id, payment_hash, path);
15928         return nativeResponseValue;
15929 }
15930         // struct LDKEvent Event_payment_path_failed(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, bool rejected_by_dest, struct LDKCOption_NetworkUpdateZ network_update, bool all_paths_failed, struct LDKCVec_RouteHopZ path, struct LDKCOption_u64Z short_channel_id, struct LDKRouteParameters retry);
15931 /* @internal */
15932 export function Event_payment_path_failed(payment_id: number, payment_hash: number, rejected_by_dest: boolean, network_update: number, all_paths_failed: boolean, path: number, short_channel_id: number, retry: number): number {
15933         if(!isWasmInitialized) {
15934                 throw new Error("initializeWasm() must be awaited first!");
15935         }
15936         const nativeResponseValue = wasm.TS_Event_payment_path_failed(payment_id, payment_hash, rejected_by_dest, network_update, all_paths_failed, path, short_channel_id, retry);
15937         return nativeResponseValue;
15938 }
15939         // struct LDKEvent Event_probe_successful(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKCVec_RouteHopZ path);
15940 /* @internal */
15941 export function Event_probe_successful(payment_id: number, payment_hash: number, path: number): number {
15942         if(!isWasmInitialized) {
15943                 throw new Error("initializeWasm() must be awaited first!");
15944         }
15945         const nativeResponseValue = wasm.TS_Event_probe_successful(payment_id, payment_hash, path);
15946         return nativeResponseValue;
15947 }
15948         // struct LDKEvent Event_probe_failed(struct LDKThirtyTwoBytes payment_id, struct LDKThirtyTwoBytes payment_hash, struct LDKCVec_RouteHopZ path, struct LDKCOption_u64Z short_channel_id);
15949 /* @internal */
15950 export function Event_probe_failed(payment_id: number, payment_hash: number, path: number, short_channel_id: number): number {
15951         if(!isWasmInitialized) {
15952                 throw new Error("initializeWasm() must be awaited first!");
15953         }
15954         const nativeResponseValue = wasm.TS_Event_probe_failed(payment_id, payment_hash, path, short_channel_id);
15955         return nativeResponseValue;
15956 }
15957         // struct LDKEvent Event_pending_htlcs_forwardable(uint64_t time_forwardable);
15958 /* @internal */
15959 export function Event_pending_htlcs_forwardable(time_forwardable: bigint): number {
15960         if(!isWasmInitialized) {
15961                 throw new Error("initializeWasm() must be awaited first!");
15962         }
15963         const nativeResponseValue = wasm.TS_Event_pending_htlcs_forwardable(time_forwardable);
15964         return nativeResponseValue;
15965 }
15966         // struct LDKEvent Event_spendable_outputs(struct LDKCVec_SpendableOutputDescriptorZ outputs);
15967 /* @internal */
15968 export function Event_spendable_outputs(outputs: number): number {
15969         if(!isWasmInitialized) {
15970                 throw new Error("initializeWasm() must be awaited first!");
15971         }
15972         const nativeResponseValue = wasm.TS_Event_spendable_outputs(outputs);
15973         return nativeResponseValue;
15974 }
15975         // struct LDKEvent Event_payment_forwarded(struct LDKThirtyTwoBytes prev_channel_id, struct LDKThirtyTwoBytes next_channel_id, struct LDKCOption_u64Z fee_earned_msat, bool claim_from_onchain_tx);
15976 /* @internal */
15977 export function Event_payment_forwarded(prev_channel_id: number, next_channel_id: number, fee_earned_msat: number, claim_from_onchain_tx: boolean): number {
15978         if(!isWasmInitialized) {
15979                 throw new Error("initializeWasm() must be awaited first!");
15980         }
15981         const nativeResponseValue = wasm.TS_Event_payment_forwarded(prev_channel_id, next_channel_id, fee_earned_msat, claim_from_onchain_tx);
15982         return nativeResponseValue;
15983 }
15984         // struct LDKEvent Event_channel_closed(struct LDKThirtyTwoBytes channel_id, uint64_t user_channel_id, struct LDKClosureReason reason);
15985 /* @internal */
15986 export function Event_channel_closed(channel_id: number, user_channel_id: bigint, reason: number): number {
15987         if(!isWasmInitialized) {
15988                 throw new Error("initializeWasm() must be awaited first!");
15989         }
15990         const nativeResponseValue = wasm.TS_Event_channel_closed(channel_id, user_channel_id, reason);
15991         return nativeResponseValue;
15992 }
15993         // struct LDKEvent Event_discard_funding(struct LDKThirtyTwoBytes channel_id, struct LDKTransaction transaction);
15994 /* @internal */
15995 export function Event_discard_funding(channel_id: number, transaction: number): number {
15996         if(!isWasmInitialized) {
15997                 throw new Error("initializeWasm() must be awaited first!");
15998         }
15999         const nativeResponseValue = wasm.TS_Event_discard_funding(channel_id, transaction);
16000         return nativeResponseValue;
16001 }
16002         // struct LDKEvent Event_open_channel_request(struct LDKThirtyTwoBytes temporary_channel_id, struct LDKPublicKey counterparty_node_id, uint64_t funding_satoshis, uint64_t push_msat, struct LDKChannelTypeFeatures channel_type);
16003 /* @internal */
16004 export function Event_open_channel_request(temporary_channel_id: number, counterparty_node_id: number, funding_satoshis: bigint, push_msat: bigint, channel_type: number): number {
16005         if(!isWasmInitialized) {
16006                 throw new Error("initializeWasm() must be awaited first!");
16007         }
16008         const nativeResponseValue = wasm.TS_Event_open_channel_request(temporary_channel_id, counterparty_node_id, funding_satoshis, push_msat, channel_type);
16009         return nativeResponseValue;
16010 }
16011         // struct LDKEvent Event_htlchandling_failed(struct LDKThirtyTwoBytes prev_channel_id, struct LDKHTLCDestination failed_next_destination);
16012 /* @internal */
16013 export function Event_htlchandling_failed(prev_channel_id: number, failed_next_destination: number): number {
16014         if(!isWasmInitialized) {
16015                 throw new Error("initializeWasm() must be awaited first!");
16016         }
16017         const nativeResponseValue = wasm.TS_Event_htlchandling_failed(prev_channel_id, failed_next_destination);
16018         return nativeResponseValue;
16019 }
16020         // struct LDKCVec_u8Z Event_write(const struct LDKEvent *NONNULL_PTR obj);
16021 /* @internal */
16022 export function Event_write(obj: number): number {
16023         if(!isWasmInitialized) {
16024                 throw new Error("initializeWasm() must be awaited first!");
16025         }
16026         const nativeResponseValue = wasm.TS_Event_write(obj);
16027         return nativeResponseValue;
16028 }
16029         // struct LDKCResult_COption_EventZDecodeErrorZ Event_read(struct LDKu8slice ser);
16030 /* @internal */
16031 export function Event_read(ser: number): number {
16032         if(!isWasmInitialized) {
16033                 throw new Error("initializeWasm() must be awaited first!");
16034         }
16035         const nativeResponseValue = wasm.TS_Event_read(ser);
16036         return nativeResponseValue;
16037 }
16038         // void MessageSendEvent_free(struct LDKMessageSendEvent this_ptr);
16039 /* @internal */
16040 export function MessageSendEvent_free(this_ptr: number): void {
16041         if(!isWasmInitialized) {
16042                 throw new Error("initializeWasm() must be awaited first!");
16043         }
16044         const nativeResponseValue = wasm.TS_MessageSendEvent_free(this_ptr);
16045         // debug statements here
16046 }
16047         // uintptr_t MessageSendEvent_clone_ptr(LDKMessageSendEvent *NONNULL_PTR arg);
16048 /* @internal */
16049 export function MessageSendEvent_clone_ptr(arg: number): number {
16050         if(!isWasmInitialized) {
16051                 throw new Error("initializeWasm() must be awaited first!");
16052         }
16053         const nativeResponseValue = wasm.TS_MessageSendEvent_clone_ptr(arg);
16054         return nativeResponseValue;
16055 }
16056         // struct LDKMessageSendEvent MessageSendEvent_clone(const struct LDKMessageSendEvent *NONNULL_PTR orig);
16057 /* @internal */
16058 export function MessageSendEvent_clone(orig: number): number {
16059         if(!isWasmInitialized) {
16060                 throw new Error("initializeWasm() must be awaited first!");
16061         }
16062         const nativeResponseValue = wasm.TS_MessageSendEvent_clone(orig);
16063         return nativeResponseValue;
16064 }
16065         // struct LDKMessageSendEvent MessageSendEvent_send_accept_channel(struct LDKPublicKey node_id, struct LDKAcceptChannel msg);
16066 /* @internal */
16067 export function MessageSendEvent_send_accept_channel(node_id: number, msg: number): number {
16068         if(!isWasmInitialized) {
16069                 throw new Error("initializeWasm() must be awaited first!");
16070         }
16071         const nativeResponseValue = wasm.TS_MessageSendEvent_send_accept_channel(node_id, msg);
16072         return nativeResponseValue;
16073 }
16074         // struct LDKMessageSendEvent MessageSendEvent_send_open_channel(struct LDKPublicKey node_id, struct LDKOpenChannel msg);
16075 /* @internal */
16076 export function MessageSendEvent_send_open_channel(node_id: number, msg: number): number {
16077         if(!isWasmInitialized) {
16078                 throw new Error("initializeWasm() must be awaited first!");
16079         }
16080         const nativeResponseValue = wasm.TS_MessageSendEvent_send_open_channel(node_id, msg);
16081         return nativeResponseValue;
16082 }
16083         // struct LDKMessageSendEvent MessageSendEvent_send_funding_created(struct LDKPublicKey node_id, struct LDKFundingCreated msg);
16084 /* @internal */
16085 export function MessageSendEvent_send_funding_created(node_id: number, msg: number): number {
16086         if(!isWasmInitialized) {
16087                 throw new Error("initializeWasm() must be awaited first!");
16088         }
16089         const nativeResponseValue = wasm.TS_MessageSendEvent_send_funding_created(node_id, msg);
16090         return nativeResponseValue;
16091 }
16092         // struct LDKMessageSendEvent MessageSendEvent_send_funding_signed(struct LDKPublicKey node_id, struct LDKFundingSigned msg);
16093 /* @internal */
16094 export function MessageSendEvent_send_funding_signed(node_id: number, msg: number): number {
16095         if(!isWasmInitialized) {
16096                 throw new Error("initializeWasm() must be awaited first!");
16097         }
16098         const nativeResponseValue = wasm.TS_MessageSendEvent_send_funding_signed(node_id, msg);
16099         return nativeResponseValue;
16100 }
16101         // struct LDKMessageSendEvent MessageSendEvent_send_channel_ready(struct LDKPublicKey node_id, struct LDKChannelReady msg);
16102 /* @internal */
16103 export function MessageSendEvent_send_channel_ready(node_id: number, msg: number): number {
16104         if(!isWasmInitialized) {
16105                 throw new Error("initializeWasm() must be awaited first!");
16106         }
16107         const nativeResponseValue = wasm.TS_MessageSendEvent_send_channel_ready(node_id, msg);
16108         return nativeResponseValue;
16109 }
16110         // struct LDKMessageSendEvent MessageSendEvent_send_announcement_signatures(struct LDKPublicKey node_id, struct LDKAnnouncementSignatures msg);
16111 /* @internal */
16112 export function MessageSendEvent_send_announcement_signatures(node_id: number, msg: number): number {
16113         if(!isWasmInitialized) {
16114                 throw new Error("initializeWasm() must be awaited first!");
16115         }
16116         const nativeResponseValue = wasm.TS_MessageSendEvent_send_announcement_signatures(node_id, msg);
16117         return nativeResponseValue;
16118 }
16119         // struct LDKMessageSendEvent MessageSendEvent_update_htlcs(struct LDKPublicKey node_id, struct LDKCommitmentUpdate updates);
16120 /* @internal */
16121 export function MessageSendEvent_update_htlcs(node_id: number, updates: number): number {
16122         if(!isWasmInitialized) {
16123                 throw new Error("initializeWasm() must be awaited first!");
16124         }
16125         const nativeResponseValue = wasm.TS_MessageSendEvent_update_htlcs(node_id, updates);
16126         return nativeResponseValue;
16127 }
16128         // struct LDKMessageSendEvent MessageSendEvent_send_revoke_and_ack(struct LDKPublicKey node_id, struct LDKRevokeAndACK msg);
16129 /* @internal */
16130 export function MessageSendEvent_send_revoke_and_ack(node_id: number, msg: number): number {
16131         if(!isWasmInitialized) {
16132                 throw new Error("initializeWasm() must be awaited first!");
16133         }
16134         const nativeResponseValue = wasm.TS_MessageSendEvent_send_revoke_and_ack(node_id, msg);
16135         return nativeResponseValue;
16136 }
16137         // struct LDKMessageSendEvent MessageSendEvent_send_closing_signed(struct LDKPublicKey node_id, struct LDKClosingSigned msg);
16138 /* @internal */
16139 export function MessageSendEvent_send_closing_signed(node_id: number, msg: number): number {
16140         if(!isWasmInitialized) {
16141                 throw new Error("initializeWasm() must be awaited first!");
16142         }
16143         const nativeResponseValue = wasm.TS_MessageSendEvent_send_closing_signed(node_id, msg);
16144         return nativeResponseValue;
16145 }
16146         // struct LDKMessageSendEvent MessageSendEvent_send_shutdown(struct LDKPublicKey node_id, struct LDKShutdown msg);
16147 /* @internal */
16148 export function MessageSendEvent_send_shutdown(node_id: number, msg: number): number {
16149         if(!isWasmInitialized) {
16150                 throw new Error("initializeWasm() must be awaited first!");
16151         }
16152         const nativeResponseValue = wasm.TS_MessageSendEvent_send_shutdown(node_id, msg);
16153         return nativeResponseValue;
16154 }
16155         // struct LDKMessageSendEvent MessageSendEvent_send_channel_reestablish(struct LDKPublicKey node_id, struct LDKChannelReestablish msg);
16156 /* @internal */
16157 export function MessageSendEvent_send_channel_reestablish(node_id: number, msg: number): number {
16158         if(!isWasmInitialized) {
16159                 throw new Error("initializeWasm() must be awaited first!");
16160         }
16161         const nativeResponseValue = wasm.TS_MessageSendEvent_send_channel_reestablish(node_id, msg);
16162         return nativeResponseValue;
16163 }
16164         // struct LDKMessageSendEvent MessageSendEvent_broadcast_channel_announcement(struct LDKChannelAnnouncement msg, struct LDKChannelUpdate update_msg);
16165 /* @internal */
16166 export function MessageSendEvent_broadcast_channel_announcement(msg: number, update_msg: number): number {
16167         if(!isWasmInitialized) {
16168                 throw new Error("initializeWasm() must be awaited first!");
16169         }
16170         const nativeResponseValue = wasm.TS_MessageSendEvent_broadcast_channel_announcement(msg, update_msg);
16171         return nativeResponseValue;
16172 }
16173         // struct LDKMessageSendEvent MessageSendEvent_broadcast_node_announcement(struct LDKNodeAnnouncement msg);
16174 /* @internal */
16175 export function MessageSendEvent_broadcast_node_announcement(msg: number): number {
16176         if(!isWasmInitialized) {
16177                 throw new Error("initializeWasm() must be awaited first!");
16178         }
16179         const nativeResponseValue = wasm.TS_MessageSendEvent_broadcast_node_announcement(msg);
16180         return nativeResponseValue;
16181 }
16182         // struct LDKMessageSendEvent MessageSendEvent_broadcast_channel_update(struct LDKChannelUpdate msg);
16183 /* @internal */
16184 export function MessageSendEvent_broadcast_channel_update(msg: number): number {
16185         if(!isWasmInitialized) {
16186                 throw new Error("initializeWasm() must be awaited first!");
16187         }
16188         const nativeResponseValue = wasm.TS_MessageSendEvent_broadcast_channel_update(msg);
16189         return nativeResponseValue;
16190 }
16191         // struct LDKMessageSendEvent MessageSendEvent_send_channel_update(struct LDKPublicKey node_id, struct LDKChannelUpdate msg);
16192 /* @internal */
16193 export function MessageSendEvent_send_channel_update(node_id: number, msg: number): number {
16194         if(!isWasmInitialized) {
16195                 throw new Error("initializeWasm() must be awaited first!");
16196         }
16197         const nativeResponseValue = wasm.TS_MessageSendEvent_send_channel_update(node_id, msg);
16198         return nativeResponseValue;
16199 }
16200         // struct LDKMessageSendEvent MessageSendEvent_handle_error(struct LDKPublicKey node_id, struct LDKErrorAction action);
16201 /* @internal */
16202 export function MessageSendEvent_handle_error(node_id: number, action: number): number {
16203         if(!isWasmInitialized) {
16204                 throw new Error("initializeWasm() must be awaited first!");
16205         }
16206         const nativeResponseValue = wasm.TS_MessageSendEvent_handle_error(node_id, action);
16207         return nativeResponseValue;
16208 }
16209         // struct LDKMessageSendEvent MessageSendEvent_send_channel_range_query(struct LDKPublicKey node_id, struct LDKQueryChannelRange msg);
16210 /* @internal */
16211 export function MessageSendEvent_send_channel_range_query(node_id: number, msg: number): number {
16212         if(!isWasmInitialized) {
16213                 throw new Error("initializeWasm() must be awaited first!");
16214         }
16215         const nativeResponseValue = wasm.TS_MessageSendEvent_send_channel_range_query(node_id, msg);
16216         return nativeResponseValue;
16217 }
16218         // struct LDKMessageSendEvent MessageSendEvent_send_short_ids_query(struct LDKPublicKey node_id, struct LDKQueryShortChannelIds msg);
16219 /* @internal */
16220 export function MessageSendEvent_send_short_ids_query(node_id: number, msg: number): number {
16221         if(!isWasmInitialized) {
16222                 throw new Error("initializeWasm() must be awaited first!");
16223         }
16224         const nativeResponseValue = wasm.TS_MessageSendEvent_send_short_ids_query(node_id, msg);
16225         return nativeResponseValue;
16226 }
16227         // struct LDKMessageSendEvent MessageSendEvent_send_reply_channel_range(struct LDKPublicKey node_id, struct LDKReplyChannelRange msg);
16228 /* @internal */
16229 export function MessageSendEvent_send_reply_channel_range(node_id: number, msg: number): number {
16230         if(!isWasmInitialized) {
16231                 throw new Error("initializeWasm() must be awaited first!");
16232         }
16233         const nativeResponseValue = wasm.TS_MessageSendEvent_send_reply_channel_range(node_id, msg);
16234         return nativeResponseValue;
16235 }
16236         // struct LDKMessageSendEvent MessageSendEvent_send_gossip_timestamp_filter(struct LDKPublicKey node_id, struct LDKGossipTimestampFilter msg);
16237 /* @internal */
16238 export function MessageSendEvent_send_gossip_timestamp_filter(node_id: number, msg: number): number {
16239         if(!isWasmInitialized) {
16240                 throw new Error("initializeWasm() must be awaited first!");
16241         }
16242         const nativeResponseValue = wasm.TS_MessageSendEvent_send_gossip_timestamp_filter(node_id, msg);
16243         return nativeResponseValue;
16244 }
16245         // void MessageSendEventsProvider_free(struct LDKMessageSendEventsProvider this_ptr);
16246 /* @internal */
16247 export function MessageSendEventsProvider_free(this_ptr: number): void {
16248         if(!isWasmInitialized) {
16249                 throw new Error("initializeWasm() must be awaited first!");
16250         }
16251         const nativeResponseValue = wasm.TS_MessageSendEventsProvider_free(this_ptr);
16252         // debug statements here
16253 }
16254         // void EventsProvider_free(struct LDKEventsProvider this_ptr);
16255 /* @internal */
16256 export function EventsProvider_free(this_ptr: number): void {
16257         if(!isWasmInitialized) {
16258                 throw new Error("initializeWasm() must be awaited first!");
16259         }
16260         const nativeResponseValue = wasm.TS_EventsProvider_free(this_ptr);
16261         // debug statements here
16262 }
16263         // void EventHandler_free(struct LDKEventHandler this_ptr);
16264 /* @internal */
16265 export function EventHandler_free(this_ptr: number): void {
16266         if(!isWasmInitialized) {
16267                 throw new Error("initializeWasm() must be awaited first!");
16268         }
16269         const nativeResponseValue = wasm.TS_EventHandler_free(this_ptr);
16270         // debug statements here
16271 }
16272         // void APIError_free(struct LDKAPIError this_ptr);
16273 /* @internal */
16274 export function APIError_free(this_ptr: number): void {
16275         if(!isWasmInitialized) {
16276                 throw new Error("initializeWasm() must be awaited first!");
16277         }
16278         const nativeResponseValue = wasm.TS_APIError_free(this_ptr);
16279         // debug statements here
16280 }
16281         // uintptr_t APIError_clone_ptr(LDKAPIError *NONNULL_PTR arg);
16282 /* @internal */
16283 export function APIError_clone_ptr(arg: number): number {
16284         if(!isWasmInitialized) {
16285                 throw new Error("initializeWasm() must be awaited first!");
16286         }
16287         const nativeResponseValue = wasm.TS_APIError_clone_ptr(arg);
16288         return nativeResponseValue;
16289 }
16290         // struct LDKAPIError APIError_clone(const struct LDKAPIError *NONNULL_PTR orig);
16291 /* @internal */
16292 export function APIError_clone(orig: number): number {
16293         if(!isWasmInitialized) {
16294                 throw new Error("initializeWasm() must be awaited first!");
16295         }
16296         const nativeResponseValue = wasm.TS_APIError_clone(orig);
16297         return nativeResponseValue;
16298 }
16299         // struct LDKAPIError APIError_apimisuse_error(struct LDKStr err);
16300 /* @internal */
16301 export function APIError_apimisuse_error(err: number): number {
16302         if(!isWasmInitialized) {
16303                 throw new Error("initializeWasm() must be awaited first!");
16304         }
16305         const nativeResponseValue = wasm.TS_APIError_apimisuse_error(err);
16306         return nativeResponseValue;
16307 }
16308         // struct LDKAPIError APIError_fee_rate_too_high(struct LDKStr err, uint32_t feerate);
16309 /* @internal */
16310 export function APIError_fee_rate_too_high(err: number, feerate: number): number {
16311         if(!isWasmInitialized) {
16312                 throw new Error("initializeWasm() must be awaited first!");
16313         }
16314         const nativeResponseValue = wasm.TS_APIError_fee_rate_too_high(err, feerate);
16315         return nativeResponseValue;
16316 }
16317         // struct LDKAPIError APIError_route_error(struct LDKStr err);
16318 /* @internal */
16319 export function APIError_route_error(err: number): number {
16320         if(!isWasmInitialized) {
16321                 throw new Error("initializeWasm() must be awaited first!");
16322         }
16323         const nativeResponseValue = wasm.TS_APIError_route_error(err);
16324         return nativeResponseValue;
16325 }
16326         // struct LDKAPIError APIError_channel_unavailable(struct LDKStr err);
16327 /* @internal */
16328 export function APIError_channel_unavailable(err: number): number {
16329         if(!isWasmInitialized) {
16330                 throw new Error("initializeWasm() must be awaited first!");
16331         }
16332         const nativeResponseValue = wasm.TS_APIError_channel_unavailable(err);
16333         return nativeResponseValue;
16334 }
16335         // struct LDKAPIError APIError_monitor_update_failed(void);
16336 /* @internal */
16337 export function APIError_monitor_update_failed(): number {
16338         if(!isWasmInitialized) {
16339                 throw new Error("initializeWasm() must be awaited first!");
16340         }
16341         const nativeResponseValue = wasm.TS_APIError_monitor_update_failed();
16342         return nativeResponseValue;
16343 }
16344         // struct LDKAPIError APIError_incompatible_shutdown_script(struct LDKShutdownScript script);
16345 /* @internal */
16346 export function APIError_incompatible_shutdown_script(script: number): number {
16347         if(!isWasmInitialized) {
16348                 throw new Error("initializeWasm() must be awaited first!");
16349         }
16350         const nativeResponseValue = wasm.TS_APIError_incompatible_shutdown_script(script);
16351         return nativeResponseValue;
16352 }
16353         // void BigSize_free(struct LDKBigSize this_obj);
16354 /* @internal */
16355 export function BigSize_free(this_obj: number): void {
16356         if(!isWasmInitialized) {
16357                 throw new Error("initializeWasm() must be awaited first!");
16358         }
16359         const nativeResponseValue = wasm.TS_BigSize_free(this_obj);
16360         // debug statements here
16361 }
16362         // uint64_t BigSize_get_a(const struct LDKBigSize *NONNULL_PTR this_ptr);
16363 /* @internal */
16364 export function BigSize_get_a(this_ptr: number): bigint {
16365         if(!isWasmInitialized) {
16366                 throw new Error("initializeWasm() must be awaited first!");
16367         }
16368         const nativeResponseValue = wasm.TS_BigSize_get_a(this_ptr);
16369         return nativeResponseValue;
16370 }
16371         // void BigSize_set_a(struct LDKBigSize *NONNULL_PTR this_ptr, uint64_t val);
16372 /* @internal */
16373 export function BigSize_set_a(this_ptr: number, val: bigint): void {
16374         if(!isWasmInitialized) {
16375                 throw new Error("initializeWasm() must be awaited first!");
16376         }
16377         const nativeResponseValue = wasm.TS_BigSize_set_a(this_ptr, val);
16378         // debug statements here
16379 }
16380         // MUST_USE_RES struct LDKBigSize BigSize_new(uint64_t a_arg);
16381 /* @internal */
16382 export function BigSize_new(a_arg: bigint): number {
16383         if(!isWasmInitialized) {
16384                 throw new Error("initializeWasm() must be awaited first!");
16385         }
16386         const nativeResponseValue = wasm.TS_BigSize_new(a_arg);
16387         return nativeResponseValue;
16388 }
16389         // void Hostname_free(struct LDKHostname this_obj);
16390 /* @internal */
16391 export function Hostname_free(this_obj: number): void {
16392         if(!isWasmInitialized) {
16393                 throw new Error("initializeWasm() must be awaited first!");
16394         }
16395         const nativeResponseValue = wasm.TS_Hostname_free(this_obj);
16396         // debug statements here
16397 }
16398         // uintptr_t Hostname_clone_ptr(LDKHostname *NONNULL_PTR arg);
16399 /* @internal */
16400 export function Hostname_clone_ptr(arg: number): number {
16401         if(!isWasmInitialized) {
16402                 throw new Error("initializeWasm() must be awaited first!");
16403         }
16404         const nativeResponseValue = wasm.TS_Hostname_clone_ptr(arg);
16405         return nativeResponseValue;
16406 }
16407         // struct LDKHostname Hostname_clone(const struct LDKHostname *NONNULL_PTR orig);
16408 /* @internal */
16409 export function Hostname_clone(orig: number): number {
16410         if(!isWasmInitialized) {
16411                 throw new Error("initializeWasm() must be awaited first!");
16412         }
16413         const nativeResponseValue = wasm.TS_Hostname_clone(orig);
16414         return nativeResponseValue;
16415 }
16416         // MUST_USE_RES uint8_t Hostname_len(const struct LDKHostname *NONNULL_PTR this_arg);
16417 /* @internal */
16418 export function Hostname_len(this_arg: number): number {
16419         if(!isWasmInitialized) {
16420                 throw new Error("initializeWasm() must be awaited first!");
16421         }
16422         const nativeResponseValue = wasm.TS_Hostname_len(this_arg);
16423         return nativeResponseValue;
16424 }
16425         // struct LDKCResult_StringErrorZ sign(struct LDKu8slice msg, const uint8_t (*sk)[32]);
16426 /* @internal */
16427 export function sign(msg: number, sk: number): number {
16428         if(!isWasmInitialized) {
16429                 throw new Error("initializeWasm() must be awaited first!");
16430         }
16431         const nativeResponseValue = wasm.TS_sign(msg, sk);
16432         return nativeResponseValue;
16433 }
16434         // struct LDKCResult_PublicKeyErrorZ recover_pk(struct LDKu8slice msg, struct LDKStr sig);
16435 /* @internal */
16436 export function recover_pk(msg: number, sig: number): number {
16437         if(!isWasmInitialized) {
16438                 throw new Error("initializeWasm() must be awaited first!");
16439         }
16440         const nativeResponseValue = wasm.TS_recover_pk(msg, sig);
16441         return nativeResponseValue;
16442 }
16443         // bool verify(struct LDKu8slice msg, struct LDKStr sig, struct LDKPublicKey pk);
16444 /* @internal */
16445 export function verify(msg: number, sig: number, pk: number): boolean {
16446         if(!isWasmInitialized) {
16447                 throw new Error("initializeWasm() must be awaited first!");
16448         }
16449         const nativeResponseValue = wasm.TS_verify(msg, sig, pk);
16450         return nativeResponseValue;
16451 }
16452         // struct LDKCVec_u8Z construct_invoice_preimage(struct LDKu8slice hrp_bytes, struct LDKCVec_u5Z data_without_signature);
16453 /* @internal */
16454 export function construct_invoice_preimage(hrp_bytes: number, data_without_signature: number): number {
16455         if(!isWasmInitialized) {
16456                 throw new Error("initializeWasm() must be awaited first!");
16457         }
16458         const nativeResponseValue = wasm.TS_construct_invoice_preimage(hrp_bytes, data_without_signature);
16459         return nativeResponseValue;
16460 }
16461         // void Persister_free(struct LDKPersister this_ptr);
16462 /* @internal */
16463 export function Persister_free(this_ptr: number): void {
16464         if(!isWasmInitialized) {
16465                 throw new Error("initializeWasm() must be awaited first!");
16466         }
16467         const nativeResponseValue = wasm.TS_Persister_free(this_ptr);
16468         // debug statements here
16469 }
16470         // enum LDKLevel Level_clone(const enum LDKLevel *NONNULL_PTR orig);
16471 /* @internal */
16472 export function Level_clone(orig: number): Level {
16473         if(!isWasmInitialized) {
16474                 throw new Error("initializeWasm() must be awaited first!");
16475         }
16476         const nativeResponseValue = wasm.TS_Level_clone(orig);
16477         return nativeResponseValue;
16478 }
16479         // enum LDKLevel Level_gossip(void);
16480 /* @internal */
16481 export function Level_gossip(): Level {
16482         if(!isWasmInitialized) {
16483                 throw new Error("initializeWasm() must be awaited first!");
16484         }
16485         const nativeResponseValue = wasm.TS_Level_gossip();
16486         return nativeResponseValue;
16487 }
16488         // enum LDKLevel Level_trace(void);
16489 /* @internal */
16490 export function Level_trace(): Level {
16491         if(!isWasmInitialized) {
16492                 throw new Error("initializeWasm() must be awaited first!");
16493         }
16494         const nativeResponseValue = wasm.TS_Level_trace();
16495         return nativeResponseValue;
16496 }
16497         // enum LDKLevel Level_debug(void);
16498 /* @internal */
16499 export function Level_debug(): Level {
16500         if(!isWasmInitialized) {
16501                 throw new Error("initializeWasm() must be awaited first!");
16502         }
16503         const nativeResponseValue = wasm.TS_Level_debug();
16504         return nativeResponseValue;
16505 }
16506         // enum LDKLevel Level_info(void);
16507 /* @internal */
16508 export function Level_info(): Level {
16509         if(!isWasmInitialized) {
16510                 throw new Error("initializeWasm() must be awaited first!");
16511         }
16512         const nativeResponseValue = wasm.TS_Level_info();
16513         return nativeResponseValue;
16514 }
16515         // enum LDKLevel Level_warn(void);
16516 /* @internal */
16517 export function Level_warn(): Level {
16518         if(!isWasmInitialized) {
16519                 throw new Error("initializeWasm() must be awaited first!");
16520         }
16521         const nativeResponseValue = wasm.TS_Level_warn();
16522         return nativeResponseValue;
16523 }
16524         // enum LDKLevel Level_error(void);
16525 /* @internal */
16526 export function Level_error(): Level {
16527         if(!isWasmInitialized) {
16528                 throw new Error("initializeWasm() must be awaited first!");
16529         }
16530         const nativeResponseValue = wasm.TS_Level_error();
16531         return nativeResponseValue;
16532 }
16533         // bool Level_eq(const enum LDKLevel *NONNULL_PTR a, const enum LDKLevel *NONNULL_PTR b);
16534 /* @internal */
16535 export function Level_eq(a: number, b: number): boolean {
16536         if(!isWasmInitialized) {
16537                 throw new Error("initializeWasm() must be awaited first!");
16538         }
16539         const nativeResponseValue = wasm.TS_Level_eq(a, b);
16540         return nativeResponseValue;
16541 }
16542         // uint64_t Level_hash(const enum LDKLevel *NONNULL_PTR o);
16543 /* @internal */
16544 export function Level_hash(o: number): bigint {
16545         if(!isWasmInitialized) {
16546                 throw new Error("initializeWasm() must be awaited first!");
16547         }
16548         const nativeResponseValue = wasm.TS_Level_hash(o);
16549         return nativeResponseValue;
16550 }
16551         // MUST_USE_RES enum LDKLevel Level_max(void);
16552 /* @internal */
16553 export function Level_max(): Level {
16554         if(!isWasmInitialized) {
16555                 throw new Error("initializeWasm() must be awaited first!");
16556         }
16557         const nativeResponseValue = wasm.TS_Level_max();
16558         return nativeResponseValue;
16559 }
16560         // void Record_free(struct LDKRecord this_obj);
16561 /* @internal */
16562 export function Record_free(this_obj: number): void {
16563         if(!isWasmInitialized) {
16564                 throw new Error("initializeWasm() must be awaited first!");
16565         }
16566         const nativeResponseValue = wasm.TS_Record_free(this_obj);
16567         // debug statements here
16568 }
16569         // enum LDKLevel Record_get_level(const struct LDKRecord *NONNULL_PTR this_ptr);
16570 /* @internal */
16571 export function Record_get_level(this_ptr: number): Level {
16572         if(!isWasmInitialized) {
16573                 throw new Error("initializeWasm() must be awaited first!");
16574         }
16575         const nativeResponseValue = wasm.TS_Record_get_level(this_ptr);
16576         return nativeResponseValue;
16577 }
16578         // void Record_set_level(struct LDKRecord *NONNULL_PTR this_ptr, enum LDKLevel val);
16579 /* @internal */
16580 export function Record_set_level(this_ptr: number, val: Level): void {
16581         if(!isWasmInitialized) {
16582                 throw new Error("initializeWasm() must be awaited first!");
16583         }
16584         const nativeResponseValue = wasm.TS_Record_set_level(this_ptr, val);
16585         // debug statements here
16586 }
16587         // struct LDKStr Record_get_args(const struct LDKRecord *NONNULL_PTR this_ptr);
16588 /* @internal */
16589 export function Record_get_args(this_ptr: number): number {
16590         if(!isWasmInitialized) {
16591                 throw new Error("initializeWasm() must be awaited first!");
16592         }
16593         const nativeResponseValue = wasm.TS_Record_get_args(this_ptr);
16594         return nativeResponseValue;
16595 }
16596         // void Record_set_args(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
16597 /* @internal */
16598 export function Record_set_args(this_ptr: number, val: number): void {
16599         if(!isWasmInitialized) {
16600                 throw new Error("initializeWasm() must be awaited first!");
16601         }
16602         const nativeResponseValue = wasm.TS_Record_set_args(this_ptr, val);
16603         // debug statements here
16604 }
16605         // struct LDKStr Record_get_module_path(const struct LDKRecord *NONNULL_PTR this_ptr);
16606 /* @internal */
16607 export function Record_get_module_path(this_ptr: number): number {
16608         if(!isWasmInitialized) {
16609                 throw new Error("initializeWasm() must be awaited first!");
16610         }
16611         const nativeResponseValue = wasm.TS_Record_get_module_path(this_ptr);
16612         return nativeResponseValue;
16613 }
16614         // void Record_set_module_path(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
16615 /* @internal */
16616 export function Record_set_module_path(this_ptr: number, val: number): void {
16617         if(!isWasmInitialized) {
16618                 throw new Error("initializeWasm() must be awaited first!");
16619         }
16620         const nativeResponseValue = wasm.TS_Record_set_module_path(this_ptr, val);
16621         // debug statements here
16622 }
16623         // struct LDKStr Record_get_file(const struct LDKRecord *NONNULL_PTR this_ptr);
16624 /* @internal */
16625 export function Record_get_file(this_ptr: number): number {
16626         if(!isWasmInitialized) {
16627                 throw new Error("initializeWasm() must be awaited first!");
16628         }
16629         const nativeResponseValue = wasm.TS_Record_get_file(this_ptr);
16630         return nativeResponseValue;
16631 }
16632         // void Record_set_file(struct LDKRecord *NONNULL_PTR this_ptr, struct LDKStr val);
16633 /* @internal */
16634 export function Record_set_file(this_ptr: number, val: number): void {
16635         if(!isWasmInitialized) {
16636                 throw new Error("initializeWasm() must be awaited first!");
16637         }
16638         const nativeResponseValue = wasm.TS_Record_set_file(this_ptr, val);
16639         // debug statements here
16640 }
16641         // uint32_t Record_get_line(const struct LDKRecord *NONNULL_PTR this_ptr);
16642 /* @internal */
16643 export function Record_get_line(this_ptr: number): number {
16644         if(!isWasmInitialized) {
16645                 throw new Error("initializeWasm() must be awaited first!");
16646         }
16647         const nativeResponseValue = wasm.TS_Record_get_line(this_ptr);
16648         return nativeResponseValue;
16649 }
16650         // void Record_set_line(struct LDKRecord *NONNULL_PTR this_ptr, uint32_t val);
16651 /* @internal */
16652 export function Record_set_line(this_ptr: number, val: number): void {
16653         if(!isWasmInitialized) {
16654                 throw new Error("initializeWasm() must be awaited first!");
16655         }
16656         const nativeResponseValue = wasm.TS_Record_set_line(this_ptr, val);
16657         // debug statements here
16658 }
16659         // uintptr_t Record_clone_ptr(LDKRecord *NONNULL_PTR arg);
16660 /* @internal */
16661 export function Record_clone_ptr(arg: number): number {
16662         if(!isWasmInitialized) {
16663                 throw new Error("initializeWasm() must be awaited first!");
16664         }
16665         const nativeResponseValue = wasm.TS_Record_clone_ptr(arg);
16666         return nativeResponseValue;
16667 }
16668         // struct LDKRecord Record_clone(const struct LDKRecord *NONNULL_PTR orig);
16669 /* @internal */
16670 export function Record_clone(orig: number): number {
16671         if(!isWasmInitialized) {
16672                 throw new Error("initializeWasm() must be awaited first!");
16673         }
16674         const nativeResponseValue = wasm.TS_Record_clone(orig);
16675         return nativeResponseValue;
16676 }
16677         // void Logger_free(struct LDKLogger this_ptr);
16678 /* @internal */
16679 export function Logger_free(this_ptr: number): void {
16680         if(!isWasmInitialized) {
16681                 throw new Error("initializeWasm() must be awaited first!");
16682         }
16683         const nativeResponseValue = wasm.TS_Logger_free(this_ptr);
16684         // debug statements here
16685 }
16686         // void ChannelHandshakeConfig_free(struct LDKChannelHandshakeConfig this_obj);
16687 /* @internal */
16688 export function ChannelHandshakeConfig_free(this_obj: number): void {
16689         if(!isWasmInitialized) {
16690                 throw new Error("initializeWasm() must be awaited first!");
16691         }
16692         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_free(this_obj);
16693         // debug statements here
16694 }
16695         // uint32_t ChannelHandshakeConfig_get_minimum_depth(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16696 /* @internal */
16697 export function ChannelHandshakeConfig_get_minimum_depth(this_ptr: number): number {
16698         if(!isWasmInitialized) {
16699                 throw new Error("initializeWasm() must be awaited first!");
16700         }
16701         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_minimum_depth(this_ptr);
16702         return nativeResponseValue;
16703 }
16704         // void ChannelHandshakeConfig_set_minimum_depth(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint32_t val);
16705 /* @internal */
16706 export function ChannelHandshakeConfig_set_minimum_depth(this_ptr: number, val: number): void {
16707         if(!isWasmInitialized) {
16708                 throw new Error("initializeWasm() must be awaited first!");
16709         }
16710         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_minimum_depth(this_ptr, val);
16711         // debug statements here
16712 }
16713         // uint16_t ChannelHandshakeConfig_get_our_to_self_delay(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16714 /* @internal */
16715 export function ChannelHandshakeConfig_get_our_to_self_delay(this_ptr: number): number {
16716         if(!isWasmInitialized) {
16717                 throw new Error("initializeWasm() must be awaited first!");
16718         }
16719         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_our_to_self_delay(this_ptr);
16720         return nativeResponseValue;
16721 }
16722         // void ChannelHandshakeConfig_set_our_to_self_delay(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint16_t val);
16723 /* @internal */
16724 export function ChannelHandshakeConfig_set_our_to_self_delay(this_ptr: number, val: number): void {
16725         if(!isWasmInitialized) {
16726                 throw new Error("initializeWasm() must be awaited first!");
16727         }
16728         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_our_to_self_delay(this_ptr, val);
16729         // debug statements here
16730 }
16731         // uint64_t ChannelHandshakeConfig_get_our_htlc_minimum_msat(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16732 /* @internal */
16733 export function ChannelHandshakeConfig_get_our_htlc_minimum_msat(this_ptr: number): bigint {
16734         if(!isWasmInitialized) {
16735                 throw new Error("initializeWasm() must be awaited first!");
16736         }
16737         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_our_htlc_minimum_msat(this_ptr);
16738         return nativeResponseValue;
16739 }
16740         // void ChannelHandshakeConfig_set_our_htlc_minimum_msat(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint64_t val);
16741 /* @internal */
16742 export function ChannelHandshakeConfig_set_our_htlc_minimum_msat(this_ptr: number, val: bigint): void {
16743         if(!isWasmInitialized) {
16744                 throw new Error("initializeWasm() must be awaited first!");
16745         }
16746         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_our_htlc_minimum_msat(this_ptr, val);
16747         // debug statements here
16748 }
16749         // uint8_t ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16750 /* @internal */
16751 export function ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr: number): number {
16752         if(!isWasmInitialized) {
16753                 throw new Error("initializeWasm() must be awaited first!");
16754         }
16755         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr);
16756         return nativeResponseValue;
16757 }
16758         // void ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, uint8_t val);
16759 /* @internal */
16760 export function ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr: number, val: number): void {
16761         if(!isWasmInitialized) {
16762                 throw new Error("initializeWasm() must be awaited first!");
16763         }
16764         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_max_inbound_htlc_value_in_flight_percent_of_channel(this_ptr, val);
16765         // debug statements here
16766 }
16767         // bool ChannelHandshakeConfig_get_negotiate_scid_privacy(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16768 /* @internal */
16769 export function ChannelHandshakeConfig_get_negotiate_scid_privacy(this_ptr: number): boolean {
16770         if(!isWasmInitialized) {
16771                 throw new Error("initializeWasm() must be awaited first!");
16772         }
16773         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_negotiate_scid_privacy(this_ptr);
16774         return nativeResponseValue;
16775 }
16776         // void ChannelHandshakeConfig_set_negotiate_scid_privacy(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
16777 /* @internal */
16778 export function ChannelHandshakeConfig_set_negotiate_scid_privacy(this_ptr: number, val: boolean): void {
16779         if(!isWasmInitialized) {
16780                 throw new Error("initializeWasm() must be awaited first!");
16781         }
16782         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_negotiate_scid_privacy(this_ptr, val);
16783         // debug statements here
16784 }
16785         // bool ChannelHandshakeConfig_get_announced_channel(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16786 /* @internal */
16787 export function ChannelHandshakeConfig_get_announced_channel(this_ptr: number): boolean {
16788         if(!isWasmInitialized) {
16789                 throw new Error("initializeWasm() must be awaited first!");
16790         }
16791         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_announced_channel(this_ptr);
16792         return nativeResponseValue;
16793 }
16794         // void ChannelHandshakeConfig_set_announced_channel(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
16795 /* @internal */
16796 export function ChannelHandshakeConfig_set_announced_channel(this_ptr: number, val: boolean): void {
16797         if(!isWasmInitialized) {
16798                 throw new Error("initializeWasm() must be awaited first!");
16799         }
16800         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_announced_channel(this_ptr, val);
16801         // debug statements here
16802 }
16803         // bool ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(const struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr);
16804 /* @internal */
16805 export function ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(this_ptr: number): boolean {
16806         if(!isWasmInitialized) {
16807                 throw new Error("initializeWasm() must be awaited first!");
16808         }
16809         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_get_commit_upfront_shutdown_pubkey(this_ptr);
16810         return nativeResponseValue;
16811 }
16812         // void ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(struct LDKChannelHandshakeConfig *NONNULL_PTR this_ptr, bool val);
16813 /* @internal */
16814 export function ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(this_ptr: number, val: boolean): void {
16815         if(!isWasmInitialized) {
16816                 throw new Error("initializeWasm() must be awaited first!");
16817         }
16818         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_set_commit_upfront_shutdown_pubkey(this_ptr, val);
16819         // debug statements here
16820 }
16821         // MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_new(uint32_t minimum_depth_arg, uint16_t our_to_self_delay_arg, uint64_t our_htlc_minimum_msat_arg, uint8_t max_inbound_htlc_value_in_flight_percent_of_channel_arg, bool negotiate_scid_privacy_arg, bool announced_channel_arg, bool commit_upfront_shutdown_pubkey_arg);
16822 /* @internal */
16823 export function ChannelHandshakeConfig_new(minimum_depth_arg: number, our_to_self_delay_arg: number, our_htlc_minimum_msat_arg: bigint, max_inbound_htlc_value_in_flight_percent_of_channel_arg: number, negotiate_scid_privacy_arg: boolean, announced_channel_arg: boolean, commit_upfront_shutdown_pubkey_arg: boolean): number {
16824         if(!isWasmInitialized) {
16825                 throw new Error("initializeWasm() must be awaited first!");
16826         }
16827         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_new(minimum_depth_arg, our_to_self_delay_arg, our_htlc_minimum_msat_arg, max_inbound_htlc_value_in_flight_percent_of_channel_arg, negotiate_scid_privacy_arg, announced_channel_arg, commit_upfront_shutdown_pubkey_arg);
16828         return nativeResponseValue;
16829 }
16830         // uintptr_t ChannelHandshakeConfig_clone_ptr(LDKChannelHandshakeConfig *NONNULL_PTR arg);
16831 /* @internal */
16832 export function ChannelHandshakeConfig_clone_ptr(arg: number): number {
16833         if(!isWasmInitialized) {
16834                 throw new Error("initializeWasm() must be awaited first!");
16835         }
16836         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_clone_ptr(arg);
16837         return nativeResponseValue;
16838 }
16839         // struct LDKChannelHandshakeConfig ChannelHandshakeConfig_clone(const struct LDKChannelHandshakeConfig *NONNULL_PTR orig);
16840 /* @internal */
16841 export function ChannelHandshakeConfig_clone(orig: number): number {
16842         if(!isWasmInitialized) {
16843                 throw new Error("initializeWasm() must be awaited first!");
16844         }
16845         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_clone(orig);
16846         return nativeResponseValue;
16847 }
16848         // MUST_USE_RES struct LDKChannelHandshakeConfig ChannelHandshakeConfig_default(void);
16849 /* @internal */
16850 export function ChannelHandshakeConfig_default(): number {
16851         if(!isWasmInitialized) {
16852                 throw new Error("initializeWasm() must be awaited first!");
16853         }
16854         const nativeResponseValue = wasm.TS_ChannelHandshakeConfig_default();
16855         return nativeResponseValue;
16856 }
16857         // void ChannelHandshakeLimits_free(struct LDKChannelHandshakeLimits this_obj);
16858 /* @internal */
16859 export function ChannelHandshakeLimits_free(this_obj: number): void {
16860         if(!isWasmInitialized) {
16861                 throw new Error("initializeWasm() must be awaited first!");
16862         }
16863         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_free(this_obj);
16864         // debug statements here
16865 }
16866         // uint64_t ChannelHandshakeLimits_get_min_funding_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16867 /* @internal */
16868 export function ChannelHandshakeLimits_get_min_funding_satoshis(this_ptr: number): bigint {
16869         if(!isWasmInitialized) {
16870                 throw new Error("initializeWasm() must be awaited first!");
16871         }
16872         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_min_funding_satoshis(this_ptr);
16873         return nativeResponseValue;
16874 }
16875         // void ChannelHandshakeLimits_set_min_funding_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
16876 /* @internal */
16877 export function ChannelHandshakeLimits_set_min_funding_satoshis(this_ptr: number, val: bigint): void {
16878         if(!isWasmInitialized) {
16879                 throw new Error("initializeWasm() must be awaited first!");
16880         }
16881         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_min_funding_satoshis(this_ptr, val);
16882         // debug statements here
16883 }
16884         // uint64_t ChannelHandshakeLimits_get_max_funding_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16885 /* @internal */
16886 export function ChannelHandshakeLimits_get_max_funding_satoshis(this_ptr: number): bigint {
16887         if(!isWasmInitialized) {
16888                 throw new Error("initializeWasm() must be awaited first!");
16889         }
16890         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_max_funding_satoshis(this_ptr);
16891         return nativeResponseValue;
16892 }
16893         // void ChannelHandshakeLimits_set_max_funding_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
16894 /* @internal */
16895 export function ChannelHandshakeLimits_set_max_funding_satoshis(this_ptr: number, val: bigint): void {
16896         if(!isWasmInitialized) {
16897                 throw new Error("initializeWasm() must be awaited first!");
16898         }
16899         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_max_funding_satoshis(this_ptr, val);
16900         // debug statements here
16901 }
16902         // uint64_t ChannelHandshakeLimits_get_max_htlc_minimum_msat(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16903 /* @internal */
16904 export function ChannelHandshakeLimits_get_max_htlc_minimum_msat(this_ptr: number): bigint {
16905         if(!isWasmInitialized) {
16906                 throw new Error("initializeWasm() must be awaited first!");
16907         }
16908         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_max_htlc_minimum_msat(this_ptr);
16909         return nativeResponseValue;
16910 }
16911         // void ChannelHandshakeLimits_set_max_htlc_minimum_msat(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
16912 /* @internal */
16913 export function ChannelHandshakeLimits_set_max_htlc_minimum_msat(this_ptr: number, val: bigint): void {
16914         if(!isWasmInitialized) {
16915                 throw new Error("initializeWasm() must be awaited first!");
16916         }
16917         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_max_htlc_minimum_msat(this_ptr, val);
16918         // debug statements here
16919 }
16920         // uint64_t ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16921 /* @internal */
16922 export function ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(this_ptr: number): bigint {
16923         if(!isWasmInitialized) {
16924                 throw new Error("initializeWasm() must be awaited first!");
16925         }
16926         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_min_max_htlc_value_in_flight_msat(this_ptr);
16927         return nativeResponseValue;
16928 }
16929         // void ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
16930 /* @internal */
16931 export function ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(this_ptr: number, val: bigint): void {
16932         if(!isWasmInitialized) {
16933                 throw new Error("initializeWasm() must be awaited first!");
16934         }
16935         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_min_max_htlc_value_in_flight_msat(this_ptr, val);
16936         // debug statements here
16937 }
16938         // uint64_t ChannelHandshakeLimits_get_max_channel_reserve_satoshis(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16939 /* @internal */
16940 export function ChannelHandshakeLimits_get_max_channel_reserve_satoshis(this_ptr: number): bigint {
16941         if(!isWasmInitialized) {
16942                 throw new Error("initializeWasm() must be awaited first!");
16943         }
16944         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_max_channel_reserve_satoshis(this_ptr);
16945         return nativeResponseValue;
16946 }
16947         // void ChannelHandshakeLimits_set_max_channel_reserve_satoshis(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint64_t val);
16948 /* @internal */
16949 export function ChannelHandshakeLimits_set_max_channel_reserve_satoshis(this_ptr: number, val: bigint): void {
16950         if(!isWasmInitialized) {
16951                 throw new Error("initializeWasm() must be awaited first!");
16952         }
16953         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_max_channel_reserve_satoshis(this_ptr, val);
16954         // debug statements here
16955 }
16956         // uint16_t ChannelHandshakeLimits_get_min_max_accepted_htlcs(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16957 /* @internal */
16958 export function ChannelHandshakeLimits_get_min_max_accepted_htlcs(this_ptr: number): number {
16959         if(!isWasmInitialized) {
16960                 throw new Error("initializeWasm() must be awaited first!");
16961         }
16962         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_min_max_accepted_htlcs(this_ptr);
16963         return nativeResponseValue;
16964 }
16965         // void ChannelHandshakeLimits_set_min_max_accepted_htlcs(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint16_t val);
16966 /* @internal */
16967 export function ChannelHandshakeLimits_set_min_max_accepted_htlcs(this_ptr: number, val: number): void {
16968         if(!isWasmInitialized) {
16969                 throw new Error("initializeWasm() must be awaited first!");
16970         }
16971         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_min_max_accepted_htlcs(this_ptr, val);
16972         // debug statements here
16973 }
16974         // uint32_t ChannelHandshakeLimits_get_max_minimum_depth(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16975 /* @internal */
16976 export function ChannelHandshakeLimits_get_max_minimum_depth(this_ptr: number): number {
16977         if(!isWasmInitialized) {
16978                 throw new Error("initializeWasm() must be awaited first!");
16979         }
16980         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_max_minimum_depth(this_ptr);
16981         return nativeResponseValue;
16982 }
16983         // void ChannelHandshakeLimits_set_max_minimum_depth(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint32_t val);
16984 /* @internal */
16985 export function ChannelHandshakeLimits_set_max_minimum_depth(this_ptr: number, val: number): void {
16986         if(!isWasmInitialized) {
16987                 throw new Error("initializeWasm() must be awaited first!");
16988         }
16989         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_max_minimum_depth(this_ptr, val);
16990         // debug statements here
16991 }
16992         // bool ChannelHandshakeLimits_get_trust_own_funding_0conf(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
16993 /* @internal */
16994 export function ChannelHandshakeLimits_get_trust_own_funding_0conf(this_ptr: number): boolean {
16995         if(!isWasmInitialized) {
16996                 throw new Error("initializeWasm() must be awaited first!");
16997         }
16998         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_trust_own_funding_0conf(this_ptr);
16999         return nativeResponseValue;
17000 }
17001         // void ChannelHandshakeLimits_set_trust_own_funding_0conf(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, bool val);
17002 /* @internal */
17003 export function ChannelHandshakeLimits_set_trust_own_funding_0conf(this_ptr: number, val: boolean): void {
17004         if(!isWasmInitialized) {
17005                 throw new Error("initializeWasm() must be awaited first!");
17006         }
17007         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_trust_own_funding_0conf(this_ptr, val);
17008         // debug statements here
17009 }
17010         // bool ChannelHandshakeLimits_get_force_announced_channel_preference(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
17011 /* @internal */
17012 export function ChannelHandshakeLimits_get_force_announced_channel_preference(this_ptr: number): boolean {
17013         if(!isWasmInitialized) {
17014                 throw new Error("initializeWasm() must be awaited first!");
17015         }
17016         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_force_announced_channel_preference(this_ptr);
17017         return nativeResponseValue;
17018 }
17019         // void ChannelHandshakeLimits_set_force_announced_channel_preference(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, bool val);
17020 /* @internal */
17021 export function ChannelHandshakeLimits_set_force_announced_channel_preference(this_ptr: number, val: boolean): void {
17022         if(!isWasmInitialized) {
17023                 throw new Error("initializeWasm() must be awaited first!");
17024         }
17025         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_force_announced_channel_preference(this_ptr, val);
17026         // debug statements here
17027 }
17028         // uint16_t ChannelHandshakeLimits_get_their_to_self_delay(const struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr);
17029 /* @internal */
17030 export function ChannelHandshakeLimits_get_their_to_self_delay(this_ptr: number): number {
17031         if(!isWasmInitialized) {
17032                 throw new Error("initializeWasm() must be awaited first!");
17033         }
17034         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_get_their_to_self_delay(this_ptr);
17035         return nativeResponseValue;
17036 }
17037         // void ChannelHandshakeLimits_set_their_to_self_delay(struct LDKChannelHandshakeLimits *NONNULL_PTR this_ptr, uint16_t val);
17038 /* @internal */
17039 export function ChannelHandshakeLimits_set_their_to_self_delay(this_ptr: number, val: number): void {
17040         if(!isWasmInitialized) {
17041                 throw new Error("initializeWasm() must be awaited first!");
17042         }
17043         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_set_their_to_self_delay(this_ptr, val);
17044         // debug statements here
17045 }
17046         // MUST_USE_RES struct LDKChannelHandshakeLimits ChannelHandshakeLimits_new(uint64_t min_funding_satoshis_arg, uint64_t max_funding_satoshis_arg, uint64_t max_htlc_minimum_msat_arg, uint64_t min_max_htlc_value_in_flight_msat_arg, uint64_t max_channel_reserve_satoshis_arg, uint16_t min_max_accepted_htlcs_arg, uint32_t max_minimum_depth_arg, bool trust_own_funding_0conf_arg, bool force_announced_channel_preference_arg, uint16_t their_to_self_delay_arg);
17047 /* @internal */
17048 export function ChannelHandshakeLimits_new(min_funding_satoshis_arg: bigint, max_funding_satoshis_arg: bigint, max_htlc_minimum_msat_arg: bigint, min_max_htlc_value_in_flight_msat_arg: bigint, max_channel_reserve_satoshis_arg: bigint, min_max_accepted_htlcs_arg: number, max_minimum_depth_arg: number, trust_own_funding_0conf_arg: boolean, force_announced_channel_preference_arg: boolean, their_to_self_delay_arg: number): number {
17049         if(!isWasmInitialized) {
17050                 throw new Error("initializeWasm() must be awaited first!");
17051         }
17052         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_new(min_funding_satoshis_arg, max_funding_satoshis_arg, max_htlc_minimum_msat_arg, min_max_htlc_value_in_flight_msat_arg, max_channel_reserve_satoshis_arg, min_max_accepted_htlcs_arg, max_minimum_depth_arg, trust_own_funding_0conf_arg, force_announced_channel_preference_arg, their_to_self_delay_arg);
17053         return nativeResponseValue;
17054 }
17055         // uintptr_t ChannelHandshakeLimits_clone_ptr(LDKChannelHandshakeLimits *NONNULL_PTR arg);
17056 /* @internal */
17057 export function ChannelHandshakeLimits_clone_ptr(arg: number): number {
17058         if(!isWasmInitialized) {
17059                 throw new Error("initializeWasm() must be awaited first!");
17060         }
17061         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_clone_ptr(arg);
17062         return nativeResponseValue;
17063 }
17064         // struct LDKChannelHandshakeLimits ChannelHandshakeLimits_clone(const struct LDKChannelHandshakeLimits *NONNULL_PTR orig);
17065 /* @internal */
17066 export function ChannelHandshakeLimits_clone(orig: number): number {
17067         if(!isWasmInitialized) {
17068                 throw new Error("initializeWasm() must be awaited first!");
17069         }
17070         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_clone(orig);
17071         return nativeResponseValue;
17072 }
17073         // MUST_USE_RES struct LDKChannelHandshakeLimits ChannelHandshakeLimits_default(void);
17074 /* @internal */
17075 export function ChannelHandshakeLimits_default(): number {
17076         if(!isWasmInitialized) {
17077                 throw new Error("initializeWasm() must be awaited first!");
17078         }
17079         const nativeResponseValue = wasm.TS_ChannelHandshakeLimits_default();
17080         return nativeResponseValue;
17081 }
17082         // void ChannelConfig_free(struct LDKChannelConfig this_obj);
17083 /* @internal */
17084 export function ChannelConfig_free(this_obj: number): void {
17085         if(!isWasmInitialized) {
17086                 throw new Error("initializeWasm() must be awaited first!");
17087         }
17088         const nativeResponseValue = wasm.TS_ChannelConfig_free(this_obj);
17089         // debug statements here
17090 }
17091         // uint32_t ChannelConfig_get_forwarding_fee_proportional_millionths(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
17092 /* @internal */
17093 export function ChannelConfig_get_forwarding_fee_proportional_millionths(this_ptr: number): number {
17094         if(!isWasmInitialized) {
17095                 throw new Error("initializeWasm() must be awaited first!");
17096         }
17097         const nativeResponseValue = wasm.TS_ChannelConfig_get_forwarding_fee_proportional_millionths(this_ptr);
17098         return nativeResponseValue;
17099 }
17100         // void ChannelConfig_set_forwarding_fee_proportional_millionths(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint32_t val);
17101 /* @internal */
17102 export function ChannelConfig_set_forwarding_fee_proportional_millionths(this_ptr: number, val: number): void {
17103         if(!isWasmInitialized) {
17104                 throw new Error("initializeWasm() must be awaited first!");
17105         }
17106         const nativeResponseValue = wasm.TS_ChannelConfig_set_forwarding_fee_proportional_millionths(this_ptr, val);
17107         // debug statements here
17108 }
17109         // uint32_t ChannelConfig_get_forwarding_fee_base_msat(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
17110 /* @internal */
17111 export function ChannelConfig_get_forwarding_fee_base_msat(this_ptr: number): number {
17112         if(!isWasmInitialized) {
17113                 throw new Error("initializeWasm() must be awaited first!");
17114         }
17115         const nativeResponseValue = wasm.TS_ChannelConfig_get_forwarding_fee_base_msat(this_ptr);
17116         return nativeResponseValue;
17117 }
17118         // void ChannelConfig_set_forwarding_fee_base_msat(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint32_t val);
17119 /* @internal */
17120 export function ChannelConfig_set_forwarding_fee_base_msat(this_ptr: number, val: number): void {
17121         if(!isWasmInitialized) {
17122                 throw new Error("initializeWasm() must be awaited first!");
17123         }
17124         const nativeResponseValue = wasm.TS_ChannelConfig_set_forwarding_fee_base_msat(this_ptr, val);
17125         // debug statements here
17126 }
17127         // uint16_t ChannelConfig_get_cltv_expiry_delta(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
17128 /* @internal */
17129 export function ChannelConfig_get_cltv_expiry_delta(this_ptr: number): number {
17130         if(!isWasmInitialized) {
17131                 throw new Error("initializeWasm() must be awaited first!");
17132         }
17133         const nativeResponseValue = wasm.TS_ChannelConfig_get_cltv_expiry_delta(this_ptr);
17134         return nativeResponseValue;
17135 }
17136         // void ChannelConfig_set_cltv_expiry_delta(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint16_t val);
17137 /* @internal */
17138 export function ChannelConfig_set_cltv_expiry_delta(this_ptr: number, val: number): void {
17139         if(!isWasmInitialized) {
17140                 throw new Error("initializeWasm() must be awaited first!");
17141         }
17142         const nativeResponseValue = wasm.TS_ChannelConfig_set_cltv_expiry_delta(this_ptr, val);
17143         // debug statements here
17144 }
17145         // uint64_t ChannelConfig_get_max_dust_htlc_exposure_msat(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
17146 /* @internal */
17147 export function ChannelConfig_get_max_dust_htlc_exposure_msat(this_ptr: number): bigint {
17148         if(!isWasmInitialized) {
17149                 throw new Error("initializeWasm() must be awaited first!");
17150         }
17151         const nativeResponseValue = wasm.TS_ChannelConfig_get_max_dust_htlc_exposure_msat(this_ptr);
17152         return nativeResponseValue;
17153 }
17154         // void ChannelConfig_set_max_dust_htlc_exposure_msat(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint64_t val);
17155 /* @internal */
17156 export function ChannelConfig_set_max_dust_htlc_exposure_msat(this_ptr: number, val: bigint): void {
17157         if(!isWasmInitialized) {
17158                 throw new Error("initializeWasm() must be awaited first!");
17159         }
17160         const nativeResponseValue = wasm.TS_ChannelConfig_set_max_dust_htlc_exposure_msat(this_ptr, val);
17161         // debug statements here
17162 }
17163         // uint64_t ChannelConfig_get_force_close_avoidance_max_fee_satoshis(const struct LDKChannelConfig *NONNULL_PTR this_ptr);
17164 /* @internal */
17165 export function ChannelConfig_get_force_close_avoidance_max_fee_satoshis(this_ptr: number): bigint {
17166         if(!isWasmInitialized) {
17167                 throw new Error("initializeWasm() must be awaited first!");
17168         }
17169         const nativeResponseValue = wasm.TS_ChannelConfig_get_force_close_avoidance_max_fee_satoshis(this_ptr);
17170         return nativeResponseValue;
17171 }
17172         // void ChannelConfig_set_force_close_avoidance_max_fee_satoshis(struct LDKChannelConfig *NONNULL_PTR this_ptr, uint64_t val);
17173 /* @internal */
17174 export function ChannelConfig_set_force_close_avoidance_max_fee_satoshis(this_ptr: number, val: bigint): void {
17175         if(!isWasmInitialized) {
17176                 throw new Error("initializeWasm() must be awaited first!");
17177         }
17178         const nativeResponseValue = wasm.TS_ChannelConfig_set_force_close_avoidance_max_fee_satoshis(this_ptr, val);
17179         // debug statements here
17180 }
17181         // MUST_USE_RES struct LDKChannelConfig ChannelConfig_new(uint32_t forwarding_fee_proportional_millionths_arg, uint32_t forwarding_fee_base_msat_arg, uint16_t cltv_expiry_delta_arg, uint64_t max_dust_htlc_exposure_msat_arg, uint64_t force_close_avoidance_max_fee_satoshis_arg);
17182 /* @internal */
17183 export function ChannelConfig_new(forwarding_fee_proportional_millionths_arg: number, forwarding_fee_base_msat_arg: number, cltv_expiry_delta_arg: number, max_dust_htlc_exposure_msat_arg: bigint, force_close_avoidance_max_fee_satoshis_arg: bigint): number {
17184         if(!isWasmInitialized) {
17185                 throw new Error("initializeWasm() must be awaited first!");
17186         }
17187         const nativeResponseValue = wasm.TS_ChannelConfig_new(forwarding_fee_proportional_millionths_arg, forwarding_fee_base_msat_arg, cltv_expiry_delta_arg, max_dust_htlc_exposure_msat_arg, force_close_avoidance_max_fee_satoshis_arg);
17188         return nativeResponseValue;
17189 }
17190         // uintptr_t ChannelConfig_clone_ptr(LDKChannelConfig *NONNULL_PTR arg);
17191 /* @internal */
17192 export function ChannelConfig_clone_ptr(arg: number): number {
17193         if(!isWasmInitialized) {
17194                 throw new Error("initializeWasm() must be awaited first!");
17195         }
17196         const nativeResponseValue = wasm.TS_ChannelConfig_clone_ptr(arg);
17197         return nativeResponseValue;
17198 }
17199         // struct LDKChannelConfig ChannelConfig_clone(const struct LDKChannelConfig *NONNULL_PTR orig);
17200 /* @internal */
17201 export function ChannelConfig_clone(orig: number): number {
17202         if(!isWasmInitialized) {
17203                 throw new Error("initializeWasm() must be awaited first!");
17204         }
17205         const nativeResponseValue = wasm.TS_ChannelConfig_clone(orig);
17206         return nativeResponseValue;
17207 }
17208         // MUST_USE_RES struct LDKChannelConfig ChannelConfig_default(void);
17209 /* @internal */
17210 export function ChannelConfig_default(): number {
17211         if(!isWasmInitialized) {
17212                 throw new Error("initializeWasm() must be awaited first!");
17213         }
17214         const nativeResponseValue = wasm.TS_ChannelConfig_default();
17215         return nativeResponseValue;
17216 }
17217         // struct LDKCVec_u8Z ChannelConfig_write(const struct LDKChannelConfig *NONNULL_PTR obj);
17218 /* @internal */
17219 export function ChannelConfig_write(obj: number): number {
17220         if(!isWasmInitialized) {
17221                 throw new Error("initializeWasm() must be awaited first!");
17222         }
17223         const nativeResponseValue = wasm.TS_ChannelConfig_write(obj);
17224         return nativeResponseValue;
17225 }
17226         // struct LDKCResult_ChannelConfigDecodeErrorZ ChannelConfig_read(struct LDKu8slice ser);
17227 /* @internal */
17228 export function ChannelConfig_read(ser: number): number {
17229         if(!isWasmInitialized) {
17230                 throw new Error("initializeWasm() must be awaited first!");
17231         }
17232         const nativeResponseValue = wasm.TS_ChannelConfig_read(ser);
17233         return nativeResponseValue;
17234 }
17235         // void UserConfig_free(struct LDKUserConfig this_obj);
17236 /* @internal */
17237 export function UserConfig_free(this_obj: number): void {
17238         if(!isWasmInitialized) {
17239                 throw new Error("initializeWasm() must be awaited first!");
17240         }
17241         const nativeResponseValue = wasm.TS_UserConfig_free(this_obj);
17242         // debug statements here
17243 }
17244         // struct LDKChannelHandshakeConfig UserConfig_get_channel_handshake_config(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17245 /* @internal */
17246 export function UserConfig_get_channel_handshake_config(this_ptr: number): number {
17247         if(!isWasmInitialized) {
17248                 throw new Error("initializeWasm() must be awaited first!");
17249         }
17250         const nativeResponseValue = wasm.TS_UserConfig_get_channel_handshake_config(this_ptr);
17251         return nativeResponseValue;
17252 }
17253         // void UserConfig_set_channel_handshake_config(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelHandshakeConfig val);
17254 /* @internal */
17255 export function UserConfig_set_channel_handshake_config(this_ptr: number, val: number): void {
17256         if(!isWasmInitialized) {
17257                 throw new Error("initializeWasm() must be awaited first!");
17258         }
17259         const nativeResponseValue = wasm.TS_UserConfig_set_channel_handshake_config(this_ptr, val);
17260         // debug statements here
17261 }
17262         // struct LDKChannelHandshakeLimits UserConfig_get_channel_handshake_limits(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17263 /* @internal */
17264 export function UserConfig_get_channel_handshake_limits(this_ptr: number): number {
17265         if(!isWasmInitialized) {
17266                 throw new Error("initializeWasm() must be awaited first!");
17267         }
17268         const nativeResponseValue = wasm.TS_UserConfig_get_channel_handshake_limits(this_ptr);
17269         return nativeResponseValue;
17270 }
17271         // void UserConfig_set_channel_handshake_limits(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelHandshakeLimits val);
17272 /* @internal */
17273 export function UserConfig_set_channel_handshake_limits(this_ptr: number, val: number): void {
17274         if(!isWasmInitialized) {
17275                 throw new Error("initializeWasm() must be awaited first!");
17276         }
17277         const nativeResponseValue = wasm.TS_UserConfig_set_channel_handshake_limits(this_ptr, val);
17278         // debug statements here
17279 }
17280         // struct LDKChannelConfig UserConfig_get_channel_config(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17281 /* @internal */
17282 export function UserConfig_get_channel_config(this_ptr: number): number {
17283         if(!isWasmInitialized) {
17284                 throw new Error("initializeWasm() must be awaited first!");
17285         }
17286         const nativeResponseValue = wasm.TS_UserConfig_get_channel_config(this_ptr);
17287         return nativeResponseValue;
17288 }
17289         // void UserConfig_set_channel_config(struct LDKUserConfig *NONNULL_PTR this_ptr, struct LDKChannelConfig val);
17290 /* @internal */
17291 export function UserConfig_set_channel_config(this_ptr: number, val: number): void {
17292         if(!isWasmInitialized) {
17293                 throw new Error("initializeWasm() must be awaited first!");
17294         }
17295         const nativeResponseValue = wasm.TS_UserConfig_set_channel_config(this_ptr, val);
17296         // debug statements here
17297 }
17298         // bool UserConfig_get_accept_forwards_to_priv_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17299 /* @internal */
17300 export function UserConfig_get_accept_forwards_to_priv_channels(this_ptr: number): boolean {
17301         if(!isWasmInitialized) {
17302                 throw new Error("initializeWasm() must be awaited first!");
17303         }
17304         const nativeResponseValue = wasm.TS_UserConfig_get_accept_forwards_to_priv_channels(this_ptr);
17305         return nativeResponseValue;
17306 }
17307         // void UserConfig_set_accept_forwards_to_priv_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
17308 /* @internal */
17309 export function UserConfig_set_accept_forwards_to_priv_channels(this_ptr: number, val: boolean): void {
17310         if(!isWasmInitialized) {
17311                 throw new Error("initializeWasm() must be awaited first!");
17312         }
17313         const nativeResponseValue = wasm.TS_UserConfig_set_accept_forwards_to_priv_channels(this_ptr, val);
17314         // debug statements here
17315 }
17316         // bool UserConfig_get_accept_inbound_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17317 /* @internal */
17318 export function UserConfig_get_accept_inbound_channels(this_ptr: number): boolean {
17319         if(!isWasmInitialized) {
17320                 throw new Error("initializeWasm() must be awaited first!");
17321         }
17322         const nativeResponseValue = wasm.TS_UserConfig_get_accept_inbound_channels(this_ptr);
17323         return nativeResponseValue;
17324 }
17325         // void UserConfig_set_accept_inbound_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
17326 /* @internal */
17327 export function UserConfig_set_accept_inbound_channels(this_ptr: number, val: boolean): void {
17328         if(!isWasmInitialized) {
17329                 throw new Error("initializeWasm() must be awaited first!");
17330         }
17331         const nativeResponseValue = wasm.TS_UserConfig_set_accept_inbound_channels(this_ptr, val);
17332         // debug statements here
17333 }
17334         // bool UserConfig_get_manually_accept_inbound_channels(const struct LDKUserConfig *NONNULL_PTR this_ptr);
17335 /* @internal */
17336 export function UserConfig_get_manually_accept_inbound_channels(this_ptr: number): boolean {
17337         if(!isWasmInitialized) {
17338                 throw new Error("initializeWasm() must be awaited first!");
17339         }
17340         const nativeResponseValue = wasm.TS_UserConfig_get_manually_accept_inbound_channels(this_ptr);
17341         return nativeResponseValue;
17342 }
17343         // void UserConfig_set_manually_accept_inbound_channels(struct LDKUserConfig *NONNULL_PTR this_ptr, bool val);
17344 /* @internal */
17345 export function UserConfig_set_manually_accept_inbound_channels(this_ptr: number, val: boolean): void {
17346         if(!isWasmInitialized) {
17347                 throw new Error("initializeWasm() must be awaited first!");
17348         }
17349         const nativeResponseValue = wasm.TS_UserConfig_set_manually_accept_inbound_channels(this_ptr, val);
17350         // debug statements here
17351 }
17352         // MUST_USE_RES struct LDKUserConfig UserConfig_new(struct LDKChannelHandshakeConfig channel_handshake_config_arg, struct LDKChannelHandshakeLimits channel_handshake_limits_arg, struct LDKChannelConfig channel_config_arg, bool accept_forwards_to_priv_channels_arg, bool accept_inbound_channels_arg, bool manually_accept_inbound_channels_arg);
17353 /* @internal */
17354 export function UserConfig_new(channel_handshake_config_arg: number, channel_handshake_limits_arg: number, channel_config_arg: number, accept_forwards_to_priv_channels_arg: boolean, accept_inbound_channels_arg: boolean, manually_accept_inbound_channels_arg: boolean): number {
17355         if(!isWasmInitialized) {
17356                 throw new Error("initializeWasm() must be awaited first!");
17357         }
17358         const nativeResponseValue = wasm.TS_UserConfig_new(channel_handshake_config_arg, channel_handshake_limits_arg, channel_config_arg, accept_forwards_to_priv_channels_arg, accept_inbound_channels_arg, manually_accept_inbound_channels_arg);
17359         return nativeResponseValue;
17360 }
17361         // uintptr_t UserConfig_clone_ptr(LDKUserConfig *NONNULL_PTR arg);
17362 /* @internal */
17363 export function UserConfig_clone_ptr(arg: number): number {
17364         if(!isWasmInitialized) {
17365                 throw new Error("initializeWasm() must be awaited first!");
17366         }
17367         const nativeResponseValue = wasm.TS_UserConfig_clone_ptr(arg);
17368         return nativeResponseValue;
17369 }
17370         // struct LDKUserConfig UserConfig_clone(const struct LDKUserConfig *NONNULL_PTR orig);
17371 /* @internal */
17372 export function UserConfig_clone(orig: number): number {
17373         if(!isWasmInitialized) {
17374                 throw new Error("initializeWasm() must be awaited first!");
17375         }
17376         const nativeResponseValue = wasm.TS_UserConfig_clone(orig);
17377         return nativeResponseValue;
17378 }
17379         // MUST_USE_RES struct LDKUserConfig UserConfig_default(void);
17380 /* @internal */
17381 export function UserConfig_default(): number {
17382         if(!isWasmInitialized) {
17383                 throw new Error("initializeWasm() must be awaited first!");
17384         }
17385         const nativeResponseValue = wasm.TS_UserConfig_default();
17386         return nativeResponseValue;
17387 }
17388         // void BestBlock_free(struct LDKBestBlock this_obj);
17389 /* @internal */
17390 export function BestBlock_free(this_obj: number): void {
17391         if(!isWasmInitialized) {
17392                 throw new Error("initializeWasm() must be awaited first!");
17393         }
17394         const nativeResponseValue = wasm.TS_BestBlock_free(this_obj);
17395         // debug statements here
17396 }
17397         // uintptr_t BestBlock_clone_ptr(LDKBestBlock *NONNULL_PTR arg);
17398 /* @internal */
17399 export function BestBlock_clone_ptr(arg: number): number {
17400         if(!isWasmInitialized) {
17401                 throw new Error("initializeWasm() must be awaited first!");
17402         }
17403         const nativeResponseValue = wasm.TS_BestBlock_clone_ptr(arg);
17404         return nativeResponseValue;
17405 }
17406         // struct LDKBestBlock BestBlock_clone(const struct LDKBestBlock *NONNULL_PTR orig);
17407 /* @internal */
17408 export function BestBlock_clone(orig: number): number {
17409         if(!isWasmInitialized) {
17410                 throw new Error("initializeWasm() must be awaited first!");
17411         }
17412         const nativeResponseValue = wasm.TS_BestBlock_clone(orig);
17413         return nativeResponseValue;
17414 }
17415         // MUST_USE_RES struct LDKBestBlock BestBlock_from_genesis(enum LDKNetwork network);
17416 /* @internal */
17417 export function BestBlock_from_genesis(network: Network): number {
17418         if(!isWasmInitialized) {
17419                 throw new Error("initializeWasm() must be awaited first!");
17420         }
17421         const nativeResponseValue = wasm.TS_BestBlock_from_genesis(network);
17422         return nativeResponseValue;
17423 }
17424         // MUST_USE_RES struct LDKBestBlock BestBlock_new(struct LDKThirtyTwoBytes block_hash, uint32_t height);
17425 /* @internal */
17426 export function BestBlock_new(block_hash: number, height: number): number {
17427         if(!isWasmInitialized) {
17428                 throw new Error("initializeWasm() must be awaited first!");
17429         }
17430         const nativeResponseValue = wasm.TS_BestBlock_new(block_hash, height);
17431         return nativeResponseValue;
17432 }
17433         // MUST_USE_RES struct LDKThirtyTwoBytes BestBlock_block_hash(const struct LDKBestBlock *NONNULL_PTR this_arg);
17434 /* @internal */
17435 export function BestBlock_block_hash(this_arg: number): number {
17436         if(!isWasmInitialized) {
17437                 throw new Error("initializeWasm() must be awaited first!");
17438         }
17439         const nativeResponseValue = wasm.TS_BestBlock_block_hash(this_arg);
17440         return nativeResponseValue;
17441 }
17442         // MUST_USE_RES uint32_t BestBlock_height(const struct LDKBestBlock *NONNULL_PTR this_arg);
17443 /* @internal */
17444 export function BestBlock_height(this_arg: number): number {
17445         if(!isWasmInitialized) {
17446                 throw new Error("initializeWasm() must be awaited first!");
17447         }
17448         const nativeResponseValue = wasm.TS_BestBlock_height(this_arg);
17449         return nativeResponseValue;
17450 }
17451         // enum LDKAccessError AccessError_clone(const enum LDKAccessError *NONNULL_PTR orig);
17452 /* @internal */
17453 export function AccessError_clone(orig: number): AccessError {
17454         if(!isWasmInitialized) {
17455                 throw new Error("initializeWasm() must be awaited first!");
17456         }
17457         const nativeResponseValue = wasm.TS_AccessError_clone(orig);
17458         return nativeResponseValue;
17459 }
17460         // enum LDKAccessError AccessError_unknown_chain(void);
17461 /* @internal */
17462 export function AccessError_unknown_chain(): AccessError {
17463         if(!isWasmInitialized) {
17464                 throw new Error("initializeWasm() must be awaited first!");
17465         }
17466         const nativeResponseValue = wasm.TS_AccessError_unknown_chain();
17467         return nativeResponseValue;
17468 }
17469         // enum LDKAccessError AccessError_unknown_tx(void);
17470 /* @internal */
17471 export function AccessError_unknown_tx(): AccessError {
17472         if(!isWasmInitialized) {
17473                 throw new Error("initializeWasm() must be awaited first!");
17474         }
17475         const nativeResponseValue = wasm.TS_AccessError_unknown_tx();
17476         return nativeResponseValue;
17477 }
17478         // void Access_free(struct LDKAccess this_ptr);
17479 /* @internal */
17480 export function Access_free(this_ptr: number): void {
17481         if(!isWasmInitialized) {
17482                 throw new Error("initializeWasm() must be awaited first!");
17483         }
17484         const nativeResponseValue = wasm.TS_Access_free(this_ptr);
17485         // debug statements here
17486 }
17487         // void Listen_free(struct LDKListen this_ptr);
17488 /* @internal */
17489 export function Listen_free(this_ptr: number): void {
17490         if(!isWasmInitialized) {
17491                 throw new Error("initializeWasm() must be awaited first!");
17492         }
17493         const nativeResponseValue = wasm.TS_Listen_free(this_ptr);
17494         // debug statements here
17495 }
17496         // void Confirm_free(struct LDKConfirm this_ptr);
17497 /* @internal */
17498 export function Confirm_free(this_ptr: number): void {
17499         if(!isWasmInitialized) {
17500                 throw new Error("initializeWasm() must be awaited first!");
17501         }
17502         const nativeResponseValue = wasm.TS_Confirm_free(this_ptr);
17503         // debug statements here
17504 }
17505         // enum LDKChannelMonitorUpdateErr ChannelMonitorUpdateErr_clone(const enum LDKChannelMonitorUpdateErr *NONNULL_PTR orig);
17506 /* @internal */
17507 export function ChannelMonitorUpdateErr_clone(orig: number): ChannelMonitorUpdateErr {
17508         if(!isWasmInitialized) {
17509                 throw new Error("initializeWasm() must be awaited first!");
17510         }
17511         const nativeResponseValue = wasm.TS_ChannelMonitorUpdateErr_clone(orig);
17512         return nativeResponseValue;
17513 }
17514         // enum LDKChannelMonitorUpdateErr ChannelMonitorUpdateErr_temporary_failure(void);
17515 /* @internal */
17516 export function ChannelMonitorUpdateErr_temporary_failure(): ChannelMonitorUpdateErr {
17517         if(!isWasmInitialized) {
17518                 throw new Error("initializeWasm() must be awaited first!");
17519         }
17520         const nativeResponseValue = wasm.TS_ChannelMonitorUpdateErr_temporary_failure();
17521         return nativeResponseValue;
17522 }
17523         // enum LDKChannelMonitorUpdateErr ChannelMonitorUpdateErr_permanent_failure(void);
17524 /* @internal */
17525 export function ChannelMonitorUpdateErr_permanent_failure(): ChannelMonitorUpdateErr {
17526         if(!isWasmInitialized) {
17527                 throw new Error("initializeWasm() must be awaited first!");
17528         }
17529         const nativeResponseValue = wasm.TS_ChannelMonitorUpdateErr_permanent_failure();
17530         return nativeResponseValue;
17531 }
17532         // void Watch_free(struct LDKWatch this_ptr);
17533 /* @internal */
17534 export function Watch_free(this_ptr: number): void {
17535         if(!isWasmInitialized) {
17536                 throw new Error("initializeWasm() must be awaited first!");
17537         }
17538         const nativeResponseValue = wasm.TS_Watch_free(this_ptr);
17539         // debug statements here
17540 }
17541         // void Filter_free(struct LDKFilter this_ptr);
17542 /* @internal */
17543 export function Filter_free(this_ptr: number): void {
17544         if(!isWasmInitialized) {
17545                 throw new Error("initializeWasm() must be awaited first!");
17546         }
17547         const nativeResponseValue = wasm.TS_Filter_free(this_ptr);
17548         // debug statements here
17549 }
17550         // void WatchedOutput_free(struct LDKWatchedOutput this_obj);
17551 /* @internal */
17552 export function WatchedOutput_free(this_obj: number): void {
17553         if(!isWasmInitialized) {
17554                 throw new Error("initializeWasm() must be awaited first!");
17555         }
17556         const nativeResponseValue = wasm.TS_WatchedOutput_free(this_obj);
17557         // debug statements here
17558 }
17559         // struct LDKThirtyTwoBytes WatchedOutput_get_block_hash(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
17560 /* @internal */
17561 export function WatchedOutput_get_block_hash(this_ptr: number): number {
17562         if(!isWasmInitialized) {
17563                 throw new Error("initializeWasm() must be awaited first!");
17564         }
17565         const nativeResponseValue = wasm.TS_WatchedOutput_get_block_hash(this_ptr);
17566         return nativeResponseValue;
17567 }
17568         // void WatchedOutput_set_block_hash(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
17569 /* @internal */
17570 export function WatchedOutput_set_block_hash(this_ptr: number, val: number): void {
17571         if(!isWasmInitialized) {
17572                 throw new Error("initializeWasm() must be awaited first!");
17573         }
17574         const nativeResponseValue = wasm.TS_WatchedOutput_set_block_hash(this_ptr, val);
17575         // debug statements here
17576 }
17577         // struct LDKOutPoint WatchedOutput_get_outpoint(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
17578 /* @internal */
17579 export function WatchedOutput_get_outpoint(this_ptr: number): number {
17580         if(!isWasmInitialized) {
17581                 throw new Error("initializeWasm() must be awaited first!");
17582         }
17583         const nativeResponseValue = wasm.TS_WatchedOutput_get_outpoint(this_ptr);
17584         return nativeResponseValue;
17585 }
17586         // void WatchedOutput_set_outpoint(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKOutPoint val);
17587 /* @internal */
17588 export function WatchedOutput_set_outpoint(this_ptr: number, val: number): void {
17589         if(!isWasmInitialized) {
17590                 throw new Error("initializeWasm() must be awaited first!");
17591         }
17592         const nativeResponseValue = wasm.TS_WatchedOutput_set_outpoint(this_ptr, val);
17593         // debug statements here
17594 }
17595         // struct LDKu8slice WatchedOutput_get_script_pubkey(const struct LDKWatchedOutput *NONNULL_PTR this_ptr);
17596 /* @internal */
17597 export function WatchedOutput_get_script_pubkey(this_ptr: number): number {
17598         if(!isWasmInitialized) {
17599                 throw new Error("initializeWasm() must be awaited first!");
17600         }
17601         const nativeResponseValue = wasm.TS_WatchedOutput_get_script_pubkey(this_ptr);
17602         return nativeResponseValue;
17603 }
17604         // void WatchedOutput_set_script_pubkey(struct LDKWatchedOutput *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
17605 /* @internal */
17606 export function WatchedOutput_set_script_pubkey(this_ptr: number, val: number): void {
17607         if(!isWasmInitialized) {
17608                 throw new Error("initializeWasm() must be awaited first!");
17609         }
17610         const nativeResponseValue = wasm.TS_WatchedOutput_set_script_pubkey(this_ptr, val);
17611         // debug statements here
17612 }
17613         // MUST_USE_RES struct LDKWatchedOutput WatchedOutput_new(struct LDKThirtyTwoBytes block_hash_arg, struct LDKOutPoint outpoint_arg, struct LDKCVec_u8Z script_pubkey_arg);
17614 /* @internal */
17615 export function WatchedOutput_new(block_hash_arg: number, outpoint_arg: number, script_pubkey_arg: number): number {
17616         if(!isWasmInitialized) {
17617                 throw new Error("initializeWasm() must be awaited first!");
17618         }
17619         const nativeResponseValue = wasm.TS_WatchedOutput_new(block_hash_arg, outpoint_arg, script_pubkey_arg);
17620         return nativeResponseValue;
17621 }
17622         // uintptr_t WatchedOutput_clone_ptr(LDKWatchedOutput *NONNULL_PTR arg);
17623 /* @internal */
17624 export function WatchedOutput_clone_ptr(arg: number): number {
17625         if(!isWasmInitialized) {
17626                 throw new Error("initializeWasm() must be awaited first!");
17627         }
17628         const nativeResponseValue = wasm.TS_WatchedOutput_clone_ptr(arg);
17629         return nativeResponseValue;
17630 }
17631         // struct LDKWatchedOutput WatchedOutput_clone(const struct LDKWatchedOutput *NONNULL_PTR orig);
17632 /* @internal */
17633 export function WatchedOutput_clone(orig: number): number {
17634         if(!isWasmInitialized) {
17635                 throw new Error("initializeWasm() must be awaited first!");
17636         }
17637         const nativeResponseValue = wasm.TS_WatchedOutput_clone(orig);
17638         return nativeResponseValue;
17639 }
17640         // uint64_t WatchedOutput_hash(const struct LDKWatchedOutput *NONNULL_PTR o);
17641 /* @internal */
17642 export function WatchedOutput_hash(o: number): bigint {
17643         if(!isWasmInitialized) {
17644                 throw new Error("initializeWasm() must be awaited first!");
17645         }
17646         const nativeResponseValue = wasm.TS_WatchedOutput_hash(o);
17647         return nativeResponseValue;
17648 }
17649         // void BroadcasterInterface_free(struct LDKBroadcasterInterface this_ptr);
17650 /* @internal */
17651 export function BroadcasterInterface_free(this_ptr: number): void {
17652         if(!isWasmInitialized) {
17653                 throw new Error("initializeWasm() must be awaited first!");
17654         }
17655         const nativeResponseValue = wasm.TS_BroadcasterInterface_free(this_ptr);
17656         // debug statements here
17657 }
17658         // enum LDKConfirmationTarget ConfirmationTarget_clone(const enum LDKConfirmationTarget *NONNULL_PTR orig);
17659 /* @internal */
17660 export function ConfirmationTarget_clone(orig: number): ConfirmationTarget {
17661         if(!isWasmInitialized) {
17662                 throw new Error("initializeWasm() must be awaited first!");
17663         }
17664         const nativeResponseValue = wasm.TS_ConfirmationTarget_clone(orig);
17665         return nativeResponseValue;
17666 }
17667         // enum LDKConfirmationTarget ConfirmationTarget_background(void);
17668 /* @internal */
17669 export function ConfirmationTarget_background(): ConfirmationTarget {
17670         if(!isWasmInitialized) {
17671                 throw new Error("initializeWasm() must be awaited first!");
17672         }
17673         const nativeResponseValue = wasm.TS_ConfirmationTarget_background();
17674         return nativeResponseValue;
17675 }
17676         // enum LDKConfirmationTarget ConfirmationTarget_normal(void);
17677 /* @internal */
17678 export function ConfirmationTarget_normal(): ConfirmationTarget {
17679         if(!isWasmInitialized) {
17680                 throw new Error("initializeWasm() must be awaited first!");
17681         }
17682         const nativeResponseValue = wasm.TS_ConfirmationTarget_normal();
17683         return nativeResponseValue;
17684 }
17685         // enum LDKConfirmationTarget ConfirmationTarget_high_priority(void);
17686 /* @internal */
17687 export function ConfirmationTarget_high_priority(): ConfirmationTarget {
17688         if(!isWasmInitialized) {
17689                 throw new Error("initializeWasm() must be awaited first!");
17690         }
17691         const nativeResponseValue = wasm.TS_ConfirmationTarget_high_priority();
17692         return nativeResponseValue;
17693 }
17694         // bool ConfirmationTarget_eq(const enum LDKConfirmationTarget *NONNULL_PTR a, const enum LDKConfirmationTarget *NONNULL_PTR b);
17695 /* @internal */
17696 export function ConfirmationTarget_eq(a: number, b: number): boolean {
17697         if(!isWasmInitialized) {
17698                 throw new Error("initializeWasm() must be awaited first!");
17699         }
17700         const nativeResponseValue = wasm.TS_ConfirmationTarget_eq(a, b);
17701         return nativeResponseValue;
17702 }
17703         // void FeeEstimator_free(struct LDKFeeEstimator this_ptr);
17704 /* @internal */
17705 export function FeeEstimator_free(this_ptr: number): void {
17706         if(!isWasmInitialized) {
17707                 throw new Error("initializeWasm() must be awaited first!");
17708         }
17709         const nativeResponseValue = wasm.TS_FeeEstimator_free(this_ptr);
17710         // debug statements here
17711 }
17712         // void MonitorUpdateId_free(struct LDKMonitorUpdateId this_obj);
17713 /* @internal */
17714 export function MonitorUpdateId_free(this_obj: number): void {
17715         if(!isWasmInitialized) {
17716                 throw new Error("initializeWasm() must be awaited first!");
17717         }
17718         const nativeResponseValue = wasm.TS_MonitorUpdateId_free(this_obj);
17719         // debug statements here
17720 }
17721         // uintptr_t MonitorUpdateId_clone_ptr(LDKMonitorUpdateId *NONNULL_PTR arg);
17722 /* @internal */
17723 export function MonitorUpdateId_clone_ptr(arg: number): number {
17724         if(!isWasmInitialized) {
17725                 throw new Error("initializeWasm() must be awaited first!");
17726         }
17727         const nativeResponseValue = wasm.TS_MonitorUpdateId_clone_ptr(arg);
17728         return nativeResponseValue;
17729 }
17730         // struct LDKMonitorUpdateId MonitorUpdateId_clone(const struct LDKMonitorUpdateId *NONNULL_PTR orig);
17731 /* @internal */
17732 export function MonitorUpdateId_clone(orig: number): number {
17733         if(!isWasmInitialized) {
17734                 throw new Error("initializeWasm() must be awaited first!");
17735         }
17736         const nativeResponseValue = wasm.TS_MonitorUpdateId_clone(orig);
17737         return nativeResponseValue;
17738 }
17739         // uint64_t MonitorUpdateId_hash(const struct LDKMonitorUpdateId *NONNULL_PTR o);
17740 /* @internal */
17741 export function MonitorUpdateId_hash(o: number): bigint {
17742         if(!isWasmInitialized) {
17743                 throw new Error("initializeWasm() must be awaited first!");
17744         }
17745         const nativeResponseValue = wasm.TS_MonitorUpdateId_hash(o);
17746         return nativeResponseValue;
17747 }
17748         // bool MonitorUpdateId_eq(const struct LDKMonitorUpdateId *NONNULL_PTR a, const struct LDKMonitorUpdateId *NONNULL_PTR b);
17749 /* @internal */
17750 export function MonitorUpdateId_eq(a: number, b: number): boolean {
17751         if(!isWasmInitialized) {
17752                 throw new Error("initializeWasm() must be awaited first!");
17753         }
17754         const nativeResponseValue = wasm.TS_MonitorUpdateId_eq(a, b);
17755         return nativeResponseValue;
17756 }
17757         // void Persist_free(struct LDKPersist this_ptr);
17758 /* @internal */
17759 export function Persist_free(this_ptr: number): void {
17760         if(!isWasmInitialized) {
17761                 throw new Error("initializeWasm() must be awaited first!");
17762         }
17763         const nativeResponseValue = wasm.TS_Persist_free(this_ptr);
17764         // debug statements here
17765 }
17766         // void LockedChannelMonitor_free(struct LDKLockedChannelMonitor this_obj);
17767 /* @internal */
17768 export function LockedChannelMonitor_free(this_obj: number): void {
17769         if(!isWasmInitialized) {
17770                 throw new Error("initializeWasm() must be awaited first!");
17771         }
17772         const nativeResponseValue = wasm.TS_LockedChannelMonitor_free(this_obj);
17773         // debug statements here
17774 }
17775         // void ChainMonitor_free(struct LDKChainMonitor this_obj);
17776 /* @internal */
17777 export function ChainMonitor_free(this_obj: number): void {
17778         if(!isWasmInitialized) {
17779                 throw new Error("initializeWasm() must be awaited first!");
17780         }
17781         const nativeResponseValue = wasm.TS_ChainMonitor_free(this_obj);
17782         // debug statements here
17783 }
17784         // MUST_USE_RES struct LDKChainMonitor ChainMonitor_new(struct LDKCOption_FilterZ chain_source, struct LDKBroadcasterInterface broadcaster, struct LDKLogger logger, struct LDKFeeEstimator feeest, struct LDKPersist persister);
17785 /* @internal */
17786 export function ChainMonitor_new(chain_source: number, broadcaster: number, logger: number, feeest: number, persister: number): number {
17787         if(!isWasmInitialized) {
17788                 throw new Error("initializeWasm() must be awaited first!");
17789         }
17790         const nativeResponseValue = wasm.TS_ChainMonitor_new(chain_source, broadcaster, logger, feeest, persister);
17791         return nativeResponseValue;
17792 }
17793         // MUST_USE_RES struct LDKCVec_BalanceZ ChainMonitor_get_claimable_balances(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKCVec_ChannelDetailsZ ignored_channels);
17794 /* @internal */
17795 export function ChainMonitor_get_claimable_balances(this_arg: number, ignored_channels: number): number {
17796         if(!isWasmInitialized) {
17797                 throw new Error("initializeWasm() must be awaited first!");
17798         }
17799         const nativeResponseValue = wasm.TS_ChainMonitor_get_claimable_balances(this_arg, ignored_channels);
17800         return nativeResponseValue;
17801 }
17802         // MUST_USE_RES struct LDKCResult_LockedChannelMonitorNoneZ ChainMonitor_get_monitor(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo);
17803 /* @internal */
17804 export function ChainMonitor_get_monitor(this_arg: number, funding_txo: number): number {
17805         if(!isWasmInitialized) {
17806                 throw new Error("initializeWasm() must be awaited first!");
17807         }
17808         const nativeResponseValue = wasm.TS_ChainMonitor_get_monitor(this_arg, funding_txo);
17809         return nativeResponseValue;
17810 }
17811         // MUST_USE_RES struct LDKCVec_OutPointZ ChainMonitor_list_monitors(const struct LDKChainMonitor *NONNULL_PTR this_arg);
17812 /* @internal */
17813 export function ChainMonitor_list_monitors(this_arg: number): number {
17814         if(!isWasmInitialized) {
17815                 throw new Error("initializeWasm() must be awaited first!");
17816         }
17817         const nativeResponseValue = wasm.TS_ChainMonitor_list_monitors(this_arg);
17818         return nativeResponseValue;
17819 }
17820         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChainMonitor_channel_monitor_updated(const struct LDKChainMonitor *NONNULL_PTR this_arg, struct LDKOutPoint funding_txo, struct LDKMonitorUpdateId completed_update_id);
17821 /* @internal */
17822 export function ChainMonitor_channel_monitor_updated(this_arg: number, funding_txo: number, completed_update_id: number): number {
17823         if(!isWasmInitialized) {
17824                 throw new Error("initializeWasm() must be awaited first!");
17825         }
17826         const nativeResponseValue = wasm.TS_ChainMonitor_channel_monitor_updated(this_arg, funding_txo, completed_update_id);
17827         return nativeResponseValue;
17828 }
17829         // struct LDKListen ChainMonitor_as_Listen(const struct LDKChainMonitor *NONNULL_PTR this_arg);
17830 /* @internal */
17831 export function ChainMonitor_as_Listen(this_arg: number): number {
17832         if(!isWasmInitialized) {
17833                 throw new Error("initializeWasm() must be awaited first!");
17834         }
17835         const nativeResponseValue = wasm.TS_ChainMonitor_as_Listen(this_arg);
17836         return nativeResponseValue;
17837 }
17838         // struct LDKConfirm ChainMonitor_as_Confirm(const struct LDKChainMonitor *NONNULL_PTR this_arg);
17839 /* @internal */
17840 export function ChainMonitor_as_Confirm(this_arg: number): number {
17841         if(!isWasmInitialized) {
17842                 throw new Error("initializeWasm() must be awaited first!");
17843         }
17844         const nativeResponseValue = wasm.TS_ChainMonitor_as_Confirm(this_arg);
17845         return nativeResponseValue;
17846 }
17847         // struct LDKWatch ChainMonitor_as_Watch(const struct LDKChainMonitor *NONNULL_PTR this_arg);
17848 /* @internal */
17849 export function ChainMonitor_as_Watch(this_arg: number): number {
17850         if(!isWasmInitialized) {
17851                 throw new Error("initializeWasm() must be awaited first!");
17852         }
17853         const nativeResponseValue = wasm.TS_ChainMonitor_as_Watch(this_arg);
17854         return nativeResponseValue;
17855 }
17856         // struct LDKEventsProvider ChainMonitor_as_EventsProvider(const struct LDKChainMonitor *NONNULL_PTR this_arg);
17857 /* @internal */
17858 export function ChainMonitor_as_EventsProvider(this_arg: number): number {
17859         if(!isWasmInitialized) {
17860                 throw new Error("initializeWasm() must be awaited first!");
17861         }
17862         const nativeResponseValue = wasm.TS_ChainMonitor_as_EventsProvider(this_arg);
17863         return nativeResponseValue;
17864 }
17865         // void ChannelMonitorUpdate_free(struct LDKChannelMonitorUpdate this_obj);
17866 /* @internal */
17867 export function ChannelMonitorUpdate_free(this_obj: number): void {
17868         if(!isWasmInitialized) {
17869                 throw new Error("initializeWasm() must be awaited first!");
17870         }
17871         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_free(this_obj);
17872         // debug statements here
17873 }
17874         // uint64_t ChannelMonitorUpdate_get_update_id(const struct LDKChannelMonitorUpdate *NONNULL_PTR this_ptr);
17875 /* @internal */
17876 export function ChannelMonitorUpdate_get_update_id(this_ptr: number): bigint {
17877         if(!isWasmInitialized) {
17878                 throw new Error("initializeWasm() must be awaited first!");
17879         }
17880         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_get_update_id(this_ptr);
17881         return nativeResponseValue;
17882 }
17883         // void ChannelMonitorUpdate_set_update_id(struct LDKChannelMonitorUpdate *NONNULL_PTR this_ptr, uint64_t val);
17884 /* @internal */
17885 export function ChannelMonitorUpdate_set_update_id(this_ptr: number, val: bigint): void {
17886         if(!isWasmInitialized) {
17887                 throw new Error("initializeWasm() must be awaited first!");
17888         }
17889         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_set_update_id(this_ptr, val);
17890         // debug statements here
17891 }
17892         // uintptr_t ChannelMonitorUpdate_clone_ptr(LDKChannelMonitorUpdate *NONNULL_PTR arg);
17893 /* @internal */
17894 export function ChannelMonitorUpdate_clone_ptr(arg: number): number {
17895         if(!isWasmInitialized) {
17896                 throw new Error("initializeWasm() must be awaited first!");
17897         }
17898         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_clone_ptr(arg);
17899         return nativeResponseValue;
17900 }
17901         // struct LDKChannelMonitorUpdate ChannelMonitorUpdate_clone(const struct LDKChannelMonitorUpdate *NONNULL_PTR orig);
17902 /* @internal */
17903 export function ChannelMonitorUpdate_clone(orig: number): number {
17904         if(!isWasmInitialized) {
17905                 throw new Error("initializeWasm() must be awaited first!");
17906         }
17907         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_clone(orig);
17908         return nativeResponseValue;
17909 }
17910         // struct LDKCVec_u8Z ChannelMonitorUpdate_write(const struct LDKChannelMonitorUpdate *NONNULL_PTR obj);
17911 /* @internal */
17912 export function ChannelMonitorUpdate_write(obj: number): number {
17913         if(!isWasmInitialized) {
17914                 throw new Error("initializeWasm() must be awaited first!");
17915         }
17916         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_write(obj);
17917         return nativeResponseValue;
17918 }
17919         // struct LDKCResult_ChannelMonitorUpdateDecodeErrorZ ChannelMonitorUpdate_read(struct LDKu8slice ser);
17920 /* @internal */
17921 export function ChannelMonitorUpdate_read(ser: number): number {
17922         if(!isWasmInitialized) {
17923                 throw new Error("initializeWasm() must be awaited first!");
17924         }
17925         const nativeResponseValue = wasm.TS_ChannelMonitorUpdate_read(ser);
17926         return nativeResponseValue;
17927 }
17928         // void MonitorEvent_free(struct LDKMonitorEvent this_ptr);
17929 /* @internal */
17930 export function MonitorEvent_free(this_ptr: number): void {
17931         if(!isWasmInitialized) {
17932                 throw new Error("initializeWasm() must be awaited first!");
17933         }
17934         const nativeResponseValue = wasm.TS_MonitorEvent_free(this_ptr);
17935         // debug statements here
17936 }
17937         // uintptr_t MonitorEvent_clone_ptr(LDKMonitorEvent *NONNULL_PTR arg);
17938 /* @internal */
17939 export function MonitorEvent_clone_ptr(arg: number): number {
17940         if(!isWasmInitialized) {
17941                 throw new Error("initializeWasm() must be awaited first!");
17942         }
17943         const nativeResponseValue = wasm.TS_MonitorEvent_clone_ptr(arg);
17944         return nativeResponseValue;
17945 }
17946         // struct LDKMonitorEvent MonitorEvent_clone(const struct LDKMonitorEvent *NONNULL_PTR orig);
17947 /* @internal */
17948 export function MonitorEvent_clone(orig: number): number {
17949         if(!isWasmInitialized) {
17950                 throw new Error("initializeWasm() must be awaited first!");
17951         }
17952         const nativeResponseValue = wasm.TS_MonitorEvent_clone(orig);
17953         return nativeResponseValue;
17954 }
17955         // struct LDKMonitorEvent MonitorEvent_htlcevent(struct LDKHTLCUpdate a);
17956 /* @internal */
17957 export function MonitorEvent_htlcevent(a: number): number {
17958         if(!isWasmInitialized) {
17959                 throw new Error("initializeWasm() must be awaited first!");
17960         }
17961         const nativeResponseValue = wasm.TS_MonitorEvent_htlcevent(a);
17962         return nativeResponseValue;
17963 }
17964         // struct LDKMonitorEvent MonitorEvent_commitment_tx_confirmed(struct LDKOutPoint a);
17965 /* @internal */
17966 export function MonitorEvent_commitment_tx_confirmed(a: number): number {
17967         if(!isWasmInitialized) {
17968                 throw new Error("initializeWasm() must be awaited first!");
17969         }
17970         const nativeResponseValue = wasm.TS_MonitorEvent_commitment_tx_confirmed(a);
17971         return nativeResponseValue;
17972 }
17973         // struct LDKMonitorEvent MonitorEvent_update_completed(struct LDKOutPoint funding_txo, uint64_t monitor_update_id);
17974 /* @internal */
17975 export function MonitorEvent_update_completed(funding_txo: number, monitor_update_id: bigint): number {
17976         if(!isWasmInitialized) {
17977                 throw new Error("initializeWasm() must be awaited first!");
17978         }
17979         const nativeResponseValue = wasm.TS_MonitorEvent_update_completed(funding_txo, monitor_update_id);
17980         return nativeResponseValue;
17981 }
17982         // struct LDKMonitorEvent MonitorEvent_update_failed(struct LDKOutPoint a);
17983 /* @internal */
17984 export function MonitorEvent_update_failed(a: number): number {
17985         if(!isWasmInitialized) {
17986                 throw new Error("initializeWasm() must be awaited first!");
17987         }
17988         const nativeResponseValue = wasm.TS_MonitorEvent_update_failed(a);
17989         return nativeResponseValue;
17990 }
17991         // struct LDKCVec_u8Z MonitorEvent_write(const struct LDKMonitorEvent *NONNULL_PTR obj);
17992 /* @internal */
17993 export function MonitorEvent_write(obj: number): number {
17994         if(!isWasmInitialized) {
17995                 throw new Error("initializeWasm() must be awaited first!");
17996         }
17997         const nativeResponseValue = wasm.TS_MonitorEvent_write(obj);
17998         return nativeResponseValue;
17999 }
18000         // struct LDKCResult_COption_MonitorEventZDecodeErrorZ MonitorEvent_read(struct LDKu8slice ser);
18001 /* @internal */
18002 export function MonitorEvent_read(ser: number): number {
18003         if(!isWasmInitialized) {
18004                 throw new Error("initializeWasm() must be awaited first!");
18005         }
18006         const nativeResponseValue = wasm.TS_MonitorEvent_read(ser);
18007         return nativeResponseValue;
18008 }
18009         // void HTLCUpdate_free(struct LDKHTLCUpdate this_obj);
18010 /* @internal */
18011 export function HTLCUpdate_free(this_obj: number): void {
18012         if(!isWasmInitialized) {
18013                 throw new Error("initializeWasm() must be awaited first!");
18014         }
18015         const nativeResponseValue = wasm.TS_HTLCUpdate_free(this_obj);
18016         // debug statements here
18017 }
18018         // uintptr_t HTLCUpdate_clone_ptr(LDKHTLCUpdate *NONNULL_PTR arg);
18019 /* @internal */
18020 export function HTLCUpdate_clone_ptr(arg: number): number {
18021         if(!isWasmInitialized) {
18022                 throw new Error("initializeWasm() must be awaited first!");
18023         }
18024         const nativeResponseValue = wasm.TS_HTLCUpdate_clone_ptr(arg);
18025         return nativeResponseValue;
18026 }
18027         // struct LDKHTLCUpdate HTLCUpdate_clone(const struct LDKHTLCUpdate *NONNULL_PTR orig);
18028 /* @internal */
18029 export function HTLCUpdate_clone(orig: number): number {
18030         if(!isWasmInitialized) {
18031                 throw new Error("initializeWasm() must be awaited first!");
18032         }
18033         const nativeResponseValue = wasm.TS_HTLCUpdate_clone(orig);
18034         return nativeResponseValue;
18035 }
18036         // struct LDKCVec_u8Z HTLCUpdate_write(const struct LDKHTLCUpdate *NONNULL_PTR obj);
18037 /* @internal */
18038 export function HTLCUpdate_write(obj: number): number {
18039         if(!isWasmInitialized) {
18040                 throw new Error("initializeWasm() must be awaited first!");
18041         }
18042         const nativeResponseValue = wasm.TS_HTLCUpdate_write(obj);
18043         return nativeResponseValue;
18044 }
18045         // struct LDKCResult_HTLCUpdateDecodeErrorZ HTLCUpdate_read(struct LDKu8slice ser);
18046 /* @internal */
18047 export function HTLCUpdate_read(ser: number): number {
18048         if(!isWasmInitialized) {
18049                 throw new Error("initializeWasm() must be awaited first!");
18050         }
18051         const nativeResponseValue = wasm.TS_HTLCUpdate_read(ser);
18052         return nativeResponseValue;
18053 }
18054         // void Balance_free(struct LDKBalance this_ptr);
18055 /* @internal */
18056 export function Balance_free(this_ptr: number): void {
18057         if(!isWasmInitialized) {
18058                 throw new Error("initializeWasm() must be awaited first!");
18059         }
18060         const nativeResponseValue = wasm.TS_Balance_free(this_ptr);
18061         // debug statements here
18062 }
18063         // uintptr_t Balance_clone_ptr(LDKBalance *NONNULL_PTR arg);
18064 /* @internal */
18065 export function Balance_clone_ptr(arg: number): number {
18066         if(!isWasmInitialized) {
18067                 throw new Error("initializeWasm() must be awaited first!");
18068         }
18069         const nativeResponseValue = wasm.TS_Balance_clone_ptr(arg);
18070         return nativeResponseValue;
18071 }
18072         // struct LDKBalance Balance_clone(const struct LDKBalance *NONNULL_PTR orig);
18073 /* @internal */
18074 export function Balance_clone(orig: number): number {
18075         if(!isWasmInitialized) {
18076                 throw new Error("initializeWasm() must be awaited first!");
18077         }
18078         const nativeResponseValue = wasm.TS_Balance_clone(orig);
18079         return nativeResponseValue;
18080 }
18081         // struct LDKBalance Balance_claimable_on_channel_close(uint64_t claimable_amount_satoshis);
18082 /* @internal */
18083 export function Balance_claimable_on_channel_close(claimable_amount_satoshis: bigint): number {
18084         if(!isWasmInitialized) {
18085                 throw new Error("initializeWasm() must be awaited first!");
18086         }
18087         const nativeResponseValue = wasm.TS_Balance_claimable_on_channel_close(claimable_amount_satoshis);
18088         return nativeResponseValue;
18089 }
18090         // struct LDKBalance Balance_claimable_awaiting_confirmations(uint64_t claimable_amount_satoshis, uint32_t confirmation_height);
18091 /* @internal */
18092 export function Balance_claimable_awaiting_confirmations(claimable_amount_satoshis: bigint, confirmation_height: number): number {
18093         if(!isWasmInitialized) {
18094                 throw new Error("initializeWasm() must be awaited first!");
18095         }
18096         const nativeResponseValue = wasm.TS_Balance_claimable_awaiting_confirmations(claimable_amount_satoshis, confirmation_height);
18097         return nativeResponseValue;
18098 }
18099         // struct LDKBalance Balance_contentious_claimable(uint64_t claimable_amount_satoshis, uint32_t timeout_height);
18100 /* @internal */
18101 export function Balance_contentious_claimable(claimable_amount_satoshis: bigint, timeout_height: number): number {
18102         if(!isWasmInitialized) {
18103                 throw new Error("initializeWasm() must be awaited first!");
18104         }
18105         const nativeResponseValue = wasm.TS_Balance_contentious_claimable(claimable_amount_satoshis, timeout_height);
18106         return nativeResponseValue;
18107 }
18108         // struct LDKBalance Balance_maybe_claimable_htlcawaiting_timeout(uint64_t claimable_amount_satoshis, uint32_t claimable_height);
18109 /* @internal */
18110 export function Balance_maybe_claimable_htlcawaiting_timeout(claimable_amount_satoshis: bigint, claimable_height: number): number {
18111         if(!isWasmInitialized) {
18112                 throw new Error("initializeWasm() must be awaited first!");
18113         }
18114         const nativeResponseValue = wasm.TS_Balance_maybe_claimable_htlcawaiting_timeout(claimable_amount_satoshis, claimable_height);
18115         return nativeResponseValue;
18116 }
18117         // bool Balance_eq(const struct LDKBalance *NONNULL_PTR a, const struct LDKBalance *NONNULL_PTR b);
18118 /* @internal */
18119 export function Balance_eq(a: number, b: number): boolean {
18120         if(!isWasmInitialized) {
18121                 throw new Error("initializeWasm() must be awaited first!");
18122         }
18123         const nativeResponseValue = wasm.TS_Balance_eq(a, b);
18124         return nativeResponseValue;
18125 }
18126         // void ChannelMonitor_free(struct LDKChannelMonitor this_obj);
18127 /* @internal */
18128 export function ChannelMonitor_free(this_obj: number): void {
18129         if(!isWasmInitialized) {
18130                 throw new Error("initializeWasm() must be awaited first!");
18131         }
18132         const nativeResponseValue = wasm.TS_ChannelMonitor_free(this_obj);
18133         // debug statements here
18134 }
18135         // uintptr_t ChannelMonitor_clone_ptr(LDKChannelMonitor *NONNULL_PTR arg);
18136 /* @internal */
18137 export function ChannelMonitor_clone_ptr(arg: number): number {
18138         if(!isWasmInitialized) {
18139                 throw new Error("initializeWasm() must be awaited first!");
18140         }
18141         const nativeResponseValue = wasm.TS_ChannelMonitor_clone_ptr(arg);
18142         return nativeResponseValue;
18143 }
18144         // struct LDKChannelMonitor ChannelMonitor_clone(const struct LDKChannelMonitor *NONNULL_PTR orig);
18145 /* @internal */
18146 export function ChannelMonitor_clone(orig: number): number {
18147         if(!isWasmInitialized) {
18148                 throw new Error("initializeWasm() must be awaited first!");
18149         }
18150         const nativeResponseValue = wasm.TS_ChannelMonitor_clone(orig);
18151         return nativeResponseValue;
18152 }
18153         // struct LDKCVec_u8Z ChannelMonitor_write(const struct LDKChannelMonitor *NONNULL_PTR obj);
18154 /* @internal */
18155 export function ChannelMonitor_write(obj: number): number {
18156         if(!isWasmInitialized) {
18157                 throw new Error("initializeWasm() must be awaited first!");
18158         }
18159         const nativeResponseValue = wasm.TS_ChannelMonitor_write(obj);
18160         return nativeResponseValue;
18161 }
18162         // MUST_USE_RES struct LDKCResult_NoneNoneZ ChannelMonitor_update_monitor(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKChannelMonitorUpdate *NONNULL_PTR updates, const struct LDKBroadcasterInterface *NONNULL_PTR broadcaster, struct LDKFeeEstimator fee_estimator, const struct LDKLogger *NONNULL_PTR logger);
18163 /* @internal */
18164 export function ChannelMonitor_update_monitor(this_arg: number, updates: number, broadcaster: number, fee_estimator: number, logger: number): number {
18165         if(!isWasmInitialized) {
18166                 throw new Error("initializeWasm() must be awaited first!");
18167         }
18168         const nativeResponseValue = wasm.TS_ChannelMonitor_update_monitor(this_arg, updates, broadcaster, fee_estimator, logger);
18169         return nativeResponseValue;
18170 }
18171         // MUST_USE_RES uint64_t ChannelMonitor_get_latest_update_id(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18172 /* @internal */
18173 export function ChannelMonitor_get_latest_update_id(this_arg: number): bigint {
18174         if(!isWasmInitialized) {
18175                 throw new Error("initializeWasm() must be awaited first!");
18176         }
18177         const nativeResponseValue = wasm.TS_ChannelMonitor_get_latest_update_id(this_arg);
18178         return nativeResponseValue;
18179 }
18180         // MUST_USE_RES struct LDKC2Tuple_OutPointScriptZ ChannelMonitor_get_funding_txo(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18181 /* @internal */
18182 export function ChannelMonitor_get_funding_txo(this_arg: number): number {
18183         if(!isWasmInitialized) {
18184                 throw new Error("initializeWasm() must be awaited first!");
18185         }
18186         const nativeResponseValue = wasm.TS_ChannelMonitor_get_funding_txo(this_arg);
18187         return nativeResponseValue;
18188 }
18189         // MUST_USE_RES struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32ScriptZZZZ ChannelMonitor_get_outputs_to_watch(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18190 /* @internal */
18191 export function ChannelMonitor_get_outputs_to_watch(this_arg: number): number {
18192         if(!isWasmInitialized) {
18193                 throw new Error("initializeWasm() must be awaited first!");
18194         }
18195         const nativeResponseValue = wasm.TS_ChannelMonitor_get_outputs_to_watch(this_arg);
18196         return nativeResponseValue;
18197 }
18198         // void ChannelMonitor_load_outputs_to_watch(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKFilter *NONNULL_PTR filter);
18199 /* @internal */
18200 export function ChannelMonitor_load_outputs_to_watch(this_arg: number, filter: number): void {
18201         if(!isWasmInitialized) {
18202                 throw new Error("initializeWasm() must be awaited first!");
18203         }
18204         const nativeResponseValue = wasm.TS_ChannelMonitor_load_outputs_to_watch(this_arg, filter);
18205         // debug statements here
18206 }
18207         // MUST_USE_RES struct LDKCVec_MonitorEventZ ChannelMonitor_get_and_clear_pending_monitor_events(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18208 /* @internal */
18209 export function ChannelMonitor_get_and_clear_pending_monitor_events(this_arg: number): number {
18210         if(!isWasmInitialized) {
18211                 throw new Error("initializeWasm() must be awaited first!");
18212         }
18213         const nativeResponseValue = wasm.TS_ChannelMonitor_get_and_clear_pending_monitor_events(this_arg);
18214         return nativeResponseValue;
18215 }
18216         // MUST_USE_RES struct LDKCVec_EventZ ChannelMonitor_get_and_clear_pending_events(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18217 /* @internal */
18218 export function ChannelMonitor_get_and_clear_pending_events(this_arg: number): number {
18219         if(!isWasmInitialized) {
18220                 throw new Error("initializeWasm() must be awaited first!");
18221         }
18222         const nativeResponseValue = wasm.TS_ChannelMonitor_get_and_clear_pending_events(this_arg);
18223         return nativeResponseValue;
18224 }
18225         // MUST_USE_RES struct LDKPublicKey ChannelMonitor_get_counterparty_node_id(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18226 /* @internal */
18227 export function ChannelMonitor_get_counterparty_node_id(this_arg: number): number {
18228         if(!isWasmInitialized) {
18229                 throw new Error("initializeWasm() must be awaited first!");
18230         }
18231         const nativeResponseValue = wasm.TS_ChannelMonitor_get_counterparty_node_id(this_arg);
18232         return nativeResponseValue;
18233 }
18234         // MUST_USE_RES struct LDKCVec_TransactionZ ChannelMonitor_get_latest_holder_commitment_txn(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const struct LDKLogger *NONNULL_PTR logger);
18235 /* @internal */
18236 export function ChannelMonitor_get_latest_holder_commitment_txn(this_arg: number, logger: number): number {
18237         if(!isWasmInitialized) {
18238                 throw new Error("initializeWasm() must be awaited first!");
18239         }
18240         const nativeResponseValue = wasm.TS_ChannelMonitor_get_latest_holder_commitment_txn(this_arg, logger);
18241         return nativeResponseValue;
18242 }
18243         // MUST_USE_RES struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_block_connected(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
18244 /* @internal */
18245 export function ChannelMonitor_block_connected(this_arg: number, header: number, txdata: number, height: number, broadcaster: number, fee_estimator: number, logger: number): number {
18246         if(!isWasmInitialized) {
18247                 throw new Error("initializeWasm() must be awaited first!");
18248         }
18249         const nativeResponseValue = wasm.TS_ChannelMonitor_block_connected(this_arg, header, txdata, height, broadcaster, fee_estimator, logger);
18250         return nativeResponseValue;
18251 }
18252         // void ChannelMonitor_block_disconnected(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
18253 /* @internal */
18254 export function ChannelMonitor_block_disconnected(this_arg: number, header: number, height: number, broadcaster: number, fee_estimator: number, logger: number): void {
18255         if(!isWasmInitialized) {
18256                 throw new Error("initializeWasm() must be awaited first!");
18257         }
18258         const nativeResponseValue = wasm.TS_ChannelMonitor_block_disconnected(this_arg, header, height, broadcaster, fee_estimator, logger);
18259         // debug statements here
18260 }
18261         // MUST_USE_RES struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_transactions_confirmed(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], struct LDKCVec_C2Tuple_usizeTransactionZZ txdata, uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
18262 /* @internal */
18263 export function ChannelMonitor_transactions_confirmed(this_arg: number, header: number, txdata: number, height: number, broadcaster: number, fee_estimator: number, logger: number): number {
18264         if(!isWasmInitialized) {
18265                 throw new Error("initializeWasm() must be awaited first!");
18266         }
18267         const nativeResponseValue = wasm.TS_ChannelMonitor_transactions_confirmed(this_arg, header, txdata, height, broadcaster, fee_estimator, logger);
18268         return nativeResponseValue;
18269 }
18270         // void ChannelMonitor_transaction_unconfirmed(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*txid)[32], struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
18271 /* @internal */
18272 export function ChannelMonitor_transaction_unconfirmed(this_arg: number, txid: number, broadcaster: number, fee_estimator: number, logger: number): void {
18273         if(!isWasmInitialized) {
18274                 throw new Error("initializeWasm() must be awaited first!");
18275         }
18276         const nativeResponseValue = wasm.TS_ChannelMonitor_transaction_unconfirmed(this_arg, txid, broadcaster, fee_estimator, logger);
18277         // debug statements here
18278 }
18279         // MUST_USE_RES struct LDKCVec_C2Tuple_TxidCVec_C2Tuple_u32TxOutZZZZ ChannelMonitor_best_block_updated(const struct LDKChannelMonitor *NONNULL_PTR this_arg, const uint8_t (*header)[80], uint32_t height, struct LDKBroadcasterInterface broadcaster, struct LDKFeeEstimator fee_estimator, struct LDKLogger logger);
18280 /* @internal */
18281 export function ChannelMonitor_best_block_updated(this_arg: number, header: number, height: number, broadcaster: number, fee_estimator: number, logger: number): number {
18282         if(!isWasmInitialized) {
18283                 throw new Error("initializeWasm() must be awaited first!");
18284         }
18285         const nativeResponseValue = wasm.TS_ChannelMonitor_best_block_updated(this_arg, header, height, broadcaster, fee_estimator, logger);
18286         return nativeResponseValue;
18287 }
18288         // MUST_USE_RES struct LDKCVec_TxidZ ChannelMonitor_get_relevant_txids(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18289 /* @internal */
18290 export function ChannelMonitor_get_relevant_txids(this_arg: number): number {
18291         if(!isWasmInitialized) {
18292                 throw new Error("initializeWasm() must be awaited first!");
18293         }
18294         const nativeResponseValue = wasm.TS_ChannelMonitor_get_relevant_txids(this_arg);
18295         return nativeResponseValue;
18296 }
18297         // MUST_USE_RES struct LDKBestBlock ChannelMonitor_current_best_block(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18298 /* @internal */
18299 export function ChannelMonitor_current_best_block(this_arg: number): number {
18300         if(!isWasmInitialized) {
18301                 throw new Error("initializeWasm() must be awaited first!");
18302         }
18303         const nativeResponseValue = wasm.TS_ChannelMonitor_current_best_block(this_arg);
18304         return nativeResponseValue;
18305 }
18306         // MUST_USE_RES struct LDKCVec_BalanceZ ChannelMonitor_get_claimable_balances(const struct LDKChannelMonitor *NONNULL_PTR this_arg);
18307 /* @internal */
18308 export function ChannelMonitor_get_claimable_balances(this_arg: number): number {
18309         if(!isWasmInitialized) {
18310                 throw new Error("initializeWasm() must be awaited first!");
18311         }
18312         const nativeResponseValue = wasm.TS_ChannelMonitor_get_claimable_balances(this_arg);
18313         return nativeResponseValue;
18314 }
18315         // struct LDKCResult_C2Tuple_BlockHashChannelMonitorZDecodeErrorZ C2Tuple_BlockHashChannelMonitorZ_read(struct LDKu8slice ser, const struct LDKKeysInterface *NONNULL_PTR arg);
18316 /* @internal */
18317 export function C2Tuple_BlockHashChannelMonitorZ_read(ser: number, arg: number): number {
18318         if(!isWasmInitialized) {
18319                 throw new Error("initializeWasm() must be awaited first!");
18320         }
18321         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelMonitorZ_read(ser, arg);
18322         return nativeResponseValue;
18323 }
18324         // void OutPoint_free(struct LDKOutPoint this_obj);
18325 /* @internal */
18326 export function OutPoint_free(this_obj: number): void {
18327         if(!isWasmInitialized) {
18328                 throw new Error("initializeWasm() must be awaited first!");
18329         }
18330         const nativeResponseValue = wasm.TS_OutPoint_free(this_obj);
18331         // debug statements here
18332 }
18333         // const uint8_t (*OutPoint_get_txid(const struct LDKOutPoint *NONNULL_PTR this_ptr))[32];
18334 /* @internal */
18335 export function OutPoint_get_txid(this_ptr: number): number {
18336         if(!isWasmInitialized) {
18337                 throw new Error("initializeWasm() must be awaited first!");
18338         }
18339         const nativeResponseValue = wasm.TS_OutPoint_get_txid(this_ptr);
18340         return nativeResponseValue;
18341 }
18342         // void OutPoint_set_txid(struct LDKOutPoint *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
18343 /* @internal */
18344 export function OutPoint_set_txid(this_ptr: number, val: number): void {
18345         if(!isWasmInitialized) {
18346                 throw new Error("initializeWasm() must be awaited first!");
18347         }
18348         const nativeResponseValue = wasm.TS_OutPoint_set_txid(this_ptr, val);
18349         // debug statements here
18350 }
18351         // uint16_t OutPoint_get_index(const struct LDKOutPoint *NONNULL_PTR this_ptr);
18352 /* @internal */
18353 export function OutPoint_get_index(this_ptr: number): number {
18354         if(!isWasmInitialized) {
18355                 throw new Error("initializeWasm() must be awaited first!");
18356         }
18357         const nativeResponseValue = wasm.TS_OutPoint_get_index(this_ptr);
18358         return nativeResponseValue;
18359 }
18360         // void OutPoint_set_index(struct LDKOutPoint *NONNULL_PTR this_ptr, uint16_t val);
18361 /* @internal */
18362 export function OutPoint_set_index(this_ptr: number, val: number): void {
18363         if(!isWasmInitialized) {
18364                 throw new Error("initializeWasm() must be awaited first!");
18365         }
18366         const nativeResponseValue = wasm.TS_OutPoint_set_index(this_ptr, val);
18367         // debug statements here
18368 }
18369         // MUST_USE_RES struct LDKOutPoint OutPoint_new(struct LDKThirtyTwoBytes txid_arg, uint16_t index_arg);
18370 /* @internal */
18371 export function OutPoint_new(txid_arg: number, index_arg: number): number {
18372         if(!isWasmInitialized) {
18373                 throw new Error("initializeWasm() must be awaited first!");
18374         }
18375         const nativeResponseValue = wasm.TS_OutPoint_new(txid_arg, index_arg);
18376         return nativeResponseValue;
18377 }
18378         // uintptr_t OutPoint_clone_ptr(LDKOutPoint *NONNULL_PTR arg);
18379 /* @internal */
18380 export function OutPoint_clone_ptr(arg: number): number {
18381         if(!isWasmInitialized) {
18382                 throw new Error("initializeWasm() must be awaited first!");
18383         }
18384         const nativeResponseValue = wasm.TS_OutPoint_clone_ptr(arg);
18385         return nativeResponseValue;
18386 }
18387         // struct LDKOutPoint OutPoint_clone(const struct LDKOutPoint *NONNULL_PTR orig);
18388 /* @internal */
18389 export function OutPoint_clone(orig: number): number {
18390         if(!isWasmInitialized) {
18391                 throw new Error("initializeWasm() must be awaited first!");
18392         }
18393         const nativeResponseValue = wasm.TS_OutPoint_clone(orig);
18394         return nativeResponseValue;
18395 }
18396         // bool OutPoint_eq(const struct LDKOutPoint *NONNULL_PTR a, const struct LDKOutPoint *NONNULL_PTR b);
18397 /* @internal */
18398 export function OutPoint_eq(a: number, b: number): boolean {
18399         if(!isWasmInitialized) {
18400                 throw new Error("initializeWasm() must be awaited first!");
18401         }
18402         const nativeResponseValue = wasm.TS_OutPoint_eq(a, b);
18403         return nativeResponseValue;
18404 }
18405         // uint64_t OutPoint_hash(const struct LDKOutPoint *NONNULL_PTR o);
18406 /* @internal */
18407 export function OutPoint_hash(o: number): bigint {
18408         if(!isWasmInitialized) {
18409                 throw new Error("initializeWasm() must be awaited first!");
18410         }
18411         const nativeResponseValue = wasm.TS_OutPoint_hash(o);
18412         return nativeResponseValue;
18413 }
18414         // MUST_USE_RES struct LDKThirtyTwoBytes OutPoint_to_channel_id(const struct LDKOutPoint *NONNULL_PTR this_arg);
18415 /* @internal */
18416 export function OutPoint_to_channel_id(this_arg: number): number {
18417         if(!isWasmInitialized) {
18418                 throw new Error("initializeWasm() must be awaited first!");
18419         }
18420         const nativeResponseValue = wasm.TS_OutPoint_to_channel_id(this_arg);
18421         return nativeResponseValue;
18422 }
18423         // struct LDKCVec_u8Z OutPoint_write(const struct LDKOutPoint *NONNULL_PTR obj);
18424 /* @internal */
18425 export function OutPoint_write(obj: number): number {
18426         if(!isWasmInitialized) {
18427                 throw new Error("initializeWasm() must be awaited first!");
18428         }
18429         const nativeResponseValue = wasm.TS_OutPoint_write(obj);
18430         return nativeResponseValue;
18431 }
18432         // struct LDKCResult_OutPointDecodeErrorZ OutPoint_read(struct LDKu8slice ser);
18433 /* @internal */
18434 export function OutPoint_read(ser: number): number {
18435         if(!isWasmInitialized) {
18436                 throw new Error("initializeWasm() must be awaited first!");
18437         }
18438         const nativeResponseValue = wasm.TS_OutPoint_read(ser);
18439         return nativeResponseValue;
18440 }
18441         // void DelayedPaymentOutputDescriptor_free(struct LDKDelayedPaymentOutputDescriptor this_obj);
18442 /* @internal */
18443 export function DelayedPaymentOutputDescriptor_free(this_obj: number): void {
18444         if(!isWasmInitialized) {
18445                 throw new Error("initializeWasm() must be awaited first!");
18446         }
18447         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_free(this_obj);
18448         // debug statements here
18449 }
18450         // struct LDKOutPoint DelayedPaymentOutputDescriptor_get_outpoint(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18451 /* @internal */
18452 export function DelayedPaymentOutputDescriptor_get_outpoint(this_ptr: number): number {
18453         if(!isWasmInitialized) {
18454                 throw new Error("initializeWasm() must be awaited first!");
18455         }
18456         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_outpoint(this_ptr);
18457         return nativeResponseValue;
18458 }
18459         // void DelayedPaymentOutputDescriptor_set_outpoint(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKOutPoint val);
18460 /* @internal */
18461 export function DelayedPaymentOutputDescriptor_set_outpoint(this_ptr: number, val: number): void {
18462         if(!isWasmInitialized) {
18463                 throw new Error("initializeWasm() must be awaited first!");
18464         }
18465         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_outpoint(this_ptr, val);
18466         // debug statements here
18467 }
18468         // struct LDKPublicKey DelayedPaymentOutputDescriptor_get_per_commitment_point(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18469 /* @internal */
18470 export function DelayedPaymentOutputDescriptor_get_per_commitment_point(this_ptr: number): number {
18471         if(!isWasmInitialized) {
18472                 throw new Error("initializeWasm() must be awaited first!");
18473         }
18474         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_per_commitment_point(this_ptr);
18475         return nativeResponseValue;
18476 }
18477         // void DelayedPaymentOutputDescriptor_set_per_commitment_point(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKPublicKey val);
18478 /* @internal */
18479 export function DelayedPaymentOutputDescriptor_set_per_commitment_point(this_ptr: number, val: number): void {
18480         if(!isWasmInitialized) {
18481                 throw new Error("initializeWasm() must be awaited first!");
18482         }
18483         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_per_commitment_point(this_ptr, val);
18484         // debug statements here
18485 }
18486         // uint16_t DelayedPaymentOutputDescriptor_get_to_self_delay(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18487 /* @internal */
18488 export function DelayedPaymentOutputDescriptor_get_to_self_delay(this_ptr: number): number {
18489         if(!isWasmInitialized) {
18490                 throw new Error("initializeWasm() must be awaited first!");
18491         }
18492         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_to_self_delay(this_ptr);
18493         return nativeResponseValue;
18494 }
18495         // void DelayedPaymentOutputDescriptor_set_to_self_delay(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint16_t val);
18496 /* @internal */
18497 export function DelayedPaymentOutputDescriptor_set_to_self_delay(this_ptr: number, val: number): void {
18498         if(!isWasmInitialized) {
18499                 throw new Error("initializeWasm() must be awaited first!");
18500         }
18501         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_to_self_delay(this_ptr, val);
18502         // debug statements here
18503 }
18504         // struct LDKTxOut DelayedPaymentOutputDescriptor_get_output(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18505 /* @internal */
18506 export function DelayedPaymentOutputDescriptor_get_output(this_ptr: number): number {
18507         if(!isWasmInitialized) {
18508                 throw new Error("initializeWasm() must be awaited first!");
18509         }
18510         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_output(this_ptr);
18511         return nativeResponseValue;
18512 }
18513         // void DelayedPaymentOutputDescriptor_set_output(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKTxOut val);
18514 /* @internal */
18515 export function DelayedPaymentOutputDescriptor_set_output(this_ptr: number, val: number): void {
18516         if(!isWasmInitialized) {
18517                 throw new Error("initializeWasm() must be awaited first!");
18518         }
18519         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_output(this_ptr, val);
18520         // debug statements here
18521 }
18522         // struct LDKPublicKey DelayedPaymentOutputDescriptor_get_revocation_pubkey(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18523 /* @internal */
18524 export function DelayedPaymentOutputDescriptor_get_revocation_pubkey(this_ptr: number): number {
18525         if(!isWasmInitialized) {
18526                 throw new Error("initializeWasm() must be awaited first!");
18527         }
18528         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_revocation_pubkey(this_ptr);
18529         return nativeResponseValue;
18530 }
18531         // void DelayedPaymentOutputDescriptor_set_revocation_pubkey(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKPublicKey val);
18532 /* @internal */
18533 export function DelayedPaymentOutputDescriptor_set_revocation_pubkey(this_ptr: number, val: number): void {
18534         if(!isWasmInitialized) {
18535                 throw new Error("initializeWasm() must be awaited first!");
18536         }
18537         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_revocation_pubkey(this_ptr, val);
18538         // debug statements here
18539 }
18540         // const uint8_t (*DelayedPaymentOutputDescriptor_get_channel_keys_id(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr))[32];
18541 /* @internal */
18542 export function DelayedPaymentOutputDescriptor_get_channel_keys_id(this_ptr: number): number {
18543         if(!isWasmInitialized) {
18544                 throw new Error("initializeWasm() must be awaited first!");
18545         }
18546         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_channel_keys_id(this_ptr);
18547         return nativeResponseValue;
18548 }
18549         // void DelayedPaymentOutputDescriptor_set_channel_keys_id(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
18550 /* @internal */
18551 export function DelayedPaymentOutputDescriptor_set_channel_keys_id(this_ptr: number, val: number): void {
18552         if(!isWasmInitialized) {
18553                 throw new Error("initializeWasm() must be awaited first!");
18554         }
18555         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_channel_keys_id(this_ptr, val);
18556         // debug statements here
18557 }
18558         // uint64_t DelayedPaymentOutputDescriptor_get_channel_value_satoshis(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18559 /* @internal */
18560 export function DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr: number): bigint {
18561         if(!isWasmInitialized) {
18562                 throw new Error("initializeWasm() must be awaited first!");
18563         }
18564         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr);
18565         return nativeResponseValue;
18566 }
18567         // void DelayedPaymentOutputDescriptor_set_channel_value_satoshis(struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint64_t val);
18568 /* @internal */
18569 export function DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr: number, val: bigint): void {
18570         if(!isWasmInitialized) {
18571                 throw new Error("initializeWasm() must be awaited first!");
18572         }
18573         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr, val);
18574         // debug statements here
18575 }
18576         // MUST_USE_RES struct LDKDelayedPaymentOutputDescriptor DelayedPaymentOutputDescriptor_new(struct LDKOutPoint outpoint_arg, struct LDKPublicKey per_commitment_point_arg, uint16_t to_self_delay_arg, struct LDKTxOut output_arg, struct LDKPublicKey revocation_pubkey_arg, struct LDKThirtyTwoBytes channel_keys_id_arg, uint64_t channel_value_satoshis_arg);
18577 /* @internal */
18578 export function DelayedPaymentOutputDescriptor_new(outpoint_arg: number, per_commitment_point_arg: number, to_self_delay_arg: number, output_arg: number, revocation_pubkey_arg: number, channel_keys_id_arg: number, channel_value_satoshis_arg: bigint): number {
18579         if(!isWasmInitialized) {
18580                 throw new Error("initializeWasm() must be awaited first!");
18581         }
18582         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_new(outpoint_arg, per_commitment_point_arg, to_self_delay_arg, output_arg, revocation_pubkey_arg, channel_keys_id_arg, channel_value_satoshis_arg);
18583         return nativeResponseValue;
18584 }
18585         // uintptr_t DelayedPaymentOutputDescriptor_clone_ptr(LDKDelayedPaymentOutputDescriptor *NONNULL_PTR arg);
18586 /* @internal */
18587 export function DelayedPaymentOutputDescriptor_clone_ptr(arg: number): number {
18588         if(!isWasmInitialized) {
18589                 throw new Error("initializeWasm() must be awaited first!");
18590         }
18591         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_clone_ptr(arg);
18592         return nativeResponseValue;
18593 }
18594         // struct LDKDelayedPaymentOutputDescriptor DelayedPaymentOutputDescriptor_clone(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR orig);
18595 /* @internal */
18596 export function DelayedPaymentOutputDescriptor_clone(orig: number): number {
18597         if(!isWasmInitialized) {
18598                 throw new Error("initializeWasm() must be awaited first!");
18599         }
18600         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_clone(orig);
18601         return nativeResponseValue;
18602 }
18603         // struct LDKCVec_u8Z DelayedPaymentOutputDescriptor_write(const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR obj);
18604 /* @internal */
18605 export function DelayedPaymentOutputDescriptor_write(obj: number): number {
18606         if(!isWasmInitialized) {
18607                 throw new Error("initializeWasm() must be awaited first!");
18608         }
18609         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_write(obj);
18610         return nativeResponseValue;
18611 }
18612         // struct LDKCResult_DelayedPaymentOutputDescriptorDecodeErrorZ DelayedPaymentOutputDescriptor_read(struct LDKu8slice ser);
18613 /* @internal */
18614 export function DelayedPaymentOutputDescriptor_read(ser: number): number {
18615         if(!isWasmInitialized) {
18616                 throw new Error("initializeWasm() must be awaited first!");
18617         }
18618         const nativeResponseValue = wasm.TS_DelayedPaymentOutputDescriptor_read(ser);
18619         return nativeResponseValue;
18620 }
18621         // void StaticPaymentOutputDescriptor_free(struct LDKStaticPaymentOutputDescriptor this_obj);
18622 /* @internal */
18623 export function StaticPaymentOutputDescriptor_free(this_obj: number): void {
18624         if(!isWasmInitialized) {
18625                 throw new Error("initializeWasm() must be awaited first!");
18626         }
18627         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_free(this_obj);
18628         // debug statements here
18629 }
18630         // struct LDKOutPoint StaticPaymentOutputDescriptor_get_outpoint(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18631 /* @internal */
18632 export function StaticPaymentOutputDescriptor_get_outpoint(this_ptr: number): number {
18633         if(!isWasmInitialized) {
18634                 throw new Error("initializeWasm() must be awaited first!");
18635         }
18636         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_get_outpoint(this_ptr);
18637         return nativeResponseValue;
18638 }
18639         // void StaticPaymentOutputDescriptor_set_outpoint(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKOutPoint val);
18640 /* @internal */
18641 export function StaticPaymentOutputDescriptor_set_outpoint(this_ptr: number, val: number): void {
18642         if(!isWasmInitialized) {
18643                 throw new Error("initializeWasm() must be awaited first!");
18644         }
18645         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_set_outpoint(this_ptr, val);
18646         // debug statements here
18647 }
18648         // struct LDKTxOut StaticPaymentOutputDescriptor_get_output(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18649 /* @internal */
18650 export function StaticPaymentOutputDescriptor_get_output(this_ptr: number): number {
18651         if(!isWasmInitialized) {
18652                 throw new Error("initializeWasm() must be awaited first!");
18653         }
18654         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_get_output(this_ptr);
18655         return nativeResponseValue;
18656 }
18657         // void StaticPaymentOutputDescriptor_set_output(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKTxOut val);
18658 /* @internal */
18659 export function StaticPaymentOutputDescriptor_set_output(this_ptr: number, val: number): void {
18660         if(!isWasmInitialized) {
18661                 throw new Error("initializeWasm() must be awaited first!");
18662         }
18663         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_set_output(this_ptr, val);
18664         // debug statements here
18665 }
18666         // const uint8_t (*StaticPaymentOutputDescriptor_get_channel_keys_id(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr))[32];
18667 /* @internal */
18668 export function StaticPaymentOutputDescriptor_get_channel_keys_id(this_ptr: number): number {
18669         if(!isWasmInitialized) {
18670                 throw new Error("initializeWasm() must be awaited first!");
18671         }
18672         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_get_channel_keys_id(this_ptr);
18673         return nativeResponseValue;
18674 }
18675         // void StaticPaymentOutputDescriptor_set_channel_keys_id(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
18676 /* @internal */
18677 export function StaticPaymentOutputDescriptor_set_channel_keys_id(this_ptr: number, val: number): void {
18678         if(!isWasmInitialized) {
18679                 throw new Error("initializeWasm() must be awaited first!");
18680         }
18681         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_set_channel_keys_id(this_ptr, val);
18682         // debug statements here
18683 }
18684         // uint64_t StaticPaymentOutputDescriptor_get_channel_value_satoshis(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr);
18685 /* @internal */
18686 export function StaticPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr: number): bigint {
18687         if(!isWasmInitialized) {
18688                 throw new Error("initializeWasm() must be awaited first!");
18689         }
18690         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_get_channel_value_satoshis(this_ptr);
18691         return nativeResponseValue;
18692 }
18693         // void StaticPaymentOutputDescriptor_set_channel_value_satoshis(struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR this_ptr, uint64_t val);
18694 /* @internal */
18695 export function StaticPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr: number, val: bigint): void {
18696         if(!isWasmInitialized) {
18697                 throw new Error("initializeWasm() must be awaited first!");
18698         }
18699         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_set_channel_value_satoshis(this_ptr, val);
18700         // debug statements here
18701 }
18702         // MUST_USE_RES struct LDKStaticPaymentOutputDescriptor StaticPaymentOutputDescriptor_new(struct LDKOutPoint outpoint_arg, struct LDKTxOut output_arg, struct LDKThirtyTwoBytes channel_keys_id_arg, uint64_t channel_value_satoshis_arg);
18703 /* @internal */
18704 export function StaticPaymentOutputDescriptor_new(outpoint_arg: number, output_arg: number, channel_keys_id_arg: number, channel_value_satoshis_arg: bigint): number {
18705         if(!isWasmInitialized) {
18706                 throw new Error("initializeWasm() must be awaited first!");
18707         }
18708         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_new(outpoint_arg, output_arg, channel_keys_id_arg, channel_value_satoshis_arg);
18709         return nativeResponseValue;
18710 }
18711         // uintptr_t StaticPaymentOutputDescriptor_clone_ptr(LDKStaticPaymentOutputDescriptor *NONNULL_PTR arg);
18712 /* @internal */
18713 export function StaticPaymentOutputDescriptor_clone_ptr(arg: number): number {
18714         if(!isWasmInitialized) {
18715                 throw new Error("initializeWasm() must be awaited first!");
18716         }
18717         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_clone_ptr(arg);
18718         return nativeResponseValue;
18719 }
18720         // struct LDKStaticPaymentOutputDescriptor StaticPaymentOutputDescriptor_clone(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR orig);
18721 /* @internal */
18722 export function StaticPaymentOutputDescriptor_clone(orig: number): number {
18723         if(!isWasmInitialized) {
18724                 throw new Error("initializeWasm() must be awaited first!");
18725         }
18726         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_clone(orig);
18727         return nativeResponseValue;
18728 }
18729         // struct LDKCVec_u8Z StaticPaymentOutputDescriptor_write(const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR obj);
18730 /* @internal */
18731 export function StaticPaymentOutputDescriptor_write(obj: number): number {
18732         if(!isWasmInitialized) {
18733                 throw new Error("initializeWasm() must be awaited first!");
18734         }
18735         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_write(obj);
18736         return nativeResponseValue;
18737 }
18738         // struct LDKCResult_StaticPaymentOutputDescriptorDecodeErrorZ StaticPaymentOutputDescriptor_read(struct LDKu8slice ser);
18739 /* @internal */
18740 export function StaticPaymentOutputDescriptor_read(ser: number): number {
18741         if(!isWasmInitialized) {
18742                 throw new Error("initializeWasm() must be awaited first!");
18743         }
18744         const nativeResponseValue = wasm.TS_StaticPaymentOutputDescriptor_read(ser);
18745         return nativeResponseValue;
18746 }
18747         // void SpendableOutputDescriptor_free(struct LDKSpendableOutputDescriptor this_ptr);
18748 /* @internal */
18749 export function SpendableOutputDescriptor_free(this_ptr: number): void {
18750         if(!isWasmInitialized) {
18751                 throw new Error("initializeWasm() must be awaited first!");
18752         }
18753         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_free(this_ptr);
18754         // debug statements here
18755 }
18756         // uintptr_t SpendableOutputDescriptor_clone_ptr(LDKSpendableOutputDescriptor *NONNULL_PTR arg);
18757 /* @internal */
18758 export function SpendableOutputDescriptor_clone_ptr(arg: number): number {
18759         if(!isWasmInitialized) {
18760                 throw new Error("initializeWasm() must be awaited first!");
18761         }
18762         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_clone_ptr(arg);
18763         return nativeResponseValue;
18764 }
18765         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_clone(const struct LDKSpendableOutputDescriptor *NONNULL_PTR orig);
18766 /* @internal */
18767 export function SpendableOutputDescriptor_clone(orig: number): number {
18768         if(!isWasmInitialized) {
18769                 throw new Error("initializeWasm() must be awaited first!");
18770         }
18771         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_clone(orig);
18772         return nativeResponseValue;
18773 }
18774         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_static_output(struct LDKOutPoint outpoint, struct LDKTxOut output);
18775 /* @internal */
18776 export function SpendableOutputDescriptor_static_output(outpoint: number, output: number): number {
18777         if(!isWasmInitialized) {
18778                 throw new Error("initializeWasm() must be awaited first!");
18779         }
18780         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_static_output(outpoint, output);
18781         return nativeResponseValue;
18782 }
18783         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_delayed_payment_output(struct LDKDelayedPaymentOutputDescriptor a);
18784 /* @internal */
18785 export function SpendableOutputDescriptor_delayed_payment_output(a: number): number {
18786         if(!isWasmInitialized) {
18787                 throw new Error("initializeWasm() must be awaited first!");
18788         }
18789         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_delayed_payment_output(a);
18790         return nativeResponseValue;
18791 }
18792         // struct LDKSpendableOutputDescriptor SpendableOutputDescriptor_static_payment_output(struct LDKStaticPaymentOutputDescriptor a);
18793 /* @internal */
18794 export function SpendableOutputDescriptor_static_payment_output(a: number): number {
18795         if(!isWasmInitialized) {
18796                 throw new Error("initializeWasm() must be awaited first!");
18797         }
18798         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_static_payment_output(a);
18799         return nativeResponseValue;
18800 }
18801         // struct LDKCVec_u8Z SpendableOutputDescriptor_write(const struct LDKSpendableOutputDescriptor *NONNULL_PTR obj);
18802 /* @internal */
18803 export function SpendableOutputDescriptor_write(obj: number): number {
18804         if(!isWasmInitialized) {
18805                 throw new Error("initializeWasm() must be awaited first!");
18806         }
18807         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_write(obj);
18808         return nativeResponseValue;
18809 }
18810         // struct LDKCResult_SpendableOutputDescriptorDecodeErrorZ SpendableOutputDescriptor_read(struct LDKu8slice ser);
18811 /* @internal */
18812 export function SpendableOutputDescriptor_read(ser: number): number {
18813         if(!isWasmInitialized) {
18814                 throw new Error("initializeWasm() must be awaited first!");
18815         }
18816         const nativeResponseValue = wasm.TS_SpendableOutputDescriptor_read(ser);
18817         return nativeResponseValue;
18818 }
18819         // void BaseSign_free(struct LDKBaseSign this_ptr);
18820 /* @internal */
18821 export function BaseSign_free(this_ptr: number): void {
18822         if(!isWasmInitialized) {
18823                 throw new Error("initializeWasm() must be awaited first!");
18824         }
18825         const nativeResponseValue = wasm.TS_BaseSign_free(this_ptr);
18826         // debug statements here
18827 }
18828         // uintptr_t Sign_clone_ptr(LDKSign *NONNULL_PTR arg);
18829 /* @internal */
18830 export function Sign_clone_ptr(arg: number): number {
18831         if(!isWasmInitialized) {
18832                 throw new Error("initializeWasm() must be awaited first!");
18833         }
18834         const nativeResponseValue = wasm.TS_Sign_clone_ptr(arg);
18835         return nativeResponseValue;
18836 }
18837         // struct LDKSign Sign_clone(const struct LDKSign *NONNULL_PTR orig);
18838 /* @internal */
18839 export function Sign_clone(orig: number): number {
18840         if(!isWasmInitialized) {
18841                 throw new Error("initializeWasm() must be awaited first!");
18842         }
18843         const nativeResponseValue = wasm.TS_Sign_clone(orig);
18844         return nativeResponseValue;
18845 }
18846         // void Sign_free(struct LDKSign this_ptr);
18847 /* @internal */
18848 export function Sign_free(this_ptr: number): void {
18849         if(!isWasmInitialized) {
18850                 throw new Error("initializeWasm() must be awaited first!");
18851         }
18852         const nativeResponseValue = wasm.TS_Sign_free(this_ptr);
18853         // debug statements here
18854 }
18855         // enum LDKRecipient Recipient_clone(const enum LDKRecipient *NONNULL_PTR orig);
18856 /* @internal */
18857 export function Recipient_clone(orig: number): Recipient {
18858         if(!isWasmInitialized) {
18859                 throw new Error("initializeWasm() must be awaited first!");
18860         }
18861         const nativeResponseValue = wasm.TS_Recipient_clone(orig);
18862         return nativeResponseValue;
18863 }
18864         // enum LDKRecipient Recipient_node(void);
18865 /* @internal */
18866 export function Recipient_node(): Recipient {
18867         if(!isWasmInitialized) {
18868                 throw new Error("initializeWasm() must be awaited first!");
18869         }
18870         const nativeResponseValue = wasm.TS_Recipient_node();
18871         return nativeResponseValue;
18872 }
18873         // enum LDKRecipient Recipient_phantom_node(void);
18874 /* @internal */
18875 export function Recipient_phantom_node(): Recipient {
18876         if(!isWasmInitialized) {
18877                 throw new Error("initializeWasm() must be awaited first!");
18878         }
18879         const nativeResponseValue = wasm.TS_Recipient_phantom_node();
18880         return nativeResponseValue;
18881 }
18882         // void KeysInterface_free(struct LDKKeysInterface this_ptr);
18883 /* @internal */
18884 export function KeysInterface_free(this_ptr: number): void {
18885         if(!isWasmInitialized) {
18886                 throw new Error("initializeWasm() must be awaited first!");
18887         }
18888         const nativeResponseValue = wasm.TS_KeysInterface_free(this_ptr);
18889         // debug statements here
18890 }
18891         // void InMemorySigner_free(struct LDKInMemorySigner this_obj);
18892 /* @internal */
18893 export function InMemorySigner_free(this_obj: number): void {
18894         if(!isWasmInitialized) {
18895                 throw new Error("initializeWasm() must be awaited first!");
18896         }
18897         const nativeResponseValue = wasm.TS_InMemorySigner_free(this_obj);
18898         // debug statements here
18899 }
18900         // const uint8_t (*InMemorySigner_get_funding_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18901 /* @internal */
18902 export function InMemorySigner_get_funding_key(this_ptr: number): number {
18903         if(!isWasmInitialized) {
18904                 throw new Error("initializeWasm() must be awaited first!");
18905         }
18906         const nativeResponseValue = wasm.TS_InMemorySigner_get_funding_key(this_ptr);
18907         return nativeResponseValue;
18908 }
18909         // void InMemorySigner_set_funding_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
18910 /* @internal */
18911 export function InMemorySigner_set_funding_key(this_ptr: number, val: number): void {
18912         if(!isWasmInitialized) {
18913                 throw new Error("initializeWasm() must be awaited first!");
18914         }
18915         const nativeResponseValue = wasm.TS_InMemorySigner_set_funding_key(this_ptr, val);
18916         // debug statements here
18917 }
18918         // const uint8_t (*InMemorySigner_get_revocation_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18919 /* @internal */
18920 export function InMemorySigner_get_revocation_base_key(this_ptr: number): number {
18921         if(!isWasmInitialized) {
18922                 throw new Error("initializeWasm() must be awaited first!");
18923         }
18924         const nativeResponseValue = wasm.TS_InMemorySigner_get_revocation_base_key(this_ptr);
18925         return nativeResponseValue;
18926 }
18927         // void InMemorySigner_set_revocation_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
18928 /* @internal */
18929 export function InMemorySigner_set_revocation_base_key(this_ptr: number, val: number): void {
18930         if(!isWasmInitialized) {
18931                 throw new Error("initializeWasm() must be awaited first!");
18932         }
18933         const nativeResponseValue = wasm.TS_InMemorySigner_set_revocation_base_key(this_ptr, val);
18934         // debug statements here
18935 }
18936         // const uint8_t (*InMemorySigner_get_payment_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18937 /* @internal */
18938 export function InMemorySigner_get_payment_key(this_ptr: number): number {
18939         if(!isWasmInitialized) {
18940                 throw new Error("initializeWasm() must be awaited first!");
18941         }
18942         const nativeResponseValue = wasm.TS_InMemorySigner_get_payment_key(this_ptr);
18943         return nativeResponseValue;
18944 }
18945         // void InMemorySigner_set_payment_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
18946 /* @internal */
18947 export function InMemorySigner_set_payment_key(this_ptr: number, val: number): void {
18948         if(!isWasmInitialized) {
18949                 throw new Error("initializeWasm() must be awaited first!");
18950         }
18951         const nativeResponseValue = wasm.TS_InMemorySigner_set_payment_key(this_ptr, val);
18952         // debug statements here
18953 }
18954         // const uint8_t (*InMemorySigner_get_delayed_payment_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18955 /* @internal */
18956 export function InMemorySigner_get_delayed_payment_base_key(this_ptr: number): number {
18957         if(!isWasmInitialized) {
18958                 throw new Error("initializeWasm() must be awaited first!");
18959         }
18960         const nativeResponseValue = wasm.TS_InMemorySigner_get_delayed_payment_base_key(this_ptr);
18961         return nativeResponseValue;
18962 }
18963         // void InMemorySigner_set_delayed_payment_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
18964 /* @internal */
18965 export function InMemorySigner_set_delayed_payment_base_key(this_ptr: number, val: number): void {
18966         if(!isWasmInitialized) {
18967                 throw new Error("initializeWasm() must be awaited first!");
18968         }
18969         const nativeResponseValue = wasm.TS_InMemorySigner_set_delayed_payment_base_key(this_ptr, val);
18970         // debug statements here
18971 }
18972         // const uint8_t (*InMemorySigner_get_htlc_base_key(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18973 /* @internal */
18974 export function InMemorySigner_get_htlc_base_key(this_ptr: number): number {
18975         if(!isWasmInitialized) {
18976                 throw new Error("initializeWasm() must be awaited first!");
18977         }
18978         const nativeResponseValue = wasm.TS_InMemorySigner_get_htlc_base_key(this_ptr);
18979         return nativeResponseValue;
18980 }
18981         // void InMemorySigner_set_htlc_base_key(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKSecretKey val);
18982 /* @internal */
18983 export function InMemorySigner_set_htlc_base_key(this_ptr: number, val: number): void {
18984         if(!isWasmInitialized) {
18985                 throw new Error("initializeWasm() must be awaited first!");
18986         }
18987         const nativeResponseValue = wasm.TS_InMemorySigner_set_htlc_base_key(this_ptr, val);
18988         // debug statements here
18989 }
18990         // const uint8_t (*InMemorySigner_get_commitment_seed(const struct LDKInMemorySigner *NONNULL_PTR this_ptr))[32];
18991 /* @internal */
18992 export function InMemorySigner_get_commitment_seed(this_ptr: number): number {
18993         if(!isWasmInitialized) {
18994                 throw new Error("initializeWasm() must be awaited first!");
18995         }
18996         const nativeResponseValue = wasm.TS_InMemorySigner_get_commitment_seed(this_ptr);
18997         return nativeResponseValue;
18998 }
18999         // void InMemorySigner_set_commitment_seed(struct LDKInMemorySigner *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
19000 /* @internal */
19001 export function InMemorySigner_set_commitment_seed(this_ptr: number, val: number): void {
19002         if(!isWasmInitialized) {
19003                 throw new Error("initializeWasm() must be awaited first!");
19004         }
19005         const nativeResponseValue = wasm.TS_InMemorySigner_set_commitment_seed(this_ptr, val);
19006         // debug statements here
19007 }
19008         // uintptr_t InMemorySigner_clone_ptr(LDKInMemorySigner *NONNULL_PTR arg);
19009 /* @internal */
19010 export function InMemorySigner_clone_ptr(arg: number): number {
19011         if(!isWasmInitialized) {
19012                 throw new Error("initializeWasm() must be awaited first!");
19013         }
19014         const nativeResponseValue = wasm.TS_InMemorySigner_clone_ptr(arg);
19015         return nativeResponseValue;
19016 }
19017         // struct LDKInMemorySigner InMemorySigner_clone(const struct LDKInMemorySigner *NONNULL_PTR orig);
19018 /* @internal */
19019 export function InMemorySigner_clone(orig: number): number {
19020         if(!isWasmInitialized) {
19021                 throw new Error("initializeWasm() must be awaited first!");
19022         }
19023         const nativeResponseValue = wasm.TS_InMemorySigner_clone(orig);
19024         return nativeResponseValue;
19025 }
19026         // MUST_USE_RES struct LDKInMemorySigner InMemorySigner_new(struct LDKSecretKey node_secret, struct LDKSecretKey funding_key, struct LDKSecretKey revocation_base_key, struct LDKSecretKey payment_key, struct LDKSecretKey delayed_payment_base_key, struct LDKSecretKey htlc_base_key, struct LDKThirtyTwoBytes commitment_seed, uint64_t channel_value_satoshis, struct LDKThirtyTwoBytes channel_keys_id);
19027 /* @internal */
19028 export function InMemorySigner_new(node_secret: number, funding_key: number, revocation_base_key: number, payment_key: number, delayed_payment_base_key: number, htlc_base_key: number, commitment_seed: number, channel_value_satoshis: bigint, channel_keys_id: number): number {
19029         if(!isWasmInitialized) {
19030                 throw new Error("initializeWasm() must be awaited first!");
19031         }
19032         const nativeResponseValue = wasm.TS_InMemorySigner_new(node_secret, funding_key, revocation_base_key, payment_key, delayed_payment_base_key, htlc_base_key, commitment_seed, channel_value_satoshis, channel_keys_id);
19033         return nativeResponseValue;
19034 }
19035         // MUST_USE_RES struct LDKChannelPublicKeys InMemorySigner_counterparty_pubkeys(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19036 /* @internal */
19037 export function InMemorySigner_counterparty_pubkeys(this_arg: number): number {
19038         if(!isWasmInitialized) {
19039                 throw new Error("initializeWasm() must be awaited first!");
19040         }
19041         const nativeResponseValue = wasm.TS_InMemorySigner_counterparty_pubkeys(this_arg);
19042         return nativeResponseValue;
19043 }
19044         // MUST_USE_RES uint16_t InMemorySigner_counterparty_selected_contest_delay(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19045 /* @internal */
19046 export function InMemorySigner_counterparty_selected_contest_delay(this_arg: number): number {
19047         if(!isWasmInitialized) {
19048                 throw new Error("initializeWasm() must be awaited first!");
19049         }
19050         const nativeResponseValue = wasm.TS_InMemorySigner_counterparty_selected_contest_delay(this_arg);
19051         return nativeResponseValue;
19052 }
19053         // MUST_USE_RES uint16_t InMemorySigner_holder_selected_contest_delay(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19054 /* @internal */
19055 export function InMemorySigner_holder_selected_contest_delay(this_arg: number): number {
19056         if(!isWasmInitialized) {
19057                 throw new Error("initializeWasm() must be awaited first!");
19058         }
19059         const nativeResponseValue = wasm.TS_InMemorySigner_holder_selected_contest_delay(this_arg);
19060         return nativeResponseValue;
19061 }
19062         // MUST_USE_RES bool InMemorySigner_is_outbound(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19063 /* @internal */
19064 export function InMemorySigner_is_outbound(this_arg: number): boolean {
19065         if(!isWasmInitialized) {
19066                 throw new Error("initializeWasm() must be awaited first!");
19067         }
19068         const nativeResponseValue = wasm.TS_InMemorySigner_is_outbound(this_arg);
19069         return nativeResponseValue;
19070 }
19071         // MUST_USE_RES struct LDKOutPoint InMemorySigner_funding_outpoint(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19072 /* @internal */
19073 export function InMemorySigner_funding_outpoint(this_arg: number): number {
19074         if(!isWasmInitialized) {
19075                 throw new Error("initializeWasm() must be awaited first!");
19076         }
19077         const nativeResponseValue = wasm.TS_InMemorySigner_funding_outpoint(this_arg);
19078         return nativeResponseValue;
19079 }
19080         // MUST_USE_RES struct LDKChannelTransactionParameters InMemorySigner_get_channel_parameters(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19081 /* @internal */
19082 export function InMemorySigner_get_channel_parameters(this_arg: number): number {
19083         if(!isWasmInitialized) {
19084                 throw new Error("initializeWasm() must be awaited first!");
19085         }
19086         const nativeResponseValue = wasm.TS_InMemorySigner_get_channel_parameters(this_arg);
19087         return nativeResponseValue;
19088 }
19089         // MUST_USE_RES bool InMemorySigner_opt_anchors(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19090 /* @internal */
19091 export function InMemorySigner_opt_anchors(this_arg: number): boolean {
19092         if(!isWasmInitialized) {
19093                 throw new Error("initializeWasm() must be awaited first!");
19094         }
19095         const nativeResponseValue = wasm.TS_InMemorySigner_opt_anchors(this_arg);
19096         return nativeResponseValue;
19097 }
19098         // MUST_USE_RES struct LDKCResult_CVec_CVec_u8ZZNoneZ InMemorySigner_sign_counterparty_payment_input(const struct LDKInMemorySigner *NONNULL_PTR this_arg, struct LDKTransaction spend_tx, uintptr_t input_idx, const struct LDKStaticPaymentOutputDescriptor *NONNULL_PTR descriptor);
19099 /* @internal */
19100 export function InMemorySigner_sign_counterparty_payment_input(this_arg: number, spend_tx: number, input_idx: number, descriptor: number): number {
19101         if(!isWasmInitialized) {
19102                 throw new Error("initializeWasm() must be awaited first!");
19103         }
19104         const nativeResponseValue = wasm.TS_InMemorySigner_sign_counterparty_payment_input(this_arg, spend_tx, input_idx, descriptor);
19105         return nativeResponseValue;
19106 }
19107         // MUST_USE_RES struct LDKCResult_CVec_CVec_u8ZZNoneZ InMemorySigner_sign_dynamic_p2wsh_input(const struct LDKInMemorySigner *NONNULL_PTR this_arg, struct LDKTransaction spend_tx, uintptr_t input_idx, const struct LDKDelayedPaymentOutputDescriptor *NONNULL_PTR descriptor);
19108 /* @internal */
19109 export function InMemorySigner_sign_dynamic_p2wsh_input(this_arg: number, spend_tx: number, input_idx: number, descriptor: number): number {
19110         if(!isWasmInitialized) {
19111                 throw new Error("initializeWasm() must be awaited first!");
19112         }
19113         const nativeResponseValue = wasm.TS_InMemorySigner_sign_dynamic_p2wsh_input(this_arg, spend_tx, input_idx, descriptor);
19114         return nativeResponseValue;
19115 }
19116         // struct LDKBaseSign InMemorySigner_as_BaseSign(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19117 /* @internal */
19118 export function InMemorySigner_as_BaseSign(this_arg: number): number {
19119         if(!isWasmInitialized) {
19120                 throw new Error("initializeWasm() must be awaited first!");
19121         }
19122         const nativeResponseValue = wasm.TS_InMemorySigner_as_BaseSign(this_arg);
19123         return nativeResponseValue;
19124 }
19125         // struct LDKSign InMemorySigner_as_Sign(const struct LDKInMemorySigner *NONNULL_PTR this_arg);
19126 /* @internal */
19127 export function InMemorySigner_as_Sign(this_arg: number): number {
19128         if(!isWasmInitialized) {
19129                 throw new Error("initializeWasm() must be awaited first!");
19130         }
19131         const nativeResponseValue = wasm.TS_InMemorySigner_as_Sign(this_arg);
19132         return nativeResponseValue;
19133 }
19134         // struct LDKCVec_u8Z InMemorySigner_write(const struct LDKInMemorySigner *NONNULL_PTR obj);
19135 /* @internal */
19136 export function InMemorySigner_write(obj: number): number {
19137         if(!isWasmInitialized) {
19138                 throw new Error("initializeWasm() must be awaited first!");
19139         }
19140         const nativeResponseValue = wasm.TS_InMemorySigner_write(obj);
19141         return nativeResponseValue;
19142 }
19143         // struct LDKCResult_InMemorySignerDecodeErrorZ InMemorySigner_read(struct LDKu8slice ser, struct LDKSecretKey arg);
19144 /* @internal */
19145 export function InMemorySigner_read(ser: number, arg: number): number {
19146         if(!isWasmInitialized) {
19147                 throw new Error("initializeWasm() must be awaited first!");
19148         }
19149         const nativeResponseValue = wasm.TS_InMemorySigner_read(ser, arg);
19150         return nativeResponseValue;
19151 }
19152         // void KeysManager_free(struct LDKKeysManager this_obj);
19153 /* @internal */
19154 export function KeysManager_free(this_obj: number): void {
19155         if(!isWasmInitialized) {
19156                 throw new Error("initializeWasm() must be awaited first!");
19157         }
19158         const nativeResponseValue = wasm.TS_KeysManager_free(this_obj);
19159         // debug statements here
19160 }
19161         // MUST_USE_RES struct LDKKeysManager KeysManager_new(const uint8_t (*seed)[32], uint64_t starting_time_secs, uint32_t starting_time_nanos);
19162 /* @internal */
19163 export function KeysManager_new(seed: number, starting_time_secs: bigint, starting_time_nanos: number): number {
19164         if(!isWasmInitialized) {
19165                 throw new Error("initializeWasm() must be awaited first!");
19166         }
19167         const nativeResponseValue = wasm.TS_KeysManager_new(seed, starting_time_secs, starting_time_nanos);
19168         return nativeResponseValue;
19169 }
19170         // MUST_USE_RES struct LDKInMemorySigner KeysManager_derive_channel_keys(const struct LDKKeysManager *NONNULL_PTR this_arg, uint64_t channel_value_satoshis, const uint8_t (*params)[32]);
19171 /* @internal */
19172 export function KeysManager_derive_channel_keys(this_arg: number, channel_value_satoshis: bigint, params: number): number {
19173         if(!isWasmInitialized) {
19174                 throw new Error("initializeWasm() must be awaited first!");
19175         }
19176         const nativeResponseValue = wasm.TS_KeysManager_derive_channel_keys(this_arg, channel_value_satoshis, params);
19177         return nativeResponseValue;
19178 }
19179         // MUST_USE_RES struct LDKCResult_TransactionNoneZ KeysManager_spend_spendable_outputs(const struct LDKKeysManager *NONNULL_PTR this_arg, struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_TxOutZ outputs, struct LDKCVec_u8Z change_destination_script, uint32_t feerate_sat_per_1000_weight);
19180 /* @internal */
19181 export function KeysManager_spend_spendable_outputs(this_arg: number, descriptors: number, outputs: number, change_destination_script: number, feerate_sat_per_1000_weight: number): number {
19182         if(!isWasmInitialized) {
19183                 throw new Error("initializeWasm() must be awaited first!");
19184         }
19185         const nativeResponseValue = wasm.TS_KeysManager_spend_spendable_outputs(this_arg, descriptors, outputs, change_destination_script, feerate_sat_per_1000_weight);
19186         return nativeResponseValue;
19187 }
19188         // struct LDKKeysInterface KeysManager_as_KeysInterface(const struct LDKKeysManager *NONNULL_PTR this_arg);
19189 /* @internal */
19190 export function KeysManager_as_KeysInterface(this_arg: number): number {
19191         if(!isWasmInitialized) {
19192                 throw new Error("initializeWasm() must be awaited first!");
19193         }
19194         const nativeResponseValue = wasm.TS_KeysManager_as_KeysInterface(this_arg);
19195         return nativeResponseValue;
19196 }
19197         // void PhantomKeysManager_free(struct LDKPhantomKeysManager this_obj);
19198 /* @internal */
19199 export function PhantomKeysManager_free(this_obj: number): void {
19200         if(!isWasmInitialized) {
19201                 throw new Error("initializeWasm() must be awaited first!");
19202         }
19203         const nativeResponseValue = wasm.TS_PhantomKeysManager_free(this_obj);
19204         // debug statements here
19205 }
19206         // struct LDKKeysInterface PhantomKeysManager_as_KeysInterface(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg);
19207 /* @internal */
19208 export function PhantomKeysManager_as_KeysInterface(this_arg: number): number {
19209         if(!isWasmInitialized) {
19210                 throw new Error("initializeWasm() must be awaited first!");
19211         }
19212         const nativeResponseValue = wasm.TS_PhantomKeysManager_as_KeysInterface(this_arg);
19213         return nativeResponseValue;
19214 }
19215         // MUST_USE_RES struct LDKPhantomKeysManager PhantomKeysManager_new(const uint8_t (*seed)[32], uint64_t starting_time_secs, uint32_t starting_time_nanos, const uint8_t (*cross_node_seed)[32]);
19216 /* @internal */
19217 export function PhantomKeysManager_new(seed: number, starting_time_secs: bigint, starting_time_nanos: number, cross_node_seed: number): number {
19218         if(!isWasmInitialized) {
19219                 throw new Error("initializeWasm() must be awaited first!");
19220         }
19221         const nativeResponseValue = wasm.TS_PhantomKeysManager_new(seed, starting_time_secs, starting_time_nanos, cross_node_seed);
19222         return nativeResponseValue;
19223 }
19224         // MUST_USE_RES struct LDKCResult_TransactionNoneZ PhantomKeysManager_spend_spendable_outputs(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg, struct LDKCVec_SpendableOutputDescriptorZ descriptors, struct LDKCVec_TxOutZ outputs, struct LDKCVec_u8Z change_destination_script, uint32_t feerate_sat_per_1000_weight);
19225 /* @internal */
19226 export function PhantomKeysManager_spend_spendable_outputs(this_arg: number, descriptors: number, outputs: number, change_destination_script: number, feerate_sat_per_1000_weight: number): number {
19227         if(!isWasmInitialized) {
19228                 throw new Error("initializeWasm() must be awaited first!");
19229         }
19230         const nativeResponseValue = wasm.TS_PhantomKeysManager_spend_spendable_outputs(this_arg, descriptors, outputs, change_destination_script, feerate_sat_per_1000_weight);
19231         return nativeResponseValue;
19232 }
19233         // MUST_USE_RES struct LDKInMemorySigner PhantomKeysManager_derive_channel_keys(const struct LDKPhantomKeysManager *NONNULL_PTR this_arg, uint64_t channel_value_satoshis, const uint8_t (*params)[32]);
19234 /* @internal */
19235 export function PhantomKeysManager_derive_channel_keys(this_arg: number, channel_value_satoshis: bigint, params: number): number {
19236         if(!isWasmInitialized) {
19237                 throw new Error("initializeWasm() must be awaited first!");
19238         }
19239         const nativeResponseValue = wasm.TS_PhantomKeysManager_derive_channel_keys(this_arg, channel_value_satoshis, params);
19240         return nativeResponseValue;
19241 }
19242         // void ChannelManager_free(struct LDKChannelManager this_obj);
19243 /* @internal */
19244 export function ChannelManager_free(this_obj: number): void {
19245         if(!isWasmInitialized) {
19246                 throw new Error("initializeWasm() must be awaited first!");
19247         }
19248         const nativeResponseValue = wasm.TS_ChannelManager_free(this_obj);
19249         // debug statements here
19250 }
19251         // void ChainParameters_free(struct LDKChainParameters this_obj);
19252 /* @internal */
19253 export function ChainParameters_free(this_obj: number): void {
19254         if(!isWasmInitialized) {
19255                 throw new Error("initializeWasm() must be awaited first!");
19256         }
19257         const nativeResponseValue = wasm.TS_ChainParameters_free(this_obj);
19258         // debug statements here
19259 }
19260         // enum LDKNetwork ChainParameters_get_network(const struct LDKChainParameters *NONNULL_PTR this_ptr);
19261 /* @internal */
19262 export function ChainParameters_get_network(this_ptr: number): Network {
19263         if(!isWasmInitialized) {
19264                 throw new Error("initializeWasm() must be awaited first!");
19265         }
19266         const nativeResponseValue = wasm.TS_ChainParameters_get_network(this_ptr);
19267         return nativeResponseValue;
19268 }
19269         // void ChainParameters_set_network(struct LDKChainParameters *NONNULL_PTR this_ptr, enum LDKNetwork val);
19270 /* @internal */
19271 export function ChainParameters_set_network(this_ptr: number, val: Network): void {
19272         if(!isWasmInitialized) {
19273                 throw new Error("initializeWasm() must be awaited first!");
19274         }
19275         const nativeResponseValue = wasm.TS_ChainParameters_set_network(this_ptr, val);
19276         // debug statements here
19277 }
19278         // struct LDKBestBlock ChainParameters_get_best_block(const struct LDKChainParameters *NONNULL_PTR this_ptr);
19279 /* @internal */
19280 export function ChainParameters_get_best_block(this_ptr: number): number {
19281         if(!isWasmInitialized) {
19282                 throw new Error("initializeWasm() must be awaited first!");
19283         }
19284         const nativeResponseValue = wasm.TS_ChainParameters_get_best_block(this_ptr);
19285         return nativeResponseValue;
19286 }
19287         // void ChainParameters_set_best_block(struct LDKChainParameters *NONNULL_PTR this_ptr, struct LDKBestBlock val);
19288 /* @internal */
19289 export function ChainParameters_set_best_block(this_ptr: number, val: number): void {
19290         if(!isWasmInitialized) {
19291                 throw new Error("initializeWasm() must be awaited first!");
19292         }
19293         const nativeResponseValue = wasm.TS_ChainParameters_set_best_block(this_ptr, val);
19294         // debug statements here
19295 }
19296         // MUST_USE_RES struct LDKChainParameters ChainParameters_new(enum LDKNetwork network_arg, struct LDKBestBlock best_block_arg);
19297 /* @internal */
19298 export function ChainParameters_new(network_arg: Network, best_block_arg: number): number {
19299         if(!isWasmInitialized) {
19300                 throw new Error("initializeWasm() must be awaited first!");
19301         }
19302         const nativeResponseValue = wasm.TS_ChainParameters_new(network_arg, best_block_arg);
19303         return nativeResponseValue;
19304 }
19305         // uintptr_t ChainParameters_clone_ptr(LDKChainParameters *NONNULL_PTR arg);
19306 /* @internal */
19307 export function ChainParameters_clone_ptr(arg: number): number {
19308         if(!isWasmInitialized) {
19309                 throw new Error("initializeWasm() must be awaited first!");
19310         }
19311         const nativeResponseValue = wasm.TS_ChainParameters_clone_ptr(arg);
19312         return nativeResponseValue;
19313 }
19314         // struct LDKChainParameters ChainParameters_clone(const struct LDKChainParameters *NONNULL_PTR orig);
19315 /* @internal */
19316 export function ChainParameters_clone(orig: number): number {
19317         if(!isWasmInitialized) {
19318                 throw new Error("initializeWasm() must be awaited first!");
19319         }
19320         const nativeResponseValue = wasm.TS_ChainParameters_clone(orig);
19321         return nativeResponseValue;
19322 }
19323         // void CounterpartyForwardingInfo_free(struct LDKCounterpartyForwardingInfo this_obj);
19324 /* @internal */
19325 export function CounterpartyForwardingInfo_free(this_obj: number): void {
19326         if(!isWasmInitialized) {
19327                 throw new Error("initializeWasm() must be awaited first!");
19328         }
19329         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_free(this_obj);
19330         // debug statements here
19331 }
19332         // uint32_t CounterpartyForwardingInfo_get_fee_base_msat(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
19333 /* @internal */
19334 export function CounterpartyForwardingInfo_get_fee_base_msat(this_ptr: number): number {
19335         if(!isWasmInitialized) {
19336                 throw new Error("initializeWasm() must be awaited first!");
19337         }
19338         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_get_fee_base_msat(this_ptr);
19339         return nativeResponseValue;
19340 }
19341         // void CounterpartyForwardingInfo_set_fee_base_msat(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint32_t val);
19342 /* @internal */
19343 export function CounterpartyForwardingInfo_set_fee_base_msat(this_ptr: number, val: number): void {
19344         if(!isWasmInitialized) {
19345                 throw new Error("initializeWasm() must be awaited first!");
19346         }
19347         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_set_fee_base_msat(this_ptr, val);
19348         // debug statements here
19349 }
19350         // uint32_t CounterpartyForwardingInfo_get_fee_proportional_millionths(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
19351 /* @internal */
19352 export function CounterpartyForwardingInfo_get_fee_proportional_millionths(this_ptr: number): number {
19353         if(!isWasmInitialized) {
19354                 throw new Error("initializeWasm() must be awaited first!");
19355         }
19356         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_get_fee_proportional_millionths(this_ptr);
19357         return nativeResponseValue;
19358 }
19359         // void CounterpartyForwardingInfo_set_fee_proportional_millionths(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint32_t val);
19360 /* @internal */
19361 export function CounterpartyForwardingInfo_set_fee_proportional_millionths(this_ptr: number, val: number): void {
19362         if(!isWasmInitialized) {
19363                 throw new Error("initializeWasm() must be awaited first!");
19364         }
19365         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_set_fee_proportional_millionths(this_ptr, val);
19366         // debug statements here
19367 }
19368         // uint16_t CounterpartyForwardingInfo_get_cltv_expiry_delta(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr);
19369 /* @internal */
19370 export function CounterpartyForwardingInfo_get_cltv_expiry_delta(this_ptr: number): number {
19371         if(!isWasmInitialized) {
19372                 throw new Error("initializeWasm() must be awaited first!");
19373         }
19374         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_get_cltv_expiry_delta(this_ptr);
19375         return nativeResponseValue;
19376 }
19377         // void CounterpartyForwardingInfo_set_cltv_expiry_delta(struct LDKCounterpartyForwardingInfo *NONNULL_PTR this_ptr, uint16_t val);
19378 /* @internal */
19379 export function CounterpartyForwardingInfo_set_cltv_expiry_delta(this_ptr: number, val: number): void {
19380         if(!isWasmInitialized) {
19381                 throw new Error("initializeWasm() must be awaited first!");
19382         }
19383         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_set_cltv_expiry_delta(this_ptr, val);
19384         // debug statements here
19385 }
19386         // MUST_USE_RES struct LDKCounterpartyForwardingInfo CounterpartyForwardingInfo_new(uint32_t fee_base_msat_arg, uint32_t fee_proportional_millionths_arg, uint16_t cltv_expiry_delta_arg);
19387 /* @internal */
19388 export function CounterpartyForwardingInfo_new(fee_base_msat_arg: number, fee_proportional_millionths_arg: number, cltv_expiry_delta_arg: number): number {
19389         if(!isWasmInitialized) {
19390                 throw new Error("initializeWasm() must be awaited first!");
19391         }
19392         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_new(fee_base_msat_arg, fee_proportional_millionths_arg, cltv_expiry_delta_arg);
19393         return nativeResponseValue;
19394 }
19395         // uintptr_t CounterpartyForwardingInfo_clone_ptr(LDKCounterpartyForwardingInfo *NONNULL_PTR arg);
19396 /* @internal */
19397 export function CounterpartyForwardingInfo_clone_ptr(arg: number): number {
19398         if(!isWasmInitialized) {
19399                 throw new Error("initializeWasm() must be awaited first!");
19400         }
19401         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_clone_ptr(arg);
19402         return nativeResponseValue;
19403 }
19404         // struct LDKCounterpartyForwardingInfo CounterpartyForwardingInfo_clone(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR orig);
19405 /* @internal */
19406 export function CounterpartyForwardingInfo_clone(orig: number): number {
19407         if(!isWasmInitialized) {
19408                 throw new Error("initializeWasm() must be awaited first!");
19409         }
19410         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_clone(orig);
19411         return nativeResponseValue;
19412 }
19413         // void ChannelCounterparty_free(struct LDKChannelCounterparty this_obj);
19414 /* @internal */
19415 export function ChannelCounterparty_free(this_obj: number): void {
19416         if(!isWasmInitialized) {
19417                 throw new Error("initializeWasm() must be awaited first!");
19418         }
19419         const nativeResponseValue = wasm.TS_ChannelCounterparty_free(this_obj);
19420         // debug statements here
19421 }
19422         // struct LDKPublicKey ChannelCounterparty_get_node_id(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19423 /* @internal */
19424 export function ChannelCounterparty_get_node_id(this_ptr: number): number {
19425         if(!isWasmInitialized) {
19426                 throw new Error("initializeWasm() must be awaited first!");
19427         }
19428         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_node_id(this_ptr);
19429         return nativeResponseValue;
19430 }
19431         // void ChannelCounterparty_set_node_id(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKPublicKey val);
19432 /* @internal */
19433 export function ChannelCounterparty_set_node_id(this_ptr: number, val: number): void {
19434         if(!isWasmInitialized) {
19435                 throw new Error("initializeWasm() must be awaited first!");
19436         }
19437         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_node_id(this_ptr, val);
19438         // debug statements here
19439 }
19440         // struct LDKInitFeatures ChannelCounterparty_get_features(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19441 /* @internal */
19442 export function ChannelCounterparty_get_features(this_ptr: number): number {
19443         if(!isWasmInitialized) {
19444                 throw new Error("initializeWasm() must be awaited first!");
19445         }
19446         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_features(this_ptr);
19447         return nativeResponseValue;
19448 }
19449         // void ChannelCounterparty_set_features(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKInitFeatures val);
19450 /* @internal */
19451 export function ChannelCounterparty_set_features(this_ptr: number, val: number): void {
19452         if(!isWasmInitialized) {
19453                 throw new Error("initializeWasm() must be awaited first!");
19454         }
19455         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_features(this_ptr, val);
19456         // debug statements here
19457 }
19458         // uint64_t ChannelCounterparty_get_unspendable_punishment_reserve(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19459 /* @internal */
19460 export function ChannelCounterparty_get_unspendable_punishment_reserve(this_ptr: number): bigint {
19461         if(!isWasmInitialized) {
19462                 throw new Error("initializeWasm() must be awaited first!");
19463         }
19464         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_unspendable_punishment_reserve(this_ptr);
19465         return nativeResponseValue;
19466 }
19467         // void ChannelCounterparty_set_unspendable_punishment_reserve(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, uint64_t val);
19468 /* @internal */
19469 export function ChannelCounterparty_set_unspendable_punishment_reserve(this_ptr: number, val: bigint): void {
19470         if(!isWasmInitialized) {
19471                 throw new Error("initializeWasm() must be awaited first!");
19472         }
19473         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_unspendable_punishment_reserve(this_ptr, val);
19474         // debug statements here
19475 }
19476         // struct LDKCounterpartyForwardingInfo ChannelCounterparty_get_forwarding_info(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19477 /* @internal */
19478 export function ChannelCounterparty_get_forwarding_info(this_ptr: number): number {
19479         if(!isWasmInitialized) {
19480                 throw new Error("initializeWasm() must be awaited first!");
19481         }
19482         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_forwarding_info(this_ptr);
19483         return nativeResponseValue;
19484 }
19485         // void ChannelCounterparty_set_forwarding_info(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCounterpartyForwardingInfo val);
19486 /* @internal */
19487 export function ChannelCounterparty_set_forwarding_info(this_ptr: number, val: number): void {
19488         if(!isWasmInitialized) {
19489                 throw new Error("initializeWasm() must be awaited first!");
19490         }
19491         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_forwarding_info(this_ptr, val);
19492         // debug statements here
19493 }
19494         // struct LDKCOption_u64Z ChannelCounterparty_get_outbound_htlc_minimum_msat(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19495 /* @internal */
19496 export function ChannelCounterparty_get_outbound_htlc_minimum_msat(this_ptr: number): number {
19497         if(!isWasmInitialized) {
19498                 throw new Error("initializeWasm() must be awaited first!");
19499         }
19500         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_outbound_htlc_minimum_msat(this_ptr);
19501         return nativeResponseValue;
19502 }
19503         // void ChannelCounterparty_set_outbound_htlc_minimum_msat(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19504 /* @internal */
19505 export function ChannelCounterparty_set_outbound_htlc_minimum_msat(this_ptr: number, val: number): void {
19506         if(!isWasmInitialized) {
19507                 throw new Error("initializeWasm() must be awaited first!");
19508         }
19509         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_outbound_htlc_minimum_msat(this_ptr, val);
19510         // debug statements here
19511 }
19512         // struct LDKCOption_u64Z ChannelCounterparty_get_outbound_htlc_maximum_msat(const struct LDKChannelCounterparty *NONNULL_PTR this_ptr);
19513 /* @internal */
19514 export function ChannelCounterparty_get_outbound_htlc_maximum_msat(this_ptr: number): number {
19515         if(!isWasmInitialized) {
19516                 throw new Error("initializeWasm() must be awaited first!");
19517         }
19518         const nativeResponseValue = wasm.TS_ChannelCounterparty_get_outbound_htlc_maximum_msat(this_ptr);
19519         return nativeResponseValue;
19520 }
19521         // void ChannelCounterparty_set_outbound_htlc_maximum_msat(struct LDKChannelCounterparty *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19522 /* @internal */
19523 export function ChannelCounterparty_set_outbound_htlc_maximum_msat(this_ptr: number, val: number): void {
19524         if(!isWasmInitialized) {
19525                 throw new Error("initializeWasm() must be awaited first!");
19526         }
19527         const nativeResponseValue = wasm.TS_ChannelCounterparty_set_outbound_htlc_maximum_msat(this_ptr, val);
19528         // debug statements here
19529 }
19530         // MUST_USE_RES struct LDKChannelCounterparty ChannelCounterparty_new(struct LDKPublicKey node_id_arg, struct LDKInitFeatures features_arg, uint64_t unspendable_punishment_reserve_arg, struct LDKCounterpartyForwardingInfo forwarding_info_arg, struct LDKCOption_u64Z outbound_htlc_minimum_msat_arg, struct LDKCOption_u64Z outbound_htlc_maximum_msat_arg);
19531 /* @internal */
19532 export function ChannelCounterparty_new(node_id_arg: number, features_arg: number, unspendable_punishment_reserve_arg: bigint, forwarding_info_arg: number, outbound_htlc_minimum_msat_arg: number, outbound_htlc_maximum_msat_arg: number): number {
19533         if(!isWasmInitialized) {
19534                 throw new Error("initializeWasm() must be awaited first!");
19535         }
19536         const nativeResponseValue = wasm.TS_ChannelCounterparty_new(node_id_arg, features_arg, unspendable_punishment_reserve_arg, forwarding_info_arg, outbound_htlc_minimum_msat_arg, outbound_htlc_maximum_msat_arg);
19537         return nativeResponseValue;
19538 }
19539         // uintptr_t ChannelCounterparty_clone_ptr(LDKChannelCounterparty *NONNULL_PTR arg);
19540 /* @internal */
19541 export function ChannelCounterparty_clone_ptr(arg: number): number {
19542         if(!isWasmInitialized) {
19543                 throw new Error("initializeWasm() must be awaited first!");
19544         }
19545         const nativeResponseValue = wasm.TS_ChannelCounterparty_clone_ptr(arg);
19546         return nativeResponseValue;
19547 }
19548         // struct LDKChannelCounterparty ChannelCounterparty_clone(const struct LDKChannelCounterparty *NONNULL_PTR orig);
19549 /* @internal */
19550 export function ChannelCounterparty_clone(orig: number): number {
19551         if(!isWasmInitialized) {
19552                 throw new Error("initializeWasm() must be awaited first!");
19553         }
19554         const nativeResponseValue = wasm.TS_ChannelCounterparty_clone(orig);
19555         return nativeResponseValue;
19556 }
19557         // void ChannelDetails_free(struct LDKChannelDetails this_obj);
19558 /* @internal */
19559 export function ChannelDetails_free(this_obj: number): void {
19560         if(!isWasmInitialized) {
19561                 throw new Error("initializeWasm() must be awaited first!");
19562         }
19563         const nativeResponseValue = wasm.TS_ChannelDetails_free(this_obj);
19564         // debug statements here
19565 }
19566         // const uint8_t (*ChannelDetails_get_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr))[32];
19567 /* @internal */
19568 export function ChannelDetails_get_channel_id(this_ptr: number): number {
19569         if(!isWasmInitialized) {
19570                 throw new Error("initializeWasm() must be awaited first!");
19571         }
19572         const nativeResponseValue = wasm.TS_ChannelDetails_get_channel_id(this_ptr);
19573         return nativeResponseValue;
19574 }
19575         // void ChannelDetails_set_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
19576 /* @internal */
19577 export function ChannelDetails_set_channel_id(this_ptr: number, val: number): void {
19578         if(!isWasmInitialized) {
19579                 throw new Error("initializeWasm() must be awaited first!");
19580         }
19581         const nativeResponseValue = wasm.TS_ChannelDetails_set_channel_id(this_ptr, val);
19582         // debug statements here
19583 }
19584         // struct LDKChannelCounterparty ChannelDetails_get_counterparty(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19585 /* @internal */
19586 export function ChannelDetails_get_counterparty(this_ptr: number): number {
19587         if(!isWasmInitialized) {
19588                 throw new Error("initializeWasm() must be awaited first!");
19589         }
19590         const nativeResponseValue = wasm.TS_ChannelDetails_get_counterparty(this_ptr);
19591         return nativeResponseValue;
19592 }
19593         // void ChannelDetails_set_counterparty(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelCounterparty val);
19594 /* @internal */
19595 export function ChannelDetails_set_counterparty(this_ptr: number, val: number): void {
19596         if(!isWasmInitialized) {
19597                 throw new Error("initializeWasm() must be awaited first!");
19598         }
19599         const nativeResponseValue = wasm.TS_ChannelDetails_set_counterparty(this_ptr, val);
19600         // debug statements here
19601 }
19602         // struct LDKOutPoint ChannelDetails_get_funding_txo(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19603 /* @internal */
19604 export function ChannelDetails_get_funding_txo(this_ptr: number): number {
19605         if(!isWasmInitialized) {
19606                 throw new Error("initializeWasm() must be awaited first!");
19607         }
19608         const nativeResponseValue = wasm.TS_ChannelDetails_get_funding_txo(this_ptr);
19609         return nativeResponseValue;
19610 }
19611         // void ChannelDetails_set_funding_txo(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKOutPoint val);
19612 /* @internal */
19613 export function ChannelDetails_set_funding_txo(this_ptr: number, val: number): void {
19614         if(!isWasmInitialized) {
19615                 throw new Error("initializeWasm() must be awaited first!");
19616         }
19617         const nativeResponseValue = wasm.TS_ChannelDetails_set_funding_txo(this_ptr, val);
19618         // debug statements here
19619 }
19620         // struct LDKChannelTypeFeatures ChannelDetails_get_channel_type(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19621 /* @internal */
19622 export function ChannelDetails_get_channel_type(this_ptr: number): number {
19623         if(!isWasmInitialized) {
19624                 throw new Error("initializeWasm() must be awaited first!");
19625         }
19626         const nativeResponseValue = wasm.TS_ChannelDetails_get_channel_type(this_ptr);
19627         return nativeResponseValue;
19628 }
19629         // void ChannelDetails_set_channel_type(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
19630 /* @internal */
19631 export function ChannelDetails_set_channel_type(this_ptr: number, val: number): void {
19632         if(!isWasmInitialized) {
19633                 throw new Error("initializeWasm() must be awaited first!");
19634         }
19635         const nativeResponseValue = wasm.TS_ChannelDetails_set_channel_type(this_ptr, val);
19636         // debug statements here
19637 }
19638         // struct LDKCOption_u64Z ChannelDetails_get_short_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19639 /* @internal */
19640 export function ChannelDetails_get_short_channel_id(this_ptr: number): number {
19641         if(!isWasmInitialized) {
19642                 throw new Error("initializeWasm() must be awaited first!");
19643         }
19644         const nativeResponseValue = wasm.TS_ChannelDetails_get_short_channel_id(this_ptr);
19645         return nativeResponseValue;
19646 }
19647         // void ChannelDetails_set_short_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19648 /* @internal */
19649 export function ChannelDetails_set_short_channel_id(this_ptr: number, val: number): void {
19650         if(!isWasmInitialized) {
19651                 throw new Error("initializeWasm() must be awaited first!");
19652         }
19653         const nativeResponseValue = wasm.TS_ChannelDetails_set_short_channel_id(this_ptr, val);
19654         // debug statements here
19655 }
19656         // struct LDKCOption_u64Z ChannelDetails_get_outbound_scid_alias(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19657 /* @internal */
19658 export function ChannelDetails_get_outbound_scid_alias(this_ptr: number): number {
19659         if(!isWasmInitialized) {
19660                 throw new Error("initializeWasm() must be awaited first!");
19661         }
19662         const nativeResponseValue = wasm.TS_ChannelDetails_get_outbound_scid_alias(this_ptr);
19663         return nativeResponseValue;
19664 }
19665         // void ChannelDetails_set_outbound_scid_alias(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19666 /* @internal */
19667 export function ChannelDetails_set_outbound_scid_alias(this_ptr: number, val: number): void {
19668         if(!isWasmInitialized) {
19669                 throw new Error("initializeWasm() must be awaited first!");
19670         }
19671         const nativeResponseValue = wasm.TS_ChannelDetails_set_outbound_scid_alias(this_ptr, val);
19672         // debug statements here
19673 }
19674         // struct LDKCOption_u64Z ChannelDetails_get_inbound_scid_alias(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19675 /* @internal */
19676 export function ChannelDetails_get_inbound_scid_alias(this_ptr: number): number {
19677         if(!isWasmInitialized) {
19678                 throw new Error("initializeWasm() must be awaited first!");
19679         }
19680         const nativeResponseValue = wasm.TS_ChannelDetails_get_inbound_scid_alias(this_ptr);
19681         return nativeResponseValue;
19682 }
19683         // void ChannelDetails_set_inbound_scid_alias(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19684 /* @internal */
19685 export function ChannelDetails_set_inbound_scid_alias(this_ptr: number, val: number): void {
19686         if(!isWasmInitialized) {
19687                 throw new Error("initializeWasm() must be awaited first!");
19688         }
19689         const nativeResponseValue = wasm.TS_ChannelDetails_set_inbound_scid_alias(this_ptr, val);
19690         // debug statements here
19691 }
19692         // uint64_t ChannelDetails_get_channel_value_satoshis(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19693 /* @internal */
19694 export function ChannelDetails_get_channel_value_satoshis(this_ptr: number): bigint {
19695         if(!isWasmInitialized) {
19696                 throw new Error("initializeWasm() must be awaited first!");
19697         }
19698         const nativeResponseValue = wasm.TS_ChannelDetails_get_channel_value_satoshis(this_ptr);
19699         return nativeResponseValue;
19700 }
19701         // void ChannelDetails_set_channel_value_satoshis(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19702 /* @internal */
19703 export function ChannelDetails_set_channel_value_satoshis(this_ptr: number, val: bigint): void {
19704         if(!isWasmInitialized) {
19705                 throw new Error("initializeWasm() must be awaited first!");
19706         }
19707         const nativeResponseValue = wasm.TS_ChannelDetails_set_channel_value_satoshis(this_ptr, val);
19708         // debug statements here
19709 }
19710         // struct LDKCOption_u64Z ChannelDetails_get_unspendable_punishment_reserve(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19711 /* @internal */
19712 export function ChannelDetails_get_unspendable_punishment_reserve(this_ptr: number): number {
19713         if(!isWasmInitialized) {
19714                 throw new Error("initializeWasm() must be awaited first!");
19715         }
19716         const nativeResponseValue = wasm.TS_ChannelDetails_get_unspendable_punishment_reserve(this_ptr);
19717         return nativeResponseValue;
19718 }
19719         // void ChannelDetails_set_unspendable_punishment_reserve(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19720 /* @internal */
19721 export function ChannelDetails_set_unspendable_punishment_reserve(this_ptr: number, val: number): void {
19722         if(!isWasmInitialized) {
19723                 throw new Error("initializeWasm() must be awaited first!");
19724         }
19725         const nativeResponseValue = wasm.TS_ChannelDetails_set_unspendable_punishment_reserve(this_ptr, val);
19726         // debug statements here
19727 }
19728         // uint64_t ChannelDetails_get_user_channel_id(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19729 /* @internal */
19730 export function ChannelDetails_get_user_channel_id(this_ptr: number): bigint {
19731         if(!isWasmInitialized) {
19732                 throw new Error("initializeWasm() must be awaited first!");
19733         }
19734         const nativeResponseValue = wasm.TS_ChannelDetails_get_user_channel_id(this_ptr);
19735         return nativeResponseValue;
19736 }
19737         // void ChannelDetails_set_user_channel_id(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19738 /* @internal */
19739 export function ChannelDetails_set_user_channel_id(this_ptr: number, val: bigint): void {
19740         if(!isWasmInitialized) {
19741                 throw new Error("initializeWasm() must be awaited first!");
19742         }
19743         const nativeResponseValue = wasm.TS_ChannelDetails_set_user_channel_id(this_ptr, val);
19744         // debug statements here
19745 }
19746         // uint64_t ChannelDetails_get_balance_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19747 /* @internal */
19748 export function ChannelDetails_get_balance_msat(this_ptr: number): bigint {
19749         if(!isWasmInitialized) {
19750                 throw new Error("initializeWasm() must be awaited first!");
19751         }
19752         const nativeResponseValue = wasm.TS_ChannelDetails_get_balance_msat(this_ptr);
19753         return nativeResponseValue;
19754 }
19755         // void ChannelDetails_set_balance_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19756 /* @internal */
19757 export function ChannelDetails_set_balance_msat(this_ptr: number, val: bigint): void {
19758         if(!isWasmInitialized) {
19759                 throw new Error("initializeWasm() must be awaited first!");
19760         }
19761         const nativeResponseValue = wasm.TS_ChannelDetails_set_balance_msat(this_ptr, val);
19762         // debug statements here
19763 }
19764         // uint64_t ChannelDetails_get_outbound_capacity_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19765 /* @internal */
19766 export function ChannelDetails_get_outbound_capacity_msat(this_ptr: number): bigint {
19767         if(!isWasmInitialized) {
19768                 throw new Error("initializeWasm() must be awaited first!");
19769         }
19770         const nativeResponseValue = wasm.TS_ChannelDetails_get_outbound_capacity_msat(this_ptr);
19771         return nativeResponseValue;
19772 }
19773         // void ChannelDetails_set_outbound_capacity_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19774 /* @internal */
19775 export function ChannelDetails_set_outbound_capacity_msat(this_ptr: number, val: bigint): void {
19776         if(!isWasmInitialized) {
19777                 throw new Error("initializeWasm() must be awaited first!");
19778         }
19779         const nativeResponseValue = wasm.TS_ChannelDetails_set_outbound_capacity_msat(this_ptr, val);
19780         // debug statements here
19781 }
19782         // uint64_t ChannelDetails_get_next_outbound_htlc_limit_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19783 /* @internal */
19784 export function ChannelDetails_get_next_outbound_htlc_limit_msat(this_ptr: number): bigint {
19785         if(!isWasmInitialized) {
19786                 throw new Error("initializeWasm() must be awaited first!");
19787         }
19788         const nativeResponseValue = wasm.TS_ChannelDetails_get_next_outbound_htlc_limit_msat(this_ptr);
19789         return nativeResponseValue;
19790 }
19791         // void ChannelDetails_set_next_outbound_htlc_limit_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19792 /* @internal */
19793 export function ChannelDetails_set_next_outbound_htlc_limit_msat(this_ptr: number, val: bigint): void {
19794         if(!isWasmInitialized) {
19795                 throw new Error("initializeWasm() must be awaited first!");
19796         }
19797         const nativeResponseValue = wasm.TS_ChannelDetails_set_next_outbound_htlc_limit_msat(this_ptr, val);
19798         // debug statements here
19799 }
19800         // uint64_t ChannelDetails_get_inbound_capacity_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19801 /* @internal */
19802 export function ChannelDetails_get_inbound_capacity_msat(this_ptr: number): bigint {
19803         if(!isWasmInitialized) {
19804                 throw new Error("initializeWasm() must be awaited first!");
19805         }
19806         const nativeResponseValue = wasm.TS_ChannelDetails_get_inbound_capacity_msat(this_ptr);
19807         return nativeResponseValue;
19808 }
19809         // void ChannelDetails_set_inbound_capacity_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, uint64_t val);
19810 /* @internal */
19811 export function ChannelDetails_set_inbound_capacity_msat(this_ptr: number, val: bigint): void {
19812         if(!isWasmInitialized) {
19813                 throw new Error("initializeWasm() must be awaited first!");
19814         }
19815         const nativeResponseValue = wasm.TS_ChannelDetails_set_inbound_capacity_msat(this_ptr, val);
19816         // debug statements here
19817 }
19818         // struct LDKCOption_u32Z ChannelDetails_get_confirmations_required(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19819 /* @internal */
19820 export function ChannelDetails_get_confirmations_required(this_ptr: number): number {
19821         if(!isWasmInitialized) {
19822                 throw new Error("initializeWasm() must be awaited first!");
19823         }
19824         const nativeResponseValue = wasm.TS_ChannelDetails_get_confirmations_required(this_ptr);
19825         return nativeResponseValue;
19826 }
19827         // void ChannelDetails_set_confirmations_required(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
19828 /* @internal */
19829 export function ChannelDetails_set_confirmations_required(this_ptr: number, val: number): void {
19830         if(!isWasmInitialized) {
19831                 throw new Error("initializeWasm() must be awaited first!");
19832         }
19833         const nativeResponseValue = wasm.TS_ChannelDetails_set_confirmations_required(this_ptr, val);
19834         // debug statements here
19835 }
19836         // struct LDKCOption_u16Z ChannelDetails_get_force_close_spend_delay(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19837 /* @internal */
19838 export function ChannelDetails_get_force_close_spend_delay(this_ptr: number): number {
19839         if(!isWasmInitialized) {
19840                 throw new Error("initializeWasm() must be awaited first!");
19841         }
19842         const nativeResponseValue = wasm.TS_ChannelDetails_get_force_close_spend_delay(this_ptr);
19843         return nativeResponseValue;
19844 }
19845         // void ChannelDetails_set_force_close_spend_delay(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u16Z val);
19846 /* @internal */
19847 export function ChannelDetails_set_force_close_spend_delay(this_ptr: number, val: number): void {
19848         if(!isWasmInitialized) {
19849                 throw new Error("initializeWasm() must be awaited first!");
19850         }
19851         const nativeResponseValue = wasm.TS_ChannelDetails_set_force_close_spend_delay(this_ptr, val);
19852         // debug statements here
19853 }
19854         // bool ChannelDetails_get_is_outbound(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19855 /* @internal */
19856 export function ChannelDetails_get_is_outbound(this_ptr: number): boolean {
19857         if(!isWasmInitialized) {
19858                 throw new Error("initializeWasm() must be awaited first!");
19859         }
19860         const nativeResponseValue = wasm.TS_ChannelDetails_get_is_outbound(this_ptr);
19861         return nativeResponseValue;
19862 }
19863         // void ChannelDetails_set_is_outbound(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
19864 /* @internal */
19865 export function ChannelDetails_set_is_outbound(this_ptr: number, val: boolean): void {
19866         if(!isWasmInitialized) {
19867                 throw new Error("initializeWasm() must be awaited first!");
19868         }
19869         const nativeResponseValue = wasm.TS_ChannelDetails_set_is_outbound(this_ptr, val);
19870         // debug statements here
19871 }
19872         // bool ChannelDetails_get_is_channel_ready(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19873 /* @internal */
19874 export function ChannelDetails_get_is_channel_ready(this_ptr: number): boolean {
19875         if(!isWasmInitialized) {
19876                 throw new Error("initializeWasm() must be awaited first!");
19877         }
19878         const nativeResponseValue = wasm.TS_ChannelDetails_get_is_channel_ready(this_ptr);
19879         return nativeResponseValue;
19880 }
19881         // void ChannelDetails_set_is_channel_ready(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
19882 /* @internal */
19883 export function ChannelDetails_set_is_channel_ready(this_ptr: number, val: boolean): void {
19884         if(!isWasmInitialized) {
19885                 throw new Error("initializeWasm() must be awaited first!");
19886         }
19887         const nativeResponseValue = wasm.TS_ChannelDetails_set_is_channel_ready(this_ptr, val);
19888         // debug statements here
19889 }
19890         // bool ChannelDetails_get_is_usable(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19891 /* @internal */
19892 export function ChannelDetails_get_is_usable(this_ptr: number): boolean {
19893         if(!isWasmInitialized) {
19894                 throw new Error("initializeWasm() must be awaited first!");
19895         }
19896         const nativeResponseValue = wasm.TS_ChannelDetails_get_is_usable(this_ptr);
19897         return nativeResponseValue;
19898 }
19899         // void ChannelDetails_set_is_usable(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
19900 /* @internal */
19901 export function ChannelDetails_set_is_usable(this_ptr: number, val: boolean): void {
19902         if(!isWasmInitialized) {
19903                 throw new Error("initializeWasm() must be awaited first!");
19904         }
19905         const nativeResponseValue = wasm.TS_ChannelDetails_set_is_usable(this_ptr, val);
19906         // debug statements here
19907 }
19908         // bool ChannelDetails_get_is_public(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19909 /* @internal */
19910 export function ChannelDetails_get_is_public(this_ptr: number): boolean {
19911         if(!isWasmInitialized) {
19912                 throw new Error("initializeWasm() must be awaited first!");
19913         }
19914         const nativeResponseValue = wasm.TS_ChannelDetails_get_is_public(this_ptr);
19915         return nativeResponseValue;
19916 }
19917         // void ChannelDetails_set_is_public(struct LDKChannelDetails *NONNULL_PTR this_ptr, bool val);
19918 /* @internal */
19919 export function ChannelDetails_set_is_public(this_ptr: number, val: boolean): void {
19920         if(!isWasmInitialized) {
19921                 throw new Error("initializeWasm() must be awaited first!");
19922         }
19923         const nativeResponseValue = wasm.TS_ChannelDetails_set_is_public(this_ptr, val);
19924         // debug statements here
19925 }
19926         // struct LDKCOption_u64Z ChannelDetails_get_inbound_htlc_minimum_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19927 /* @internal */
19928 export function ChannelDetails_get_inbound_htlc_minimum_msat(this_ptr: number): number {
19929         if(!isWasmInitialized) {
19930                 throw new Error("initializeWasm() must be awaited first!");
19931         }
19932         const nativeResponseValue = wasm.TS_ChannelDetails_get_inbound_htlc_minimum_msat(this_ptr);
19933         return nativeResponseValue;
19934 }
19935         // void ChannelDetails_set_inbound_htlc_minimum_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19936 /* @internal */
19937 export function ChannelDetails_set_inbound_htlc_minimum_msat(this_ptr: number, val: number): void {
19938         if(!isWasmInitialized) {
19939                 throw new Error("initializeWasm() must be awaited first!");
19940         }
19941         const nativeResponseValue = wasm.TS_ChannelDetails_set_inbound_htlc_minimum_msat(this_ptr, val);
19942         // debug statements here
19943 }
19944         // struct LDKCOption_u64Z ChannelDetails_get_inbound_htlc_maximum_msat(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19945 /* @internal */
19946 export function ChannelDetails_get_inbound_htlc_maximum_msat(this_ptr: number): number {
19947         if(!isWasmInitialized) {
19948                 throw new Error("initializeWasm() must be awaited first!");
19949         }
19950         const nativeResponseValue = wasm.TS_ChannelDetails_get_inbound_htlc_maximum_msat(this_ptr);
19951         return nativeResponseValue;
19952 }
19953         // void ChannelDetails_set_inbound_htlc_maximum_msat(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
19954 /* @internal */
19955 export function ChannelDetails_set_inbound_htlc_maximum_msat(this_ptr: number, val: number): void {
19956         if(!isWasmInitialized) {
19957                 throw new Error("initializeWasm() must be awaited first!");
19958         }
19959         const nativeResponseValue = wasm.TS_ChannelDetails_set_inbound_htlc_maximum_msat(this_ptr, val);
19960         // debug statements here
19961 }
19962         // struct LDKChannelConfig ChannelDetails_get_config(const struct LDKChannelDetails *NONNULL_PTR this_ptr);
19963 /* @internal */
19964 export function ChannelDetails_get_config(this_ptr: number): number {
19965         if(!isWasmInitialized) {
19966                 throw new Error("initializeWasm() must be awaited first!");
19967         }
19968         const nativeResponseValue = wasm.TS_ChannelDetails_get_config(this_ptr);
19969         return nativeResponseValue;
19970 }
19971         // void ChannelDetails_set_config(struct LDKChannelDetails *NONNULL_PTR this_ptr, struct LDKChannelConfig val);
19972 /* @internal */
19973 export function ChannelDetails_set_config(this_ptr: number, val: number): void {
19974         if(!isWasmInitialized) {
19975                 throw new Error("initializeWasm() must be awaited first!");
19976         }
19977         const nativeResponseValue = wasm.TS_ChannelDetails_set_config(this_ptr, val);
19978         // debug statements here
19979 }
19980         // MUST_USE_RES struct LDKChannelDetails ChannelDetails_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKChannelCounterparty counterparty_arg, struct LDKOutPoint funding_txo_arg, struct LDKChannelTypeFeatures channel_type_arg, struct LDKCOption_u64Z short_channel_id_arg, struct LDKCOption_u64Z outbound_scid_alias_arg, struct LDKCOption_u64Z inbound_scid_alias_arg, uint64_t channel_value_satoshis_arg, struct LDKCOption_u64Z unspendable_punishment_reserve_arg, uint64_t user_channel_id_arg, uint64_t balance_msat_arg, uint64_t outbound_capacity_msat_arg, uint64_t next_outbound_htlc_limit_msat_arg, uint64_t inbound_capacity_msat_arg, struct LDKCOption_u32Z confirmations_required_arg, struct LDKCOption_u16Z force_close_spend_delay_arg, bool is_outbound_arg, bool is_channel_ready_arg, bool is_usable_arg, bool is_public_arg, struct LDKCOption_u64Z inbound_htlc_minimum_msat_arg, struct LDKCOption_u64Z inbound_htlc_maximum_msat_arg, struct LDKChannelConfig config_arg);
19981 /* @internal */
19982 export function ChannelDetails_new(channel_id_arg: number, counterparty_arg: number, funding_txo_arg: number, channel_type_arg: number, short_channel_id_arg: number, outbound_scid_alias_arg: number, inbound_scid_alias_arg: number, channel_value_satoshis_arg: bigint, unspendable_punishment_reserve_arg: number, user_channel_id_arg: bigint, balance_msat_arg: bigint, outbound_capacity_msat_arg: bigint, next_outbound_htlc_limit_msat_arg: bigint, inbound_capacity_msat_arg: bigint, confirmations_required_arg: number, force_close_spend_delay_arg: number, is_outbound_arg: boolean, is_channel_ready_arg: boolean, is_usable_arg: boolean, is_public_arg: boolean, inbound_htlc_minimum_msat_arg: number, inbound_htlc_maximum_msat_arg: number, config_arg: number): number {
19983         if(!isWasmInitialized) {
19984                 throw new Error("initializeWasm() must be awaited first!");
19985         }
19986         const nativeResponseValue = wasm.TS_ChannelDetails_new(channel_id_arg, counterparty_arg, funding_txo_arg, channel_type_arg, short_channel_id_arg, outbound_scid_alias_arg, inbound_scid_alias_arg, channel_value_satoshis_arg, unspendable_punishment_reserve_arg, user_channel_id_arg, balance_msat_arg, outbound_capacity_msat_arg, next_outbound_htlc_limit_msat_arg, inbound_capacity_msat_arg, confirmations_required_arg, force_close_spend_delay_arg, is_outbound_arg, is_channel_ready_arg, is_usable_arg, is_public_arg, inbound_htlc_minimum_msat_arg, inbound_htlc_maximum_msat_arg, config_arg);
19987         return nativeResponseValue;
19988 }
19989         // uintptr_t ChannelDetails_clone_ptr(LDKChannelDetails *NONNULL_PTR arg);
19990 /* @internal */
19991 export function ChannelDetails_clone_ptr(arg: number): number {
19992         if(!isWasmInitialized) {
19993                 throw new Error("initializeWasm() must be awaited first!");
19994         }
19995         const nativeResponseValue = wasm.TS_ChannelDetails_clone_ptr(arg);
19996         return nativeResponseValue;
19997 }
19998         // struct LDKChannelDetails ChannelDetails_clone(const struct LDKChannelDetails *NONNULL_PTR orig);
19999 /* @internal */
20000 export function ChannelDetails_clone(orig: number): number {
20001         if(!isWasmInitialized) {
20002                 throw new Error("initializeWasm() must be awaited first!");
20003         }
20004         const nativeResponseValue = wasm.TS_ChannelDetails_clone(orig);
20005         return nativeResponseValue;
20006 }
20007         // MUST_USE_RES struct LDKCOption_u64Z ChannelDetails_get_inbound_payment_scid(const struct LDKChannelDetails *NONNULL_PTR this_arg);
20008 /* @internal */
20009 export function ChannelDetails_get_inbound_payment_scid(this_arg: number): number {
20010         if(!isWasmInitialized) {
20011                 throw new Error("initializeWasm() must be awaited first!");
20012         }
20013         const nativeResponseValue = wasm.TS_ChannelDetails_get_inbound_payment_scid(this_arg);
20014         return nativeResponseValue;
20015 }
20016         // MUST_USE_RES struct LDKCOption_u64Z ChannelDetails_get_outbound_payment_scid(const struct LDKChannelDetails *NONNULL_PTR this_arg);
20017 /* @internal */
20018 export function ChannelDetails_get_outbound_payment_scid(this_arg: number): number {
20019         if(!isWasmInitialized) {
20020                 throw new Error("initializeWasm() must be awaited first!");
20021         }
20022         const nativeResponseValue = wasm.TS_ChannelDetails_get_outbound_payment_scid(this_arg);
20023         return nativeResponseValue;
20024 }
20025         // void PaymentSendFailure_free(struct LDKPaymentSendFailure this_ptr);
20026 /* @internal */
20027 export function PaymentSendFailure_free(this_ptr: number): void {
20028         if(!isWasmInitialized) {
20029                 throw new Error("initializeWasm() must be awaited first!");
20030         }
20031         const nativeResponseValue = wasm.TS_PaymentSendFailure_free(this_ptr);
20032         // debug statements here
20033 }
20034         // uintptr_t PaymentSendFailure_clone_ptr(LDKPaymentSendFailure *NONNULL_PTR arg);
20035 /* @internal */
20036 export function PaymentSendFailure_clone_ptr(arg: number): number {
20037         if(!isWasmInitialized) {
20038                 throw new Error("initializeWasm() must be awaited first!");
20039         }
20040         const nativeResponseValue = wasm.TS_PaymentSendFailure_clone_ptr(arg);
20041         return nativeResponseValue;
20042 }
20043         // struct LDKPaymentSendFailure PaymentSendFailure_clone(const struct LDKPaymentSendFailure *NONNULL_PTR orig);
20044 /* @internal */
20045 export function PaymentSendFailure_clone(orig: number): number {
20046         if(!isWasmInitialized) {
20047                 throw new Error("initializeWasm() must be awaited first!");
20048         }
20049         const nativeResponseValue = wasm.TS_PaymentSendFailure_clone(orig);
20050         return nativeResponseValue;
20051 }
20052         // struct LDKPaymentSendFailure PaymentSendFailure_parameter_error(struct LDKAPIError a);
20053 /* @internal */
20054 export function PaymentSendFailure_parameter_error(a: number): number {
20055         if(!isWasmInitialized) {
20056                 throw new Error("initializeWasm() must be awaited first!");
20057         }
20058         const nativeResponseValue = wasm.TS_PaymentSendFailure_parameter_error(a);
20059         return nativeResponseValue;
20060 }
20061         // struct LDKPaymentSendFailure PaymentSendFailure_path_parameter_error(struct LDKCVec_CResult_NoneAPIErrorZZ a);
20062 /* @internal */
20063 export function PaymentSendFailure_path_parameter_error(a: number): number {
20064         if(!isWasmInitialized) {
20065                 throw new Error("initializeWasm() must be awaited first!");
20066         }
20067         const nativeResponseValue = wasm.TS_PaymentSendFailure_path_parameter_error(a);
20068         return nativeResponseValue;
20069 }
20070         // struct LDKPaymentSendFailure PaymentSendFailure_all_failed_retry_safe(struct LDKCVec_APIErrorZ a);
20071 /* @internal */
20072 export function PaymentSendFailure_all_failed_retry_safe(a: number): number {
20073         if(!isWasmInitialized) {
20074                 throw new Error("initializeWasm() must be awaited first!");
20075         }
20076         const nativeResponseValue = wasm.TS_PaymentSendFailure_all_failed_retry_safe(a);
20077         return nativeResponseValue;
20078 }
20079         // struct LDKPaymentSendFailure PaymentSendFailure_partial_failure(struct LDKCVec_CResult_NoneAPIErrorZZ results, struct LDKRouteParameters failed_paths_retry, struct LDKThirtyTwoBytes payment_id);
20080 /* @internal */
20081 export function PaymentSendFailure_partial_failure(results: number, failed_paths_retry: number, payment_id: number): number {
20082         if(!isWasmInitialized) {
20083                 throw new Error("initializeWasm() must be awaited first!");
20084         }
20085         const nativeResponseValue = wasm.TS_PaymentSendFailure_partial_failure(results, failed_paths_retry, payment_id);
20086         return nativeResponseValue;
20087 }
20088         // void PhantomRouteHints_free(struct LDKPhantomRouteHints this_obj);
20089 /* @internal */
20090 export function PhantomRouteHints_free(this_obj: number): void {
20091         if(!isWasmInitialized) {
20092                 throw new Error("initializeWasm() must be awaited first!");
20093         }
20094         const nativeResponseValue = wasm.TS_PhantomRouteHints_free(this_obj);
20095         // debug statements here
20096 }
20097         // struct LDKCVec_ChannelDetailsZ PhantomRouteHints_get_channels(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
20098 /* @internal */
20099 export function PhantomRouteHints_get_channels(this_ptr: number): number {
20100         if(!isWasmInitialized) {
20101                 throw new Error("initializeWasm() must be awaited first!");
20102         }
20103         const nativeResponseValue = wasm.TS_PhantomRouteHints_get_channels(this_ptr);
20104         return nativeResponseValue;
20105 }
20106         // void PhantomRouteHints_set_channels(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, struct LDKCVec_ChannelDetailsZ val);
20107 /* @internal */
20108 export function PhantomRouteHints_set_channels(this_ptr: number, val: number): void {
20109         if(!isWasmInitialized) {
20110                 throw new Error("initializeWasm() must be awaited first!");
20111         }
20112         const nativeResponseValue = wasm.TS_PhantomRouteHints_set_channels(this_ptr, val);
20113         // debug statements here
20114 }
20115         // uint64_t PhantomRouteHints_get_phantom_scid(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
20116 /* @internal */
20117 export function PhantomRouteHints_get_phantom_scid(this_ptr: number): bigint {
20118         if(!isWasmInitialized) {
20119                 throw new Error("initializeWasm() must be awaited first!");
20120         }
20121         const nativeResponseValue = wasm.TS_PhantomRouteHints_get_phantom_scid(this_ptr);
20122         return nativeResponseValue;
20123 }
20124         // void PhantomRouteHints_set_phantom_scid(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, uint64_t val);
20125 /* @internal */
20126 export function PhantomRouteHints_set_phantom_scid(this_ptr: number, val: bigint): void {
20127         if(!isWasmInitialized) {
20128                 throw new Error("initializeWasm() must be awaited first!");
20129         }
20130         const nativeResponseValue = wasm.TS_PhantomRouteHints_set_phantom_scid(this_ptr, val);
20131         // debug statements here
20132 }
20133         // struct LDKPublicKey PhantomRouteHints_get_real_node_pubkey(const struct LDKPhantomRouteHints *NONNULL_PTR this_ptr);
20134 /* @internal */
20135 export function PhantomRouteHints_get_real_node_pubkey(this_ptr: number): number {
20136         if(!isWasmInitialized) {
20137                 throw new Error("initializeWasm() must be awaited first!");
20138         }
20139         const nativeResponseValue = wasm.TS_PhantomRouteHints_get_real_node_pubkey(this_ptr);
20140         return nativeResponseValue;
20141 }
20142         // void PhantomRouteHints_set_real_node_pubkey(struct LDKPhantomRouteHints *NONNULL_PTR this_ptr, struct LDKPublicKey val);
20143 /* @internal */
20144 export function PhantomRouteHints_set_real_node_pubkey(this_ptr: number, val: number): void {
20145         if(!isWasmInitialized) {
20146                 throw new Error("initializeWasm() must be awaited first!");
20147         }
20148         const nativeResponseValue = wasm.TS_PhantomRouteHints_set_real_node_pubkey(this_ptr, val);
20149         // debug statements here
20150 }
20151         // MUST_USE_RES struct LDKPhantomRouteHints PhantomRouteHints_new(struct LDKCVec_ChannelDetailsZ channels_arg, uint64_t phantom_scid_arg, struct LDKPublicKey real_node_pubkey_arg);
20152 /* @internal */
20153 export function PhantomRouteHints_new(channels_arg: number, phantom_scid_arg: bigint, real_node_pubkey_arg: number): number {
20154         if(!isWasmInitialized) {
20155                 throw new Error("initializeWasm() must be awaited first!");
20156         }
20157         const nativeResponseValue = wasm.TS_PhantomRouteHints_new(channels_arg, phantom_scid_arg, real_node_pubkey_arg);
20158         return nativeResponseValue;
20159 }
20160         // uintptr_t PhantomRouteHints_clone_ptr(LDKPhantomRouteHints *NONNULL_PTR arg);
20161 /* @internal */
20162 export function PhantomRouteHints_clone_ptr(arg: number): number {
20163         if(!isWasmInitialized) {
20164                 throw new Error("initializeWasm() must be awaited first!");
20165         }
20166         const nativeResponseValue = wasm.TS_PhantomRouteHints_clone_ptr(arg);
20167         return nativeResponseValue;
20168 }
20169         // struct LDKPhantomRouteHints PhantomRouteHints_clone(const struct LDKPhantomRouteHints *NONNULL_PTR orig);
20170 /* @internal */
20171 export function PhantomRouteHints_clone(orig: number): number {
20172         if(!isWasmInitialized) {
20173                 throw new Error("initializeWasm() must be awaited first!");
20174         }
20175         const nativeResponseValue = wasm.TS_PhantomRouteHints_clone(orig);
20176         return nativeResponseValue;
20177 }
20178         // MUST_USE_RES struct LDKChannelManager ChannelManager_new(struct LDKFeeEstimator fee_est, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKLogger logger, struct LDKKeysInterface keys_manager, struct LDKUserConfig config, struct LDKChainParameters params);
20179 /* @internal */
20180 export function ChannelManager_new(fee_est: number, chain_monitor: number, tx_broadcaster: number, logger: number, keys_manager: number, config: number, params: number): number {
20181         if(!isWasmInitialized) {
20182                 throw new Error("initializeWasm() must be awaited first!");
20183         }
20184         const nativeResponseValue = wasm.TS_ChannelManager_new(fee_est, chain_monitor, tx_broadcaster, logger, keys_manager, config, params);
20185         return nativeResponseValue;
20186 }
20187         // MUST_USE_RES struct LDKUserConfig ChannelManager_get_current_default_configuration(const struct LDKChannelManager *NONNULL_PTR this_arg);
20188 /* @internal */
20189 export function ChannelManager_get_current_default_configuration(this_arg: number): number {
20190         if(!isWasmInitialized) {
20191                 throw new Error("initializeWasm() must be awaited first!");
20192         }
20193         const nativeResponseValue = wasm.TS_ChannelManager_get_current_default_configuration(this_arg);
20194         return nativeResponseValue;
20195 }
20196         // MUST_USE_RES struct LDKCResult__u832APIErrorZ ChannelManager_create_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey their_network_key, uint64_t channel_value_satoshis, uint64_t push_msat, uint64_t user_channel_id, struct LDKUserConfig override_config);
20197 /* @internal */
20198 export function ChannelManager_create_channel(this_arg: number, their_network_key: number, channel_value_satoshis: bigint, push_msat: bigint, user_channel_id: bigint, override_config: number): number {
20199         if(!isWasmInitialized) {
20200                 throw new Error("initializeWasm() must be awaited first!");
20201         }
20202         const nativeResponseValue = wasm.TS_ChannelManager_create_channel(this_arg, their_network_key, channel_value_satoshis, push_msat, user_channel_id, override_config);
20203         return nativeResponseValue;
20204 }
20205         // MUST_USE_RES struct LDKCVec_ChannelDetailsZ ChannelManager_list_channels(const struct LDKChannelManager *NONNULL_PTR this_arg);
20206 /* @internal */
20207 export function ChannelManager_list_channels(this_arg: number): number {
20208         if(!isWasmInitialized) {
20209                 throw new Error("initializeWasm() must be awaited first!");
20210         }
20211         const nativeResponseValue = wasm.TS_ChannelManager_list_channels(this_arg);
20212         return nativeResponseValue;
20213 }
20214         // MUST_USE_RES struct LDKCVec_ChannelDetailsZ ChannelManager_list_usable_channels(const struct LDKChannelManager *NONNULL_PTR this_arg);
20215 /* @internal */
20216 export function ChannelManager_list_usable_channels(this_arg: number): number {
20217         if(!isWasmInitialized) {
20218                 throw new Error("initializeWasm() must be awaited first!");
20219         }
20220         const nativeResponseValue = wasm.TS_ChannelManager_list_usable_channels(this_arg);
20221         return nativeResponseValue;
20222 }
20223         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_close_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
20224 /* @internal */
20225 export function ChannelManager_close_channel(this_arg: number, channel_id: number, counterparty_node_id: number): number {
20226         if(!isWasmInitialized) {
20227                 throw new Error("initializeWasm() must be awaited first!");
20228         }
20229         const nativeResponseValue = wasm.TS_ChannelManager_close_channel(this_arg, channel_id, counterparty_node_id);
20230         return nativeResponseValue;
20231 }
20232         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_close_channel_with_target_feerate(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id, uint32_t target_feerate_sats_per_1000_weight);
20233 /* @internal */
20234 export function ChannelManager_close_channel_with_target_feerate(this_arg: number, channel_id: number, counterparty_node_id: number, target_feerate_sats_per_1000_weight: number): number {
20235         if(!isWasmInitialized) {
20236                 throw new Error("initializeWasm() must be awaited first!");
20237         }
20238         const nativeResponseValue = wasm.TS_ChannelManager_close_channel_with_target_feerate(this_arg, channel_id, counterparty_node_id, target_feerate_sats_per_1000_weight);
20239         return nativeResponseValue;
20240 }
20241         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_force_close_broadcasting_latest_txn(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
20242 /* @internal */
20243 export function ChannelManager_force_close_broadcasting_latest_txn(this_arg: number, channel_id: number, counterparty_node_id: number): number {
20244         if(!isWasmInitialized) {
20245                 throw new Error("initializeWasm() must be awaited first!");
20246         }
20247         const nativeResponseValue = wasm.TS_ChannelManager_force_close_broadcasting_latest_txn(this_arg, channel_id, counterparty_node_id);
20248         return nativeResponseValue;
20249 }
20250         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_force_close_without_broadcasting_txn(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*channel_id)[32], struct LDKPublicKey counterparty_node_id);
20251 /* @internal */
20252 export function ChannelManager_force_close_without_broadcasting_txn(this_arg: number, channel_id: number, counterparty_node_id: number): number {
20253         if(!isWasmInitialized) {
20254                 throw new Error("initializeWasm() must be awaited first!");
20255         }
20256         const nativeResponseValue = wasm.TS_ChannelManager_force_close_without_broadcasting_txn(this_arg, channel_id, counterparty_node_id);
20257         return nativeResponseValue;
20258 }
20259         // void ChannelManager_force_close_all_channels_broadcasting_latest_txn(const struct LDKChannelManager *NONNULL_PTR this_arg);
20260 /* @internal */
20261 export function ChannelManager_force_close_all_channels_broadcasting_latest_txn(this_arg: number): void {
20262         if(!isWasmInitialized) {
20263                 throw new Error("initializeWasm() must be awaited first!");
20264         }
20265         const nativeResponseValue = wasm.TS_ChannelManager_force_close_all_channels_broadcasting_latest_txn(this_arg);
20266         // debug statements here
20267 }
20268         // void ChannelManager_force_close_all_channels_without_broadcasting_txn(const struct LDKChannelManager *NONNULL_PTR this_arg);
20269 /* @internal */
20270 export function ChannelManager_force_close_all_channels_without_broadcasting_txn(this_arg: number): void {
20271         if(!isWasmInitialized) {
20272                 throw new Error("initializeWasm() must be awaited first!");
20273         }
20274         const nativeResponseValue = wasm.TS_ChannelManager_force_close_all_channels_without_broadcasting_txn(this_arg);
20275         // debug statements here
20276 }
20277         // MUST_USE_RES struct LDKCResult_PaymentIdPaymentSendFailureZ ChannelManager_send_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_secret);
20278 /* @internal */
20279 export function ChannelManager_send_payment(this_arg: number, route: number, payment_hash: number, payment_secret: number): number {
20280         if(!isWasmInitialized) {
20281                 throw new Error("initializeWasm() must be awaited first!");
20282         }
20283         const nativeResponseValue = wasm.TS_ChannelManager_send_payment(this_arg, route, payment_hash, payment_secret);
20284         return nativeResponseValue;
20285 }
20286         // MUST_USE_RES struct LDKCResult_NonePaymentSendFailureZ ChannelManager_retry_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_id);
20287 /* @internal */
20288 export function ChannelManager_retry_payment(this_arg: number, route: number, payment_id: number): number {
20289         if(!isWasmInitialized) {
20290                 throw new Error("initializeWasm() must be awaited first!");
20291         }
20292         const nativeResponseValue = wasm.TS_ChannelManager_retry_payment(this_arg, route, payment_id);
20293         return nativeResponseValue;
20294 }
20295         // void ChannelManager_abandon_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_id);
20296 /* @internal */
20297 export function ChannelManager_abandon_payment(this_arg: number, payment_id: number): void {
20298         if(!isWasmInitialized) {
20299                 throw new Error("initializeWasm() must be awaited first!");
20300         }
20301         const nativeResponseValue = wasm.TS_ChannelManager_abandon_payment(this_arg, payment_id);
20302         // debug statements here
20303 }
20304         // MUST_USE_RES struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ ChannelManager_send_spontaneous_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, const struct LDKRoute *NONNULL_PTR route, struct LDKThirtyTwoBytes payment_preimage);
20305 /* @internal */
20306 export function ChannelManager_send_spontaneous_payment(this_arg: number, route: number, payment_preimage: number): number {
20307         if(!isWasmInitialized) {
20308                 throw new Error("initializeWasm() must be awaited first!");
20309         }
20310         const nativeResponseValue = wasm.TS_ChannelManager_send_spontaneous_payment(this_arg, route, payment_preimage);
20311         return nativeResponseValue;
20312 }
20313         // MUST_USE_RES struct LDKCResult_C2Tuple_PaymentHashPaymentIdZPaymentSendFailureZ ChannelManager_send_probe(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCVec_RouteHopZ hops);
20314 /* @internal */
20315 export function ChannelManager_send_probe(this_arg: number, hops: number): number {
20316         if(!isWasmInitialized) {
20317                 throw new Error("initializeWasm() must be awaited first!");
20318         }
20319         const nativeResponseValue = wasm.TS_ChannelManager_send_probe(this_arg, hops);
20320         return nativeResponseValue;
20321 }
20322         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_funding_transaction_generated(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, struct LDKTransaction funding_transaction);
20323 /* @internal */
20324 export function ChannelManager_funding_transaction_generated(this_arg: number, temporary_channel_id: number, counterparty_node_id: number, funding_transaction: number): number {
20325         if(!isWasmInitialized) {
20326                 throw new Error("initializeWasm() must be awaited first!");
20327         }
20328         const nativeResponseValue = wasm.TS_ChannelManager_funding_transaction_generated(this_arg, temporary_channel_id, counterparty_node_id, funding_transaction);
20329         return nativeResponseValue;
20330 }
20331         // void ChannelManager_broadcast_node_announcement(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThreeBytes rgb, struct LDKThirtyTwoBytes alias, struct LDKCVec_NetAddressZ addresses);
20332 /* @internal */
20333 export function ChannelManager_broadcast_node_announcement(this_arg: number, rgb: number, alias: number, addresses: number): void {
20334         if(!isWasmInitialized) {
20335                 throw new Error("initializeWasm() must be awaited first!");
20336         }
20337         const nativeResponseValue = wasm.TS_ChannelManager_broadcast_node_announcement(this_arg, rgb, alias, addresses);
20338         // debug statements here
20339 }
20340         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_update_channel_config(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKPublicKey counterparty_node_id, struct LDKCVec_ThirtyTwoBytesZ channel_ids, const struct LDKChannelConfig *NONNULL_PTR config);
20341 /* @internal */
20342 export function ChannelManager_update_channel_config(this_arg: number, counterparty_node_id: number, channel_ids: number, config: number): number {
20343         if(!isWasmInitialized) {
20344                 throw new Error("initializeWasm() must be awaited first!");
20345         }
20346         const nativeResponseValue = wasm.TS_ChannelManager_update_channel_config(this_arg, counterparty_node_id, channel_ids, config);
20347         return nativeResponseValue;
20348 }
20349         // void ChannelManager_process_pending_htlc_forwards(const struct LDKChannelManager *NONNULL_PTR this_arg);
20350 /* @internal */
20351 export function ChannelManager_process_pending_htlc_forwards(this_arg: number): void {
20352         if(!isWasmInitialized) {
20353                 throw new Error("initializeWasm() must be awaited first!");
20354         }
20355         const nativeResponseValue = wasm.TS_ChannelManager_process_pending_htlc_forwards(this_arg);
20356         // debug statements here
20357 }
20358         // void ChannelManager_timer_tick_occurred(const struct LDKChannelManager *NONNULL_PTR this_arg);
20359 /* @internal */
20360 export function ChannelManager_timer_tick_occurred(this_arg: number): void {
20361         if(!isWasmInitialized) {
20362                 throw new Error("initializeWasm() must be awaited first!");
20363         }
20364         const nativeResponseValue = wasm.TS_ChannelManager_timer_tick_occurred(this_arg);
20365         // debug statements here
20366 }
20367         // void ChannelManager_fail_htlc_backwards(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*payment_hash)[32]);
20368 /* @internal */
20369 export function ChannelManager_fail_htlc_backwards(this_arg: number, payment_hash: number): void {
20370         if(!isWasmInitialized) {
20371                 throw new Error("initializeWasm() must be awaited first!");
20372         }
20373         const nativeResponseValue = wasm.TS_ChannelManager_fail_htlc_backwards(this_arg, payment_hash);
20374         // debug statements here
20375 }
20376         // void ChannelManager_claim_funds(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_preimage);
20377 /* @internal */
20378 export function ChannelManager_claim_funds(this_arg: number, payment_preimage: number): void {
20379         if(!isWasmInitialized) {
20380                 throw new Error("initializeWasm() must be awaited first!");
20381         }
20382         const nativeResponseValue = wasm.TS_ChannelManager_claim_funds(this_arg, payment_preimage);
20383         // debug statements here
20384 }
20385         // MUST_USE_RES struct LDKPublicKey ChannelManager_get_our_node_id(const struct LDKChannelManager *NONNULL_PTR this_arg);
20386 /* @internal */
20387 export function ChannelManager_get_our_node_id(this_arg: number): number {
20388         if(!isWasmInitialized) {
20389                 throw new Error("initializeWasm() must be awaited first!");
20390         }
20391         const nativeResponseValue = wasm.TS_ChannelManager_get_our_node_id(this_arg);
20392         return nativeResponseValue;
20393 }
20394         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_accept_inbound_channel(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, uint64_t user_channel_id);
20395 /* @internal */
20396 export function ChannelManager_accept_inbound_channel(this_arg: number, temporary_channel_id: number, counterparty_node_id: number, user_channel_id: bigint): number {
20397         if(!isWasmInitialized) {
20398                 throw new Error("initializeWasm() must be awaited first!");
20399         }
20400         const nativeResponseValue = wasm.TS_ChannelManager_accept_inbound_channel(this_arg, temporary_channel_id, counterparty_node_id, user_channel_id);
20401         return nativeResponseValue;
20402 }
20403         // MUST_USE_RES struct LDKCResult_NoneAPIErrorZ ChannelManager_accept_inbound_channel_from_trusted_peer_0conf(const struct LDKChannelManager *NONNULL_PTR this_arg, const uint8_t (*temporary_channel_id)[32], struct LDKPublicKey counterparty_node_id, uint64_t user_channel_id);
20404 /* @internal */
20405 export function ChannelManager_accept_inbound_channel_from_trusted_peer_0conf(this_arg: number, temporary_channel_id: number, counterparty_node_id: number, user_channel_id: bigint): number {
20406         if(!isWasmInitialized) {
20407                 throw new Error("initializeWasm() must be awaited first!");
20408         }
20409         const nativeResponseValue = wasm.TS_ChannelManager_accept_inbound_channel_from_trusted_peer_0conf(this_arg, temporary_channel_id, counterparty_node_id, user_channel_id);
20410         return nativeResponseValue;
20411 }
20412         // MUST_USE_RES struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ ChannelManager_create_inbound_payment(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs);
20413 /* @internal */
20414 export function ChannelManager_create_inbound_payment(this_arg: number, min_value_msat: number, invoice_expiry_delta_secs: number): number {
20415         if(!isWasmInitialized) {
20416                 throw new Error("initializeWasm() must be awaited first!");
20417         }
20418         const nativeResponseValue = wasm.TS_ChannelManager_create_inbound_payment(this_arg, min_value_msat, invoice_expiry_delta_secs);
20419         return nativeResponseValue;
20420 }
20421         // MUST_USE_RES struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZAPIErrorZ ChannelManager_create_inbound_payment_legacy(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs);
20422 /* @internal */
20423 export function ChannelManager_create_inbound_payment_legacy(this_arg: number, min_value_msat: number, invoice_expiry_delta_secs: number): number {
20424         if(!isWasmInitialized) {
20425                 throw new Error("initializeWasm() must be awaited first!");
20426         }
20427         const nativeResponseValue = wasm.TS_ChannelManager_create_inbound_payment_legacy(this_arg, min_value_msat, invoice_expiry_delta_secs);
20428         return nativeResponseValue;
20429 }
20430         // MUST_USE_RES struct LDKCResult_PaymentSecretNoneZ ChannelManager_create_inbound_payment_for_hash(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs);
20431 /* @internal */
20432 export function ChannelManager_create_inbound_payment_for_hash(this_arg: number, payment_hash: number, min_value_msat: number, invoice_expiry_delta_secs: number): number {
20433         if(!isWasmInitialized) {
20434                 throw new Error("initializeWasm() must be awaited first!");
20435         }
20436         const nativeResponseValue = wasm.TS_ChannelManager_create_inbound_payment_for_hash(this_arg, payment_hash, min_value_msat, invoice_expiry_delta_secs);
20437         return nativeResponseValue;
20438 }
20439         // MUST_USE_RES struct LDKCResult_PaymentSecretAPIErrorZ ChannelManager_create_inbound_payment_for_hash_legacy(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs);
20440 /* @internal */
20441 export function ChannelManager_create_inbound_payment_for_hash_legacy(this_arg: number, payment_hash: number, min_value_msat: number, invoice_expiry_delta_secs: number): number {
20442         if(!isWasmInitialized) {
20443                 throw new Error("initializeWasm() must be awaited first!");
20444         }
20445         const nativeResponseValue = wasm.TS_ChannelManager_create_inbound_payment_for_hash_legacy(this_arg, payment_hash, min_value_msat, invoice_expiry_delta_secs);
20446         return nativeResponseValue;
20447 }
20448         // MUST_USE_RES struct LDKCResult_PaymentPreimageAPIErrorZ ChannelManager_get_payment_preimage(const struct LDKChannelManager *NONNULL_PTR this_arg, struct LDKThirtyTwoBytes payment_hash, struct LDKThirtyTwoBytes payment_secret);
20449 /* @internal */
20450 export function ChannelManager_get_payment_preimage(this_arg: number, payment_hash: number, payment_secret: number): number {
20451         if(!isWasmInitialized) {
20452                 throw new Error("initializeWasm() must be awaited first!");
20453         }
20454         const nativeResponseValue = wasm.TS_ChannelManager_get_payment_preimage(this_arg, payment_hash, payment_secret);
20455         return nativeResponseValue;
20456 }
20457         // MUST_USE_RES uint64_t ChannelManager_get_phantom_scid(const struct LDKChannelManager *NONNULL_PTR this_arg);
20458 /* @internal */
20459 export function ChannelManager_get_phantom_scid(this_arg: number): bigint {
20460         if(!isWasmInitialized) {
20461                 throw new Error("initializeWasm() must be awaited first!");
20462         }
20463         const nativeResponseValue = wasm.TS_ChannelManager_get_phantom_scid(this_arg);
20464         return nativeResponseValue;
20465 }
20466         // MUST_USE_RES struct LDKPhantomRouteHints ChannelManager_get_phantom_route_hints(const struct LDKChannelManager *NONNULL_PTR this_arg);
20467 /* @internal */
20468 export function ChannelManager_get_phantom_route_hints(this_arg: number): number {
20469         if(!isWasmInitialized) {
20470                 throw new Error("initializeWasm() must be awaited first!");
20471         }
20472         const nativeResponseValue = wasm.TS_ChannelManager_get_phantom_route_hints(this_arg);
20473         return nativeResponseValue;
20474 }
20475         // struct LDKMessageSendEventsProvider ChannelManager_as_MessageSendEventsProvider(const struct LDKChannelManager *NONNULL_PTR this_arg);
20476 /* @internal */
20477 export function ChannelManager_as_MessageSendEventsProvider(this_arg: number): number {
20478         if(!isWasmInitialized) {
20479                 throw new Error("initializeWasm() must be awaited first!");
20480         }
20481         const nativeResponseValue = wasm.TS_ChannelManager_as_MessageSendEventsProvider(this_arg);
20482         return nativeResponseValue;
20483 }
20484         // struct LDKEventsProvider ChannelManager_as_EventsProvider(const struct LDKChannelManager *NONNULL_PTR this_arg);
20485 /* @internal */
20486 export function ChannelManager_as_EventsProvider(this_arg: number): number {
20487         if(!isWasmInitialized) {
20488                 throw new Error("initializeWasm() must be awaited first!");
20489         }
20490         const nativeResponseValue = wasm.TS_ChannelManager_as_EventsProvider(this_arg);
20491         return nativeResponseValue;
20492 }
20493         // struct LDKListen ChannelManager_as_Listen(const struct LDKChannelManager *NONNULL_PTR this_arg);
20494 /* @internal */
20495 export function ChannelManager_as_Listen(this_arg: number): number {
20496         if(!isWasmInitialized) {
20497                 throw new Error("initializeWasm() must be awaited first!");
20498         }
20499         const nativeResponseValue = wasm.TS_ChannelManager_as_Listen(this_arg);
20500         return nativeResponseValue;
20501 }
20502         // struct LDKConfirm ChannelManager_as_Confirm(const struct LDKChannelManager *NONNULL_PTR this_arg);
20503 /* @internal */
20504 export function ChannelManager_as_Confirm(this_arg: number): number {
20505         if(!isWasmInitialized) {
20506                 throw new Error("initializeWasm() must be awaited first!");
20507         }
20508         const nativeResponseValue = wasm.TS_ChannelManager_as_Confirm(this_arg);
20509         return nativeResponseValue;
20510 }
20511         // void ChannelManager_await_persistable_update(const struct LDKChannelManager *NONNULL_PTR this_arg);
20512 /* @internal */
20513 export function ChannelManager_await_persistable_update(this_arg: number): void {
20514         if(!isWasmInitialized) {
20515                 throw new Error("initializeWasm() must be awaited first!");
20516         }
20517         const nativeResponseValue = wasm.TS_ChannelManager_await_persistable_update(this_arg);
20518         // debug statements here
20519 }
20520         // MUST_USE_RES struct LDKBestBlock ChannelManager_current_best_block(const struct LDKChannelManager *NONNULL_PTR this_arg);
20521 /* @internal */
20522 export function ChannelManager_current_best_block(this_arg: number): number {
20523         if(!isWasmInitialized) {
20524                 throw new Error("initializeWasm() must be awaited first!");
20525         }
20526         const nativeResponseValue = wasm.TS_ChannelManager_current_best_block(this_arg);
20527         return nativeResponseValue;
20528 }
20529         // struct LDKChannelMessageHandler ChannelManager_as_ChannelMessageHandler(const struct LDKChannelManager *NONNULL_PTR this_arg);
20530 /* @internal */
20531 export function ChannelManager_as_ChannelMessageHandler(this_arg: number): number {
20532         if(!isWasmInitialized) {
20533                 throw new Error("initializeWasm() must be awaited first!");
20534         }
20535         const nativeResponseValue = wasm.TS_ChannelManager_as_ChannelMessageHandler(this_arg);
20536         return nativeResponseValue;
20537 }
20538         // struct LDKCVec_u8Z CounterpartyForwardingInfo_write(const struct LDKCounterpartyForwardingInfo *NONNULL_PTR obj);
20539 /* @internal */
20540 export function CounterpartyForwardingInfo_write(obj: number): number {
20541         if(!isWasmInitialized) {
20542                 throw new Error("initializeWasm() must be awaited first!");
20543         }
20544         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_write(obj);
20545         return nativeResponseValue;
20546 }
20547         // struct LDKCResult_CounterpartyForwardingInfoDecodeErrorZ CounterpartyForwardingInfo_read(struct LDKu8slice ser);
20548 /* @internal */
20549 export function CounterpartyForwardingInfo_read(ser: number): number {
20550         if(!isWasmInitialized) {
20551                 throw new Error("initializeWasm() must be awaited first!");
20552         }
20553         const nativeResponseValue = wasm.TS_CounterpartyForwardingInfo_read(ser);
20554         return nativeResponseValue;
20555 }
20556         // struct LDKCVec_u8Z ChannelCounterparty_write(const struct LDKChannelCounterparty *NONNULL_PTR obj);
20557 /* @internal */
20558 export function ChannelCounterparty_write(obj: number): number {
20559         if(!isWasmInitialized) {
20560                 throw new Error("initializeWasm() must be awaited first!");
20561         }
20562         const nativeResponseValue = wasm.TS_ChannelCounterparty_write(obj);
20563         return nativeResponseValue;
20564 }
20565         // struct LDKCResult_ChannelCounterpartyDecodeErrorZ ChannelCounterparty_read(struct LDKu8slice ser);
20566 /* @internal */
20567 export function ChannelCounterparty_read(ser: number): number {
20568         if(!isWasmInitialized) {
20569                 throw new Error("initializeWasm() must be awaited first!");
20570         }
20571         const nativeResponseValue = wasm.TS_ChannelCounterparty_read(ser);
20572         return nativeResponseValue;
20573 }
20574         // struct LDKCVec_u8Z ChannelDetails_write(const struct LDKChannelDetails *NONNULL_PTR obj);
20575 /* @internal */
20576 export function ChannelDetails_write(obj: number): number {
20577         if(!isWasmInitialized) {
20578                 throw new Error("initializeWasm() must be awaited first!");
20579         }
20580         const nativeResponseValue = wasm.TS_ChannelDetails_write(obj);
20581         return nativeResponseValue;
20582 }
20583         // struct LDKCResult_ChannelDetailsDecodeErrorZ ChannelDetails_read(struct LDKu8slice ser);
20584 /* @internal */
20585 export function ChannelDetails_read(ser: number): number {
20586         if(!isWasmInitialized) {
20587                 throw new Error("initializeWasm() must be awaited first!");
20588         }
20589         const nativeResponseValue = wasm.TS_ChannelDetails_read(ser);
20590         return nativeResponseValue;
20591 }
20592         // struct LDKCVec_u8Z PhantomRouteHints_write(const struct LDKPhantomRouteHints *NONNULL_PTR obj);
20593 /* @internal */
20594 export function PhantomRouteHints_write(obj: number): number {
20595         if(!isWasmInitialized) {
20596                 throw new Error("initializeWasm() must be awaited first!");
20597         }
20598         const nativeResponseValue = wasm.TS_PhantomRouteHints_write(obj);
20599         return nativeResponseValue;
20600 }
20601         // struct LDKCResult_PhantomRouteHintsDecodeErrorZ PhantomRouteHints_read(struct LDKu8slice ser);
20602 /* @internal */
20603 export function PhantomRouteHints_read(ser: number): number {
20604         if(!isWasmInitialized) {
20605                 throw new Error("initializeWasm() must be awaited first!");
20606         }
20607         const nativeResponseValue = wasm.TS_PhantomRouteHints_read(ser);
20608         return nativeResponseValue;
20609 }
20610         // struct LDKCVec_u8Z ChannelManager_write(const struct LDKChannelManager *NONNULL_PTR obj);
20611 /* @internal */
20612 export function ChannelManager_write(obj: number): number {
20613         if(!isWasmInitialized) {
20614                 throw new Error("initializeWasm() must be awaited first!");
20615         }
20616         const nativeResponseValue = wasm.TS_ChannelManager_write(obj);
20617         return nativeResponseValue;
20618 }
20619         // void ChannelManagerReadArgs_free(struct LDKChannelManagerReadArgs this_obj);
20620 /* @internal */
20621 export function ChannelManagerReadArgs_free(this_obj: number): void {
20622         if(!isWasmInitialized) {
20623                 throw new Error("initializeWasm() must be awaited first!");
20624         }
20625         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_free(this_obj);
20626         // debug statements here
20627 }
20628         // const struct LDKKeysInterface *ChannelManagerReadArgs_get_keys_manager(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20629 /* @internal */
20630 export function ChannelManagerReadArgs_get_keys_manager(this_ptr: number): number {
20631         if(!isWasmInitialized) {
20632                 throw new Error("initializeWasm() must be awaited first!");
20633         }
20634         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_keys_manager(this_ptr);
20635         return nativeResponseValue;
20636 }
20637         // void ChannelManagerReadArgs_set_keys_manager(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKKeysInterface val);
20638 /* @internal */
20639 export function ChannelManagerReadArgs_set_keys_manager(this_ptr: number, val: number): void {
20640         if(!isWasmInitialized) {
20641                 throw new Error("initializeWasm() must be awaited first!");
20642         }
20643         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_keys_manager(this_ptr, val);
20644         // debug statements here
20645 }
20646         // const struct LDKFeeEstimator *ChannelManagerReadArgs_get_fee_estimator(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20647 /* @internal */
20648 export function ChannelManagerReadArgs_get_fee_estimator(this_ptr: number): number {
20649         if(!isWasmInitialized) {
20650                 throw new Error("initializeWasm() must be awaited first!");
20651         }
20652         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_fee_estimator(this_ptr);
20653         return nativeResponseValue;
20654 }
20655         // void ChannelManagerReadArgs_set_fee_estimator(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKFeeEstimator val);
20656 /* @internal */
20657 export function ChannelManagerReadArgs_set_fee_estimator(this_ptr: number, val: number): void {
20658         if(!isWasmInitialized) {
20659                 throw new Error("initializeWasm() must be awaited first!");
20660         }
20661         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_fee_estimator(this_ptr, val);
20662         // debug statements here
20663 }
20664         // const struct LDKWatch *ChannelManagerReadArgs_get_chain_monitor(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20665 /* @internal */
20666 export function ChannelManagerReadArgs_get_chain_monitor(this_ptr: number): number {
20667         if(!isWasmInitialized) {
20668                 throw new Error("initializeWasm() must be awaited first!");
20669         }
20670         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_chain_monitor(this_ptr);
20671         return nativeResponseValue;
20672 }
20673         // void ChannelManagerReadArgs_set_chain_monitor(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKWatch val);
20674 /* @internal */
20675 export function ChannelManagerReadArgs_set_chain_monitor(this_ptr: number, val: number): void {
20676         if(!isWasmInitialized) {
20677                 throw new Error("initializeWasm() must be awaited first!");
20678         }
20679         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_chain_monitor(this_ptr, val);
20680         // debug statements here
20681 }
20682         // const struct LDKBroadcasterInterface *ChannelManagerReadArgs_get_tx_broadcaster(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20683 /* @internal */
20684 export function ChannelManagerReadArgs_get_tx_broadcaster(this_ptr: number): number {
20685         if(!isWasmInitialized) {
20686                 throw new Error("initializeWasm() must be awaited first!");
20687         }
20688         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_tx_broadcaster(this_ptr);
20689         return nativeResponseValue;
20690 }
20691         // void ChannelManagerReadArgs_set_tx_broadcaster(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKBroadcasterInterface val);
20692 /* @internal */
20693 export function ChannelManagerReadArgs_set_tx_broadcaster(this_ptr: number, val: number): void {
20694         if(!isWasmInitialized) {
20695                 throw new Error("initializeWasm() must be awaited first!");
20696         }
20697         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_tx_broadcaster(this_ptr, val);
20698         // debug statements here
20699 }
20700         // const struct LDKLogger *ChannelManagerReadArgs_get_logger(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20701 /* @internal */
20702 export function ChannelManagerReadArgs_get_logger(this_ptr: number): number {
20703         if(!isWasmInitialized) {
20704                 throw new Error("initializeWasm() must be awaited first!");
20705         }
20706         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_logger(this_ptr);
20707         return nativeResponseValue;
20708 }
20709         // void ChannelManagerReadArgs_set_logger(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKLogger val);
20710 /* @internal */
20711 export function ChannelManagerReadArgs_set_logger(this_ptr: number, val: number): void {
20712         if(!isWasmInitialized) {
20713                 throw new Error("initializeWasm() must be awaited first!");
20714         }
20715         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_logger(this_ptr, val);
20716         // debug statements here
20717 }
20718         // struct LDKUserConfig ChannelManagerReadArgs_get_default_config(const struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr);
20719 /* @internal */
20720 export function ChannelManagerReadArgs_get_default_config(this_ptr: number): number {
20721         if(!isWasmInitialized) {
20722                 throw new Error("initializeWasm() must be awaited first!");
20723         }
20724         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_get_default_config(this_ptr);
20725         return nativeResponseValue;
20726 }
20727         // void ChannelManagerReadArgs_set_default_config(struct LDKChannelManagerReadArgs *NONNULL_PTR this_ptr, struct LDKUserConfig val);
20728 /* @internal */
20729 export function ChannelManagerReadArgs_set_default_config(this_ptr: number, val: number): void {
20730         if(!isWasmInitialized) {
20731                 throw new Error("initializeWasm() must be awaited first!");
20732         }
20733         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_set_default_config(this_ptr, val);
20734         // debug statements here
20735 }
20736         // MUST_USE_RES struct LDKChannelManagerReadArgs ChannelManagerReadArgs_new(struct LDKKeysInterface keys_manager, struct LDKFeeEstimator fee_estimator, struct LDKWatch chain_monitor, struct LDKBroadcasterInterface tx_broadcaster, struct LDKLogger logger, struct LDKUserConfig default_config, struct LDKCVec_ChannelMonitorZ channel_monitors);
20737 /* @internal */
20738 export function ChannelManagerReadArgs_new(keys_manager: number, fee_estimator: number, chain_monitor: number, tx_broadcaster: number, logger: number, default_config: number, channel_monitors: number): number {
20739         if(!isWasmInitialized) {
20740                 throw new Error("initializeWasm() must be awaited first!");
20741         }
20742         const nativeResponseValue = wasm.TS_ChannelManagerReadArgs_new(keys_manager, fee_estimator, chain_monitor, tx_broadcaster, logger, default_config, channel_monitors);
20743         return nativeResponseValue;
20744 }
20745         // struct LDKCResult_C2Tuple_BlockHashChannelManagerZDecodeErrorZ C2Tuple_BlockHashChannelManagerZ_read(struct LDKu8slice ser, struct LDKChannelManagerReadArgs arg);
20746 /* @internal */
20747 export function C2Tuple_BlockHashChannelManagerZ_read(ser: number, arg: number): number {
20748         if(!isWasmInitialized) {
20749                 throw new Error("initializeWasm() must be awaited first!");
20750         }
20751         const nativeResponseValue = wasm.TS_C2Tuple_BlockHashChannelManagerZ_read(ser, arg);
20752         return nativeResponseValue;
20753 }
20754         // void ExpandedKey_free(struct LDKExpandedKey this_obj);
20755 /* @internal */
20756 export function ExpandedKey_free(this_obj: number): void {
20757         if(!isWasmInitialized) {
20758                 throw new Error("initializeWasm() must be awaited first!");
20759         }
20760         const nativeResponseValue = wasm.TS_ExpandedKey_free(this_obj);
20761         // debug statements here
20762 }
20763         // MUST_USE_RES struct LDKExpandedKey ExpandedKey_new(const uint8_t (*key_material)[32]);
20764 /* @internal */
20765 export function ExpandedKey_new(key_material: number): number {
20766         if(!isWasmInitialized) {
20767                 throw new Error("initializeWasm() must be awaited first!");
20768         }
20769         const nativeResponseValue = wasm.TS_ExpandedKey_new(key_material);
20770         return nativeResponseValue;
20771 }
20772         // struct LDKCResult_C2Tuple_PaymentHashPaymentSecretZNoneZ create(const struct LDKExpandedKey *NONNULL_PTR keys, struct LDKCOption_u64Z min_value_msat, uint32_t invoice_expiry_delta_secs, const struct LDKKeysInterface *NONNULL_PTR keys_manager, uint64_t current_time);
20773 /* @internal */
20774 export function create(keys: number, min_value_msat: number, invoice_expiry_delta_secs: number, keys_manager: number, current_time: bigint): number {
20775         if(!isWasmInitialized) {
20776                 throw new Error("initializeWasm() must be awaited first!");
20777         }
20778         const nativeResponseValue = wasm.TS_create(keys, min_value_msat, invoice_expiry_delta_secs, keys_manager, current_time);
20779         return nativeResponseValue;
20780 }
20781         // struct LDKCResult_PaymentSecretNoneZ create_from_hash(const struct LDKExpandedKey *NONNULL_PTR keys, struct LDKCOption_u64Z min_value_msat, struct LDKThirtyTwoBytes payment_hash, uint32_t invoice_expiry_delta_secs, uint64_t current_time);
20782 /* @internal */
20783 export function create_from_hash(keys: number, min_value_msat: number, payment_hash: number, invoice_expiry_delta_secs: number, current_time: bigint): number {
20784         if(!isWasmInitialized) {
20785                 throw new Error("initializeWasm() must be awaited first!");
20786         }
20787         const nativeResponseValue = wasm.TS_create_from_hash(keys, min_value_msat, payment_hash, invoice_expiry_delta_secs, current_time);
20788         return nativeResponseValue;
20789 }
20790         // void DecodeError_free(struct LDKDecodeError this_obj);
20791 /* @internal */
20792 export function DecodeError_free(this_obj: number): void {
20793         if(!isWasmInitialized) {
20794                 throw new Error("initializeWasm() must be awaited first!");
20795         }
20796         const nativeResponseValue = wasm.TS_DecodeError_free(this_obj);
20797         // debug statements here
20798 }
20799         // uintptr_t DecodeError_clone_ptr(LDKDecodeError *NONNULL_PTR arg);
20800 /* @internal */
20801 export function DecodeError_clone_ptr(arg: number): number {
20802         if(!isWasmInitialized) {
20803                 throw new Error("initializeWasm() must be awaited first!");
20804         }
20805         const nativeResponseValue = wasm.TS_DecodeError_clone_ptr(arg);
20806         return nativeResponseValue;
20807 }
20808         // struct LDKDecodeError DecodeError_clone(const struct LDKDecodeError *NONNULL_PTR orig);
20809 /* @internal */
20810 export function DecodeError_clone(orig: number): number {
20811         if(!isWasmInitialized) {
20812                 throw new Error("initializeWasm() must be awaited first!");
20813         }
20814         const nativeResponseValue = wasm.TS_DecodeError_clone(orig);
20815         return nativeResponseValue;
20816 }
20817         // void Init_free(struct LDKInit this_obj);
20818 /* @internal */
20819 export function Init_free(this_obj: number): void {
20820         if(!isWasmInitialized) {
20821                 throw new Error("initializeWasm() must be awaited first!");
20822         }
20823         const nativeResponseValue = wasm.TS_Init_free(this_obj);
20824         // debug statements here
20825 }
20826         // struct LDKInitFeatures Init_get_features(const struct LDKInit *NONNULL_PTR this_ptr);
20827 /* @internal */
20828 export function Init_get_features(this_ptr: number): number {
20829         if(!isWasmInitialized) {
20830                 throw new Error("initializeWasm() must be awaited first!");
20831         }
20832         const nativeResponseValue = wasm.TS_Init_get_features(this_ptr);
20833         return nativeResponseValue;
20834 }
20835         // void Init_set_features(struct LDKInit *NONNULL_PTR this_ptr, struct LDKInitFeatures val);
20836 /* @internal */
20837 export function Init_set_features(this_ptr: number, val: number): void {
20838         if(!isWasmInitialized) {
20839                 throw new Error("initializeWasm() must be awaited first!");
20840         }
20841         const nativeResponseValue = wasm.TS_Init_set_features(this_ptr, val);
20842         // debug statements here
20843 }
20844         // struct LDKCOption_NetAddressZ Init_get_remote_network_address(const struct LDKInit *NONNULL_PTR this_ptr);
20845 /* @internal */
20846 export function Init_get_remote_network_address(this_ptr: number): number {
20847         if(!isWasmInitialized) {
20848                 throw new Error("initializeWasm() must be awaited first!");
20849         }
20850         const nativeResponseValue = wasm.TS_Init_get_remote_network_address(this_ptr);
20851         return nativeResponseValue;
20852 }
20853         // void Init_set_remote_network_address(struct LDKInit *NONNULL_PTR this_ptr, struct LDKCOption_NetAddressZ val);
20854 /* @internal */
20855 export function Init_set_remote_network_address(this_ptr: number, val: number): void {
20856         if(!isWasmInitialized) {
20857                 throw new Error("initializeWasm() must be awaited first!");
20858         }
20859         const nativeResponseValue = wasm.TS_Init_set_remote_network_address(this_ptr, val);
20860         // debug statements here
20861 }
20862         // MUST_USE_RES struct LDKInit Init_new(struct LDKInitFeatures features_arg, struct LDKCOption_NetAddressZ remote_network_address_arg);
20863 /* @internal */
20864 export function Init_new(features_arg: number, remote_network_address_arg: number): number {
20865         if(!isWasmInitialized) {
20866                 throw new Error("initializeWasm() must be awaited first!");
20867         }
20868         const nativeResponseValue = wasm.TS_Init_new(features_arg, remote_network_address_arg);
20869         return nativeResponseValue;
20870 }
20871         // uintptr_t Init_clone_ptr(LDKInit *NONNULL_PTR arg);
20872 /* @internal */
20873 export function Init_clone_ptr(arg: number): number {
20874         if(!isWasmInitialized) {
20875                 throw new Error("initializeWasm() must be awaited first!");
20876         }
20877         const nativeResponseValue = wasm.TS_Init_clone_ptr(arg);
20878         return nativeResponseValue;
20879 }
20880         // struct LDKInit Init_clone(const struct LDKInit *NONNULL_PTR orig);
20881 /* @internal */
20882 export function Init_clone(orig: number): number {
20883         if(!isWasmInitialized) {
20884                 throw new Error("initializeWasm() must be awaited first!");
20885         }
20886         const nativeResponseValue = wasm.TS_Init_clone(orig);
20887         return nativeResponseValue;
20888 }
20889         // void ErrorMessage_free(struct LDKErrorMessage this_obj);
20890 /* @internal */
20891 export function ErrorMessage_free(this_obj: number): void {
20892         if(!isWasmInitialized) {
20893                 throw new Error("initializeWasm() must be awaited first!");
20894         }
20895         const nativeResponseValue = wasm.TS_ErrorMessage_free(this_obj);
20896         // debug statements here
20897 }
20898         // const uint8_t (*ErrorMessage_get_channel_id(const struct LDKErrorMessage *NONNULL_PTR this_ptr))[32];
20899 /* @internal */
20900 export function ErrorMessage_get_channel_id(this_ptr: number): number {
20901         if(!isWasmInitialized) {
20902                 throw new Error("initializeWasm() must be awaited first!");
20903         }
20904         const nativeResponseValue = wasm.TS_ErrorMessage_get_channel_id(this_ptr);
20905         return nativeResponseValue;
20906 }
20907         // void ErrorMessage_set_channel_id(struct LDKErrorMessage *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
20908 /* @internal */
20909 export function ErrorMessage_set_channel_id(this_ptr: number, val: number): void {
20910         if(!isWasmInitialized) {
20911                 throw new Error("initializeWasm() must be awaited first!");
20912         }
20913         const nativeResponseValue = wasm.TS_ErrorMessage_set_channel_id(this_ptr, val);
20914         // debug statements here
20915 }
20916         // struct LDKStr ErrorMessage_get_data(const struct LDKErrorMessage *NONNULL_PTR this_ptr);
20917 /* @internal */
20918 export function ErrorMessage_get_data(this_ptr: number): number {
20919         if(!isWasmInitialized) {
20920                 throw new Error("initializeWasm() must be awaited first!");
20921         }
20922         const nativeResponseValue = wasm.TS_ErrorMessage_get_data(this_ptr);
20923         return nativeResponseValue;
20924 }
20925         // void ErrorMessage_set_data(struct LDKErrorMessage *NONNULL_PTR this_ptr, struct LDKStr val);
20926 /* @internal */
20927 export function ErrorMessage_set_data(this_ptr: number, val: number): void {
20928         if(!isWasmInitialized) {
20929                 throw new Error("initializeWasm() must be awaited first!");
20930         }
20931         const nativeResponseValue = wasm.TS_ErrorMessage_set_data(this_ptr, val);
20932         // debug statements here
20933 }
20934         // MUST_USE_RES struct LDKErrorMessage ErrorMessage_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKStr data_arg);
20935 /* @internal */
20936 export function ErrorMessage_new(channel_id_arg: number, data_arg: number): number {
20937         if(!isWasmInitialized) {
20938                 throw new Error("initializeWasm() must be awaited first!");
20939         }
20940         const nativeResponseValue = wasm.TS_ErrorMessage_new(channel_id_arg, data_arg);
20941         return nativeResponseValue;
20942 }
20943         // uintptr_t ErrorMessage_clone_ptr(LDKErrorMessage *NONNULL_PTR arg);
20944 /* @internal */
20945 export function ErrorMessage_clone_ptr(arg: number): number {
20946         if(!isWasmInitialized) {
20947                 throw new Error("initializeWasm() must be awaited first!");
20948         }
20949         const nativeResponseValue = wasm.TS_ErrorMessage_clone_ptr(arg);
20950         return nativeResponseValue;
20951 }
20952         // struct LDKErrorMessage ErrorMessage_clone(const struct LDKErrorMessage *NONNULL_PTR orig);
20953 /* @internal */
20954 export function ErrorMessage_clone(orig: number): number {
20955         if(!isWasmInitialized) {
20956                 throw new Error("initializeWasm() must be awaited first!");
20957         }
20958         const nativeResponseValue = wasm.TS_ErrorMessage_clone(orig);
20959         return nativeResponseValue;
20960 }
20961         // void WarningMessage_free(struct LDKWarningMessage this_obj);
20962 /* @internal */
20963 export function WarningMessage_free(this_obj: number): void {
20964         if(!isWasmInitialized) {
20965                 throw new Error("initializeWasm() must be awaited first!");
20966         }
20967         const nativeResponseValue = wasm.TS_WarningMessage_free(this_obj);
20968         // debug statements here
20969 }
20970         // const uint8_t (*WarningMessage_get_channel_id(const struct LDKWarningMessage *NONNULL_PTR this_ptr))[32];
20971 /* @internal */
20972 export function WarningMessage_get_channel_id(this_ptr: number): number {
20973         if(!isWasmInitialized) {
20974                 throw new Error("initializeWasm() must be awaited first!");
20975         }
20976         const nativeResponseValue = wasm.TS_WarningMessage_get_channel_id(this_ptr);
20977         return nativeResponseValue;
20978 }
20979         // void WarningMessage_set_channel_id(struct LDKWarningMessage *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
20980 /* @internal */
20981 export function WarningMessage_set_channel_id(this_ptr: number, val: number): void {
20982         if(!isWasmInitialized) {
20983                 throw new Error("initializeWasm() must be awaited first!");
20984         }
20985         const nativeResponseValue = wasm.TS_WarningMessage_set_channel_id(this_ptr, val);
20986         // debug statements here
20987 }
20988         // struct LDKStr WarningMessage_get_data(const struct LDKWarningMessage *NONNULL_PTR this_ptr);
20989 /* @internal */
20990 export function WarningMessage_get_data(this_ptr: number): number {
20991         if(!isWasmInitialized) {
20992                 throw new Error("initializeWasm() must be awaited first!");
20993         }
20994         const nativeResponseValue = wasm.TS_WarningMessage_get_data(this_ptr);
20995         return nativeResponseValue;
20996 }
20997         // void WarningMessage_set_data(struct LDKWarningMessage *NONNULL_PTR this_ptr, struct LDKStr val);
20998 /* @internal */
20999 export function WarningMessage_set_data(this_ptr: number, val: number): void {
21000         if(!isWasmInitialized) {
21001                 throw new Error("initializeWasm() must be awaited first!");
21002         }
21003         const nativeResponseValue = wasm.TS_WarningMessage_set_data(this_ptr, val);
21004         // debug statements here
21005 }
21006         // MUST_USE_RES struct LDKWarningMessage WarningMessage_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKStr data_arg);
21007 /* @internal */
21008 export function WarningMessage_new(channel_id_arg: number, data_arg: number): number {
21009         if(!isWasmInitialized) {
21010                 throw new Error("initializeWasm() must be awaited first!");
21011         }
21012         const nativeResponseValue = wasm.TS_WarningMessage_new(channel_id_arg, data_arg);
21013         return nativeResponseValue;
21014 }
21015         // uintptr_t WarningMessage_clone_ptr(LDKWarningMessage *NONNULL_PTR arg);
21016 /* @internal */
21017 export function WarningMessage_clone_ptr(arg: number): number {
21018         if(!isWasmInitialized) {
21019                 throw new Error("initializeWasm() must be awaited first!");
21020         }
21021         const nativeResponseValue = wasm.TS_WarningMessage_clone_ptr(arg);
21022         return nativeResponseValue;
21023 }
21024         // struct LDKWarningMessage WarningMessage_clone(const struct LDKWarningMessage *NONNULL_PTR orig);
21025 /* @internal */
21026 export function WarningMessage_clone(orig: number): number {
21027         if(!isWasmInitialized) {
21028                 throw new Error("initializeWasm() must be awaited first!");
21029         }
21030         const nativeResponseValue = wasm.TS_WarningMessage_clone(orig);
21031         return nativeResponseValue;
21032 }
21033         // void Ping_free(struct LDKPing this_obj);
21034 /* @internal */
21035 export function Ping_free(this_obj: number): void {
21036         if(!isWasmInitialized) {
21037                 throw new Error("initializeWasm() must be awaited first!");
21038         }
21039         const nativeResponseValue = wasm.TS_Ping_free(this_obj);
21040         // debug statements here
21041 }
21042         // uint16_t Ping_get_ponglen(const struct LDKPing *NONNULL_PTR this_ptr);
21043 /* @internal */
21044 export function Ping_get_ponglen(this_ptr: number): number {
21045         if(!isWasmInitialized) {
21046                 throw new Error("initializeWasm() must be awaited first!");
21047         }
21048         const nativeResponseValue = wasm.TS_Ping_get_ponglen(this_ptr);
21049         return nativeResponseValue;
21050 }
21051         // void Ping_set_ponglen(struct LDKPing *NONNULL_PTR this_ptr, uint16_t val);
21052 /* @internal */
21053 export function Ping_set_ponglen(this_ptr: number, val: number): void {
21054         if(!isWasmInitialized) {
21055                 throw new Error("initializeWasm() must be awaited first!");
21056         }
21057         const nativeResponseValue = wasm.TS_Ping_set_ponglen(this_ptr, val);
21058         // debug statements here
21059 }
21060         // uint16_t Ping_get_byteslen(const struct LDKPing *NONNULL_PTR this_ptr);
21061 /* @internal */
21062 export function Ping_get_byteslen(this_ptr: number): number {
21063         if(!isWasmInitialized) {
21064                 throw new Error("initializeWasm() must be awaited first!");
21065         }
21066         const nativeResponseValue = wasm.TS_Ping_get_byteslen(this_ptr);
21067         return nativeResponseValue;
21068 }
21069         // void Ping_set_byteslen(struct LDKPing *NONNULL_PTR this_ptr, uint16_t val);
21070 /* @internal */
21071 export function Ping_set_byteslen(this_ptr: number, val: number): void {
21072         if(!isWasmInitialized) {
21073                 throw new Error("initializeWasm() must be awaited first!");
21074         }
21075         const nativeResponseValue = wasm.TS_Ping_set_byteslen(this_ptr, val);
21076         // debug statements here
21077 }
21078         // MUST_USE_RES struct LDKPing Ping_new(uint16_t ponglen_arg, uint16_t byteslen_arg);
21079 /* @internal */
21080 export function Ping_new(ponglen_arg: number, byteslen_arg: number): number {
21081         if(!isWasmInitialized) {
21082                 throw new Error("initializeWasm() must be awaited first!");
21083         }
21084         const nativeResponseValue = wasm.TS_Ping_new(ponglen_arg, byteslen_arg);
21085         return nativeResponseValue;
21086 }
21087         // uintptr_t Ping_clone_ptr(LDKPing *NONNULL_PTR arg);
21088 /* @internal */
21089 export function Ping_clone_ptr(arg: number): number {
21090         if(!isWasmInitialized) {
21091                 throw new Error("initializeWasm() must be awaited first!");
21092         }
21093         const nativeResponseValue = wasm.TS_Ping_clone_ptr(arg);
21094         return nativeResponseValue;
21095 }
21096         // struct LDKPing Ping_clone(const struct LDKPing *NONNULL_PTR orig);
21097 /* @internal */
21098 export function Ping_clone(orig: number): number {
21099         if(!isWasmInitialized) {
21100                 throw new Error("initializeWasm() must be awaited first!");
21101         }
21102         const nativeResponseValue = wasm.TS_Ping_clone(orig);
21103         return nativeResponseValue;
21104 }
21105         // void Pong_free(struct LDKPong this_obj);
21106 /* @internal */
21107 export function Pong_free(this_obj: number): void {
21108         if(!isWasmInitialized) {
21109                 throw new Error("initializeWasm() must be awaited first!");
21110         }
21111         const nativeResponseValue = wasm.TS_Pong_free(this_obj);
21112         // debug statements here
21113 }
21114         // uint16_t Pong_get_byteslen(const struct LDKPong *NONNULL_PTR this_ptr);
21115 /* @internal */
21116 export function Pong_get_byteslen(this_ptr: number): number {
21117         if(!isWasmInitialized) {
21118                 throw new Error("initializeWasm() must be awaited first!");
21119         }
21120         const nativeResponseValue = wasm.TS_Pong_get_byteslen(this_ptr);
21121         return nativeResponseValue;
21122 }
21123         // void Pong_set_byteslen(struct LDKPong *NONNULL_PTR this_ptr, uint16_t val);
21124 /* @internal */
21125 export function Pong_set_byteslen(this_ptr: number, val: number): void {
21126         if(!isWasmInitialized) {
21127                 throw new Error("initializeWasm() must be awaited first!");
21128         }
21129         const nativeResponseValue = wasm.TS_Pong_set_byteslen(this_ptr, val);
21130         // debug statements here
21131 }
21132         // MUST_USE_RES struct LDKPong Pong_new(uint16_t byteslen_arg);
21133 /* @internal */
21134 export function Pong_new(byteslen_arg: number): number {
21135         if(!isWasmInitialized) {
21136                 throw new Error("initializeWasm() must be awaited first!");
21137         }
21138         const nativeResponseValue = wasm.TS_Pong_new(byteslen_arg);
21139         return nativeResponseValue;
21140 }
21141         // uintptr_t Pong_clone_ptr(LDKPong *NONNULL_PTR arg);
21142 /* @internal */
21143 export function Pong_clone_ptr(arg: number): number {
21144         if(!isWasmInitialized) {
21145                 throw new Error("initializeWasm() must be awaited first!");
21146         }
21147         const nativeResponseValue = wasm.TS_Pong_clone_ptr(arg);
21148         return nativeResponseValue;
21149 }
21150         // struct LDKPong Pong_clone(const struct LDKPong *NONNULL_PTR orig);
21151 /* @internal */
21152 export function Pong_clone(orig: number): number {
21153         if(!isWasmInitialized) {
21154                 throw new Error("initializeWasm() must be awaited first!");
21155         }
21156         const nativeResponseValue = wasm.TS_Pong_clone(orig);
21157         return nativeResponseValue;
21158 }
21159         // void OpenChannel_free(struct LDKOpenChannel this_obj);
21160 /* @internal */
21161 export function OpenChannel_free(this_obj: number): void {
21162         if(!isWasmInitialized) {
21163                 throw new Error("initializeWasm() must be awaited first!");
21164         }
21165         const nativeResponseValue = wasm.TS_OpenChannel_free(this_obj);
21166         // debug statements here
21167 }
21168         // const uint8_t (*OpenChannel_get_chain_hash(const struct LDKOpenChannel *NONNULL_PTR this_ptr))[32];
21169 /* @internal */
21170 export function OpenChannel_get_chain_hash(this_ptr: number): number {
21171         if(!isWasmInitialized) {
21172                 throw new Error("initializeWasm() must be awaited first!");
21173         }
21174         const nativeResponseValue = wasm.TS_OpenChannel_get_chain_hash(this_ptr);
21175         return nativeResponseValue;
21176 }
21177         // void OpenChannel_set_chain_hash(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21178 /* @internal */
21179 export function OpenChannel_set_chain_hash(this_ptr: number, val: number): void {
21180         if(!isWasmInitialized) {
21181                 throw new Error("initializeWasm() must be awaited first!");
21182         }
21183         const nativeResponseValue = wasm.TS_OpenChannel_set_chain_hash(this_ptr, val);
21184         // debug statements here
21185 }
21186         // const uint8_t (*OpenChannel_get_temporary_channel_id(const struct LDKOpenChannel *NONNULL_PTR this_ptr))[32];
21187 /* @internal */
21188 export function OpenChannel_get_temporary_channel_id(this_ptr: number): number {
21189         if(!isWasmInitialized) {
21190                 throw new Error("initializeWasm() must be awaited first!");
21191         }
21192         const nativeResponseValue = wasm.TS_OpenChannel_get_temporary_channel_id(this_ptr);
21193         return nativeResponseValue;
21194 }
21195         // void OpenChannel_set_temporary_channel_id(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21196 /* @internal */
21197 export function OpenChannel_set_temporary_channel_id(this_ptr: number, val: number): void {
21198         if(!isWasmInitialized) {
21199                 throw new Error("initializeWasm() must be awaited first!");
21200         }
21201         const nativeResponseValue = wasm.TS_OpenChannel_set_temporary_channel_id(this_ptr, val);
21202         // debug statements here
21203 }
21204         // uint64_t OpenChannel_get_funding_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21205 /* @internal */
21206 export function OpenChannel_get_funding_satoshis(this_ptr: number): bigint {
21207         if(!isWasmInitialized) {
21208                 throw new Error("initializeWasm() must be awaited first!");
21209         }
21210         const nativeResponseValue = wasm.TS_OpenChannel_get_funding_satoshis(this_ptr);
21211         return nativeResponseValue;
21212 }
21213         // void OpenChannel_set_funding_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21214 /* @internal */
21215 export function OpenChannel_set_funding_satoshis(this_ptr: number, val: bigint): void {
21216         if(!isWasmInitialized) {
21217                 throw new Error("initializeWasm() must be awaited first!");
21218         }
21219         const nativeResponseValue = wasm.TS_OpenChannel_set_funding_satoshis(this_ptr, val);
21220         // debug statements here
21221 }
21222         // uint64_t OpenChannel_get_push_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21223 /* @internal */
21224 export function OpenChannel_get_push_msat(this_ptr: number): bigint {
21225         if(!isWasmInitialized) {
21226                 throw new Error("initializeWasm() must be awaited first!");
21227         }
21228         const nativeResponseValue = wasm.TS_OpenChannel_get_push_msat(this_ptr);
21229         return nativeResponseValue;
21230 }
21231         // void OpenChannel_set_push_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21232 /* @internal */
21233 export function OpenChannel_set_push_msat(this_ptr: number, val: bigint): void {
21234         if(!isWasmInitialized) {
21235                 throw new Error("initializeWasm() must be awaited first!");
21236         }
21237         const nativeResponseValue = wasm.TS_OpenChannel_set_push_msat(this_ptr, val);
21238         // debug statements here
21239 }
21240         // uint64_t OpenChannel_get_dust_limit_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21241 /* @internal */
21242 export function OpenChannel_get_dust_limit_satoshis(this_ptr: number): bigint {
21243         if(!isWasmInitialized) {
21244                 throw new Error("initializeWasm() must be awaited first!");
21245         }
21246         const nativeResponseValue = wasm.TS_OpenChannel_get_dust_limit_satoshis(this_ptr);
21247         return nativeResponseValue;
21248 }
21249         // void OpenChannel_set_dust_limit_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21250 /* @internal */
21251 export function OpenChannel_set_dust_limit_satoshis(this_ptr: number, val: bigint): void {
21252         if(!isWasmInitialized) {
21253                 throw new Error("initializeWasm() must be awaited first!");
21254         }
21255         const nativeResponseValue = wasm.TS_OpenChannel_set_dust_limit_satoshis(this_ptr, val);
21256         // debug statements here
21257 }
21258         // uint64_t OpenChannel_get_max_htlc_value_in_flight_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21259 /* @internal */
21260 export function OpenChannel_get_max_htlc_value_in_flight_msat(this_ptr: number): bigint {
21261         if(!isWasmInitialized) {
21262                 throw new Error("initializeWasm() must be awaited first!");
21263         }
21264         const nativeResponseValue = wasm.TS_OpenChannel_get_max_htlc_value_in_flight_msat(this_ptr);
21265         return nativeResponseValue;
21266 }
21267         // void OpenChannel_set_max_htlc_value_in_flight_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21268 /* @internal */
21269 export function OpenChannel_set_max_htlc_value_in_flight_msat(this_ptr: number, val: bigint): void {
21270         if(!isWasmInitialized) {
21271                 throw new Error("initializeWasm() must be awaited first!");
21272         }
21273         const nativeResponseValue = wasm.TS_OpenChannel_set_max_htlc_value_in_flight_msat(this_ptr, val);
21274         // debug statements here
21275 }
21276         // uint64_t OpenChannel_get_channel_reserve_satoshis(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21277 /* @internal */
21278 export function OpenChannel_get_channel_reserve_satoshis(this_ptr: number): bigint {
21279         if(!isWasmInitialized) {
21280                 throw new Error("initializeWasm() must be awaited first!");
21281         }
21282         const nativeResponseValue = wasm.TS_OpenChannel_get_channel_reserve_satoshis(this_ptr);
21283         return nativeResponseValue;
21284 }
21285         // void OpenChannel_set_channel_reserve_satoshis(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21286 /* @internal */
21287 export function OpenChannel_set_channel_reserve_satoshis(this_ptr: number, val: bigint): void {
21288         if(!isWasmInitialized) {
21289                 throw new Error("initializeWasm() must be awaited first!");
21290         }
21291         const nativeResponseValue = wasm.TS_OpenChannel_set_channel_reserve_satoshis(this_ptr, val);
21292         // debug statements here
21293 }
21294         // uint64_t OpenChannel_get_htlc_minimum_msat(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21295 /* @internal */
21296 export function OpenChannel_get_htlc_minimum_msat(this_ptr: number): bigint {
21297         if(!isWasmInitialized) {
21298                 throw new Error("initializeWasm() must be awaited first!");
21299         }
21300         const nativeResponseValue = wasm.TS_OpenChannel_get_htlc_minimum_msat(this_ptr);
21301         return nativeResponseValue;
21302 }
21303         // void OpenChannel_set_htlc_minimum_msat(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint64_t val);
21304 /* @internal */
21305 export function OpenChannel_set_htlc_minimum_msat(this_ptr: number, val: bigint): void {
21306         if(!isWasmInitialized) {
21307                 throw new Error("initializeWasm() must be awaited first!");
21308         }
21309         const nativeResponseValue = wasm.TS_OpenChannel_set_htlc_minimum_msat(this_ptr, val);
21310         // debug statements here
21311 }
21312         // uint32_t OpenChannel_get_feerate_per_kw(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21313 /* @internal */
21314 export function OpenChannel_get_feerate_per_kw(this_ptr: number): number {
21315         if(!isWasmInitialized) {
21316                 throw new Error("initializeWasm() must be awaited first!");
21317         }
21318         const nativeResponseValue = wasm.TS_OpenChannel_get_feerate_per_kw(this_ptr);
21319         return nativeResponseValue;
21320 }
21321         // void OpenChannel_set_feerate_per_kw(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint32_t val);
21322 /* @internal */
21323 export function OpenChannel_set_feerate_per_kw(this_ptr: number, val: number): void {
21324         if(!isWasmInitialized) {
21325                 throw new Error("initializeWasm() must be awaited first!");
21326         }
21327         const nativeResponseValue = wasm.TS_OpenChannel_set_feerate_per_kw(this_ptr, val);
21328         // debug statements here
21329 }
21330         // uint16_t OpenChannel_get_to_self_delay(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21331 /* @internal */
21332 export function OpenChannel_get_to_self_delay(this_ptr: number): number {
21333         if(!isWasmInitialized) {
21334                 throw new Error("initializeWasm() must be awaited first!");
21335         }
21336         const nativeResponseValue = wasm.TS_OpenChannel_get_to_self_delay(this_ptr);
21337         return nativeResponseValue;
21338 }
21339         // void OpenChannel_set_to_self_delay(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint16_t val);
21340 /* @internal */
21341 export function OpenChannel_set_to_self_delay(this_ptr: number, val: number): void {
21342         if(!isWasmInitialized) {
21343                 throw new Error("initializeWasm() must be awaited first!");
21344         }
21345         const nativeResponseValue = wasm.TS_OpenChannel_set_to_self_delay(this_ptr, val);
21346         // debug statements here
21347 }
21348         // uint16_t OpenChannel_get_max_accepted_htlcs(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21349 /* @internal */
21350 export function OpenChannel_get_max_accepted_htlcs(this_ptr: number): number {
21351         if(!isWasmInitialized) {
21352                 throw new Error("initializeWasm() must be awaited first!");
21353         }
21354         const nativeResponseValue = wasm.TS_OpenChannel_get_max_accepted_htlcs(this_ptr);
21355         return nativeResponseValue;
21356 }
21357         // void OpenChannel_set_max_accepted_htlcs(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint16_t val);
21358 /* @internal */
21359 export function OpenChannel_set_max_accepted_htlcs(this_ptr: number, val: number): void {
21360         if(!isWasmInitialized) {
21361                 throw new Error("initializeWasm() must be awaited first!");
21362         }
21363         const nativeResponseValue = wasm.TS_OpenChannel_set_max_accepted_htlcs(this_ptr, val);
21364         // debug statements here
21365 }
21366         // struct LDKPublicKey OpenChannel_get_funding_pubkey(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21367 /* @internal */
21368 export function OpenChannel_get_funding_pubkey(this_ptr: number): number {
21369         if(!isWasmInitialized) {
21370                 throw new Error("initializeWasm() must be awaited first!");
21371         }
21372         const nativeResponseValue = wasm.TS_OpenChannel_get_funding_pubkey(this_ptr);
21373         return nativeResponseValue;
21374 }
21375         // void OpenChannel_set_funding_pubkey(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21376 /* @internal */
21377 export function OpenChannel_set_funding_pubkey(this_ptr: number, val: number): void {
21378         if(!isWasmInitialized) {
21379                 throw new Error("initializeWasm() must be awaited first!");
21380         }
21381         const nativeResponseValue = wasm.TS_OpenChannel_set_funding_pubkey(this_ptr, val);
21382         // debug statements here
21383 }
21384         // struct LDKPublicKey OpenChannel_get_revocation_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21385 /* @internal */
21386 export function OpenChannel_get_revocation_basepoint(this_ptr: number): number {
21387         if(!isWasmInitialized) {
21388                 throw new Error("initializeWasm() must be awaited first!");
21389         }
21390         const nativeResponseValue = wasm.TS_OpenChannel_get_revocation_basepoint(this_ptr);
21391         return nativeResponseValue;
21392 }
21393         // void OpenChannel_set_revocation_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21394 /* @internal */
21395 export function OpenChannel_set_revocation_basepoint(this_ptr: number, val: number): void {
21396         if(!isWasmInitialized) {
21397                 throw new Error("initializeWasm() must be awaited first!");
21398         }
21399         const nativeResponseValue = wasm.TS_OpenChannel_set_revocation_basepoint(this_ptr, val);
21400         // debug statements here
21401 }
21402         // struct LDKPublicKey OpenChannel_get_payment_point(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21403 /* @internal */
21404 export function OpenChannel_get_payment_point(this_ptr: number): number {
21405         if(!isWasmInitialized) {
21406                 throw new Error("initializeWasm() must be awaited first!");
21407         }
21408         const nativeResponseValue = wasm.TS_OpenChannel_get_payment_point(this_ptr);
21409         return nativeResponseValue;
21410 }
21411         // void OpenChannel_set_payment_point(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21412 /* @internal */
21413 export function OpenChannel_set_payment_point(this_ptr: number, val: number): void {
21414         if(!isWasmInitialized) {
21415                 throw new Error("initializeWasm() must be awaited first!");
21416         }
21417         const nativeResponseValue = wasm.TS_OpenChannel_set_payment_point(this_ptr, val);
21418         // debug statements here
21419 }
21420         // struct LDKPublicKey OpenChannel_get_delayed_payment_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21421 /* @internal */
21422 export function OpenChannel_get_delayed_payment_basepoint(this_ptr: number): number {
21423         if(!isWasmInitialized) {
21424                 throw new Error("initializeWasm() must be awaited first!");
21425         }
21426         const nativeResponseValue = wasm.TS_OpenChannel_get_delayed_payment_basepoint(this_ptr);
21427         return nativeResponseValue;
21428 }
21429         // void OpenChannel_set_delayed_payment_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21430 /* @internal */
21431 export function OpenChannel_set_delayed_payment_basepoint(this_ptr: number, val: number): void {
21432         if(!isWasmInitialized) {
21433                 throw new Error("initializeWasm() must be awaited first!");
21434         }
21435         const nativeResponseValue = wasm.TS_OpenChannel_set_delayed_payment_basepoint(this_ptr, val);
21436         // debug statements here
21437 }
21438         // struct LDKPublicKey OpenChannel_get_htlc_basepoint(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21439 /* @internal */
21440 export function OpenChannel_get_htlc_basepoint(this_ptr: number): number {
21441         if(!isWasmInitialized) {
21442                 throw new Error("initializeWasm() must be awaited first!");
21443         }
21444         const nativeResponseValue = wasm.TS_OpenChannel_get_htlc_basepoint(this_ptr);
21445         return nativeResponseValue;
21446 }
21447         // void OpenChannel_set_htlc_basepoint(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21448 /* @internal */
21449 export function OpenChannel_set_htlc_basepoint(this_ptr: number, val: number): void {
21450         if(!isWasmInitialized) {
21451                 throw new Error("initializeWasm() must be awaited first!");
21452         }
21453         const nativeResponseValue = wasm.TS_OpenChannel_set_htlc_basepoint(this_ptr, val);
21454         // debug statements here
21455 }
21456         // struct LDKPublicKey OpenChannel_get_first_per_commitment_point(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21457 /* @internal */
21458 export function OpenChannel_get_first_per_commitment_point(this_ptr: number): number {
21459         if(!isWasmInitialized) {
21460                 throw new Error("initializeWasm() must be awaited first!");
21461         }
21462         const nativeResponseValue = wasm.TS_OpenChannel_get_first_per_commitment_point(this_ptr);
21463         return nativeResponseValue;
21464 }
21465         // void OpenChannel_set_first_per_commitment_point(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21466 /* @internal */
21467 export function OpenChannel_set_first_per_commitment_point(this_ptr: number, val: number): void {
21468         if(!isWasmInitialized) {
21469                 throw new Error("initializeWasm() must be awaited first!");
21470         }
21471         const nativeResponseValue = wasm.TS_OpenChannel_set_first_per_commitment_point(this_ptr, val);
21472         // debug statements here
21473 }
21474         // uint8_t OpenChannel_get_channel_flags(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21475 /* @internal */
21476 export function OpenChannel_get_channel_flags(this_ptr: number): number {
21477         if(!isWasmInitialized) {
21478                 throw new Error("initializeWasm() must be awaited first!");
21479         }
21480         const nativeResponseValue = wasm.TS_OpenChannel_get_channel_flags(this_ptr);
21481         return nativeResponseValue;
21482 }
21483         // void OpenChannel_set_channel_flags(struct LDKOpenChannel *NONNULL_PTR this_ptr, uint8_t val);
21484 /* @internal */
21485 export function OpenChannel_set_channel_flags(this_ptr: number, val: number): void {
21486         if(!isWasmInitialized) {
21487                 throw new Error("initializeWasm() must be awaited first!");
21488         }
21489         const nativeResponseValue = wasm.TS_OpenChannel_set_channel_flags(this_ptr, val);
21490         // debug statements here
21491 }
21492         // struct LDKChannelTypeFeatures OpenChannel_get_channel_type(const struct LDKOpenChannel *NONNULL_PTR this_ptr);
21493 /* @internal */
21494 export function OpenChannel_get_channel_type(this_ptr: number): number {
21495         if(!isWasmInitialized) {
21496                 throw new Error("initializeWasm() must be awaited first!");
21497         }
21498         const nativeResponseValue = wasm.TS_OpenChannel_get_channel_type(this_ptr);
21499         return nativeResponseValue;
21500 }
21501         // void OpenChannel_set_channel_type(struct LDKOpenChannel *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
21502 /* @internal */
21503 export function OpenChannel_set_channel_type(this_ptr: number, val: number): void {
21504         if(!isWasmInitialized) {
21505                 throw new Error("initializeWasm() must be awaited first!");
21506         }
21507         const nativeResponseValue = wasm.TS_OpenChannel_set_channel_type(this_ptr, val);
21508         // debug statements here
21509 }
21510         // uintptr_t OpenChannel_clone_ptr(LDKOpenChannel *NONNULL_PTR arg);
21511 /* @internal */
21512 export function OpenChannel_clone_ptr(arg: number): number {
21513         if(!isWasmInitialized) {
21514                 throw new Error("initializeWasm() must be awaited first!");
21515         }
21516         const nativeResponseValue = wasm.TS_OpenChannel_clone_ptr(arg);
21517         return nativeResponseValue;
21518 }
21519         // struct LDKOpenChannel OpenChannel_clone(const struct LDKOpenChannel *NONNULL_PTR orig);
21520 /* @internal */
21521 export function OpenChannel_clone(orig: number): number {
21522         if(!isWasmInitialized) {
21523                 throw new Error("initializeWasm() must be awaited first!");
21524         }
21525         const nativeResponseValue = wasm.TS_OpenChannel_clone(orig);
21526         return nativeResponseValue;
21527 }
21528         // void AcceptChannel_free(struct LDKAcceptChannel this_obj);
21529 /* @internal */
21530 export function AcceptChannel_free(this_obj: number): void {
21531         if(!isWasmInitialized) {
21532                 throw new Error("initializeWasm() must be awaited first!");
21533         }
21534         const nativeResponseValue = wasm.TS_AcceptChannel_free(this_obj);
21535         // debug statements here
21536 }
21537         // const uint8_t (*AcceptChannel_get_temporary_channel_id(const struct LDKAcceptChannel *NONNULL_PTR this_ptr))[32];
21538 /* @internal */
21539 export function AcceptChannel_get_temporary_channel_id(this_ptr: number): number {
21540         if(!isWasmInitialized) {
21541                 throw new Error("initializeWasm() must be awaited first!");
21542         }
21543         const nativeResponseValue = wasm.TS_AcceptChannel_get_temporary_channel_id(this_ptr);
21544         return nativeResponseValue;
21545 }
21546         // void AcceptChannel_set_temporary_channel_id(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21547 /* @internal */
21548 export function AcceptChannel_set_temporary_channel_id(this_ptr: number, val: number): void {
21549         if(!isWasmInitialized) {
21550                 throw new Error("initializeWasm() must be awaited first!");
21551         }
21552         const nativeResponseValue = wasm.TS_AcceptChannel_set_temporary_channel_id(this_ptr, val);
21553         // debug statements here
21554 }
21555         // uint64_t AcceptChannel_get_dust_limit_satoshis(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21556 /* @internal */
21557 export function AcceptChannel_get_dust_limit_satoshis(this_ptr: number): bigint {
21558         if(!isWasmInitialized) {
21559                 throw new Error("initializeWasm() must be awaited first!");
21560         }
21561         const nativeResponseValue = wasm.TS_AcceptChannel_get_dust_limit_satoshis(this_ptr);
21562         return nativeResponseValue;
21563 }
21564         // void AcceptChannel_set_dust_limit_satoshis(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
21565 /* @internal */
21566 export function AcceptChannel_set_dust_limit_satoshis(this_ptr: number, val: bigint): void {
21567         if(!isWasmInitialized) {
21568                 throw new Error("initializeWasm() must be awaited first!");
21569         }
21570         const nativeResponseValue = wasm.TS_AcceptChannel_set_dust_limit_satoshis(this_ptr, val);
21571         // debug statements here
21572 }
21573         // uint64_t AcceptChannel_get_max_htlc_value_in_flight_msat(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21574 /* @internal */
21575 export function AcceptChannel_get_max_htlc_value_in_flight_msat(this_ptr: number): bigint {
21576         if(!isWasmInitialized) {
21577                 throw new Error("initializeWasm() must be awaited first!");
21578         }
21579         const nativeResponseValue = wasm.TS_AcceptChannel_get_max_htlc_value_in_flight_msat(this_ptr);
21580         return nativeResponseValue;
21581 }
21582         // void AcceptChannel_set_max_htlc_value_in_flight_msat(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
21583 /* @internal */
21584 export function AcceptChannel_set_max_htlc_value_in_flight_msat(this_ptr: number, val: bigint): void {
21585         if(!isWasmInitialized) {
21586                 throw new Error("initializeWasm() must be awaited first!");
21587         }
21588         const nativeResponseValue = wasm.TS_AcceptChannel_set_max_htlc_value_in_flight_msat(this_ptr, val);
21589         // debug statements here
21590 }
21591         // uint64_t AcceptChannel_get_channel_reserve_satoshis(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21592 /* @internal */
21593 export function AcceptChannel_get_channel_reserve_satoshis(this_ptr: number): bigint {
21594         if(!isWasmInitialized) {
21595                 throw new Error("initializeWasm() must be awaited first!");
21596         }
21597         const nativeResponseValue = wasm.TS_AcceptChannel_get_channel_reserve_satoshis(this_ptr);
21598         return nativeResponseValue;
21599 }
21600         // void AcceptChannel_set_channel_reserve_satoshis(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
21601 /* @internal */
21602 export function AcceptChannel_set_channel_reserve_satoshis(this_ptr: number, val: bigint): void {
21603         if(!isWasmInitialized) {
21604                 throw new Error("initializeWasm() must be awaited first!");
21605         }
21606         const nativeResponseValue = wasm.TS_AcceptChannel_set_channel_reserve_satoshis(this_ptr, val);
21607         // debug statements here
21608 }
21609         // uint64_t AcceptChannel_get_htlc_minimum_msat(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21610 /* @internal */
21611 export function AcceptChannel_get_htlc_minimum_msat(this_ptr: number): bigint {
21612         if(!isWasmInitialized) {
21613                 throw new Error("initializeWasm() must be awaited first!");
21614         }
21615         const nativeResponseValue = wasm.TS_AcceptChannel_get_htlc_minimum_msat(this_ptr);
21616         return nativeResponseValue;
21617 }
21618         // void AcceptChannel_set_htlc_minimum_msat(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint64_t val);
21619 /* @internal */
21620 export function AcceptChannel_set_htlc_minimum_msat(this_ptr: number, val: bigint): void {
21621         if(!isWasmInitialized) {
21622                 throw new Error("initializeWasm() must be awaited first!");
21623         }
21624         const nativeResponseValue = wasm.TS_AcceptChannel_set_htlc_minimum_msat(this_ptr, val);
21625         // debug statements here
21626 }
21627         // uint32_t AcceptChannel_get_minimum_depth(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21628 /* @internal */
21629 export function AcceptChannel_get_minimum_depth(this_ptr: number): number {
21630         if(!isWasmInitialized) {
21631                 throw new Error("initializeWasm() must be awaited first!");
21632         }
21633         const nativeResponseValue = wasm.TS_AcceptChannel_get_minimum_depth(this_ptr);
21634         return nativeResponseValue;
21635 }
21636         // void AcceptChannel_set_minimum_depth(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint32_t val);
21637 /* @internal */
21638 export function AcceptChannel_set_minimum_depth(this_ptr: number, val: number): void {
21639         if(!isWasmInitialized) {
21640                 throw new Error("initializeWasm() must be awaited first!");
21641         }
21642         const nativeResponseValue = wasm.TS_AcceptChannel_set_minimum_depth(this_ptr, val);
21643         // debug statements here
21644 }
21645         // uint16_t AcceptChannel_get_to_self_delay(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21646 /* @internal */
21647 export function AcceptChannel_get_to_self_delay(this_ptr: number): number {
21648         if(!isWasmInitialized) {
21649                 throw new Error("initializeWasm() must be awaited first!");
21650         }
21651         const nativeResponseValue = wasm.TS_AcceptChannel_get_to_self_delay(this_ptr);
21652         return nativeResponseValue;
21653 }
21654         // void AcceptChannel_set_to_self_delay(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint16_t val);
21655 /* @internal */
21656 export function AcceptChannel_set_to_self_delay(this_ptr: number, val: number): void {
21657         if(!isWasmInitialized) {
21658                 throw new Error("initializeWasm() must be awaited first!");
21659         }
21660         const nativeResponseValue = wasm.TS_AcceptChannel_set_to_self_delay(this_ptr, val);
21661         // debug statements here
21662 }
21663         // uint16_t AcceptChannel_get_max_accepted_htlcs(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21664 /* @internal */
21665 export function AcceptChannel_get_max_accepted_htlcs(this_ptr: number): number {
21666         if(!isWasmInitialized) {
21667                 throw new Error("initializeWasm() must be awaited first!");
21668         }
21669         const nativeResponseValue = wasm.TS_AcceptChannel_get_max_accepted_htlcs(this_ptr);
21670         return nativeResponseValue;
21671 }
21672         // void AcceptChannel_set_max_accepted_htlcs(struct LDKAcceptChannel *NONNULL_PTR this_ptr, uint16_t val);
21673 /* @internal */
21674 export function AcceptChannel_set_max_accepted_htlcs(this_ptr: number, val: number): void {
21675         if(!isWasmInitialized) {
21676                 throw new Error("initializeWasm() must be awaited first!");
21677         }
21678         const nativeResponseValue = wasm.TS_AcceptChannel_set_max_accepted_htlcs(this_ptr, val);
21679         // debug statements here
21680 }
21681         // struct LDKPublicKey AcceptChannel_get_funding_pubkey(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21682 /* @internal */
21683 export function AcceptChannel_get_funding_pubkey(this_ptr: number): number {
21684         if(!isWasmInitialized) {
21685                 throw new Error("initializeWasm() must be awaited first!");
21686         }
21687         const nativeResponseValue = wasm.TS_AcceptChannel_get_funding_pubkey(this_ptr);
21688         return nativeResponseValue;
21689 }
21690         // void AcceptChannel_set_funding_pubkey(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21691 /* @internal */
21692 export function AcceptChannel_set_funding_pubkey(this_ptr: number, val: number): void {
21693         if(!isWasmInitialized) {
21694                 throw new Error("initializeWasm() must be awaited first!");
21695         }
21696         const nativeResponseValue = wasm.TS_AcceptChannel_set_funding_pubkey(this_ptr, val);
21697         // debug statements here
21698 }
21699         // struct LDKPublicKey AcceptChannel_get_revocation_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21700 /* @internal */
21701 export function AcceptChannel_get_revocation_basepoint(this_ptr: number): number {
21702         if(!isWasmInitialized) {
21703                 throw new Error("initializeWasm() must be awaited first!");
21704         }
21705         const nativeResponseValue = wasm.TS_AcceptChannel_get_revocation_basepoint(this_ptr);
21706         return nativeResponseValue;
21707 }
21708         // void AcceptChannel_set_revocation_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21709 /* @internal */
21710 export function AcceptChannel_set_revocation_basepoint(this_ptr: number, val: number): void {
21711         if(!isWasmInitialized) {
21712                 throw new Error("initializeWasm() must be awaited first!");
21713         }
21714         const nativeResponseValue = wasm.TS_AcceptChannel_set_revocation_basepoint(this_ptr, val);
21715         // debug statements here
21716 }
21717         // struct LDKPublicKey AcceptChannel_get_payment_point(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21718 /* @internal */
21719 export function AcceptChannel_get_payment_point(this_ptr: number): number {
21720         if(!isWasmInitialized) {
21721                 throw new Error("initializeWasm() must be awaited first!");
21722         }
21723         const nativeResponseValue = wasm.TS_AcceptChannel_get_payment_point(this_ptr);
21724         return nativeResponseValue;
21725 }
21726         // void AcceptChannel_set_payment_point(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21727 /* @internal */
21728 export function AcceptChannel_set_payment_point(this_ptr: number, val: number): void {
21729         if(!isWasmInitialized) {
21730                 throw new Error("initializeWasm() must be awaited first!");
21731         }
21732         const nativeResponseValue = wasm.TS_AcceptChannel_set_payment_point(this_ptr, val);
21733         // debug statements here
21734 }
21735         // struct LDKPublicKey AcceptChannel_get_delayed_payment_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21736 /* @internal */
21737 export function AcceptChannel_get_delayed_payment_basepoint(this_ptr: number): number {
21738         if(!isWasmInitialized) {
21739                 throw new Error("initializeWasm() must be awaited first!");
21740         }
21741         const nativeResponseValue = wasm.TS_AcceptChannel_get_delayed_payment_basepoint(this_ptr);
21742         return nativeResponseValue;
21743 }
21744         // void AcceptChannel_set_delayed_payment_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21745 /* @internal */
21746 export function AcceptChannel_set_delayed_payment_basepoint(this_ptr: number, val: number): void {
21747         if(!isWasmInitialized) {
21748                 throw new Error("initializeWasm() must be awaited first!");
21749         }
21750         const nativeResponseValue = wasm.TS_AcceptChannel_set_delayed_payment_basepoint(this_ptr, val);
21751         // debug statements here
21752 }
21753         // struct LDKPublicKey AcceptChannel_get_htlc_basepoint(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21754 /* @internal */
21755 export function AcceptChannel_get_htlc_basepoint(this_ptr: number): number {
21756         if(!isWasmInitialized) {
21757                 throw new Error("initializeWasm() must be awaited first!");
21758         }
21759         const nativeResponseValue = wasm.TS_AcceptChannel_get_htlc_basepoint(this_ptr);
21760         return nativeResponseValue;
21761 }
21762         // void AcceptChannel_set_htlc_basepoint(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21763 /* @internal */
21764 export function AcceptChannel_set_htlc_basepoint(this_ptr: number, val: number): void {
21765         if(!isWasmInitialized) {
21766                 throw new Error("initializeWasm() must be awaited first!");
21767         }
21768         const nativeResponseValue = wasm.TS_AcceptChannel_set_htlc_basepoint(this_ptr, val);
21769         // debug statements here
21770 }
21771         // struct LDKPublicKey AcceptChannel_get_first_per_commitment_point(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21772 /* @internal */
21773 export function AcceptChannel_get_first_per_commitment_point(this_ptr: number): number {
21774         if(!isWasmInitialized) {
21775                 throw new Error("initializeWasm() must be awaited first!");
21776         }
21777         const nativeResponseValue = wasm.TS_AcceptChannel_get_first_per_commitment_point(this_ptr);
21778         return nativeResponseValue;
21779 }
21780         // void AcceptChannel_set_first_per_commitment_point(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKPublicKey val);
21781 /* @internal */
21782 export function AcceptChannel_set_first_per_commitment_point(this_ptr: number, val: number): void {
21783         if(!isWasmInitialized) {
21784                 throw new Error("initializeWasm() must be awaited first!");
21785         }
21786         const nativeResponseValue = wasm.TS_AcceptChannel_set_first_per_commitment_point(this_ptr, val);
21787         // debug statements here
21788 }
21789         // struct LDKChannelTypeFeatures AcceptChannel_get_channel_type(const struct LDKAcceptChannel *NONNULL_PTR this_ptr);
21790 /* @internal */
21791 export function AcceptChannel_get_channel_type(this_ptr: number): number {
21792         if(!isWasmInitialized) {
21793                 throw new Error("initializeWasm() must be awaited first!");
21794         }
21795         const nativeResponseValue = wasm.TS_AcceptChannel_get_channel_type(this_ptr);
21796         return nativeResponseValue;
21797 }
21798         // void AcceptChannel_set_channel_type(struct LDKAcceptChannel *NONNULL_PTR this_ptr, struct LDKChannelTypeFeatures val);
21799 /* @internal */
21800 export function AcceptChannel_set_channel_type(this_ptr: number, val: number): void {
21801         if(!isWasmInitialized) {
21802                 throw new Error("initializeWasm() must be awaited first!");
21803         }
21804         const nativeResponseValue = wasm.TS_AcceptChannel_set_channel_type(this_ptr, val);
21805         // debug statements here
21806 }
21807         // uintptr_t AcceptChannel_clone_ptr(LDKAcceptChannel *NONNULL_PTR arg);
21808 /* @internal */
21809 export function AcceptChannel_clone_ptr(arg: number): number {
21810         if(!isWasmInitialized) {
21811                 throw new Error("initializeWasm() must be awaited first!");
21812         }
21813         const nativeResponseValue = wasm.TS_AcceptChannel_clone_ptr(arg);
21814         return nativeResponseValue;
21815 }
21816         // struct LDKAcceptChannel AcceptChannel_clone(const struct LDKAcceptChannel *NONNULL_PTR orig);
21817 /* @internal */
21818 export function AcceptChannel_clone(orig: number): number {
21819         if(!isWasmInitialized) {
21820                 throw new Error("initializeWasm() must be awaited first!");
21821         }
21822         const nativeResponseValue = wasm.TS_AcceptChannel_clone(orig);
21823         return nativeResponseValue;
21824 }
21825         // void FundingCreated_free(struct LDKFundingCreated this_obj);
21826 /* @internal */
21827 export function FundingCreated_free(this_obj: number): void {
21828         if(!isWasmInitialized) {
21829                 throw new Error("initializeWasm() must be awaited first!");
21830         }
21831         const nativeResponseValue = wasm.TS_FundingCreated_free(this_obj);
21832         // debug statements here
21833 }
21834         // const uint8_t (*FundingCreated_get_temporary_channel_id(const struct LDKFundingCreated *NONNULL_PTR this_ptr))[32];
21835 /* @internal */
21836 export function FundingCreated_get_temporary_channel_id(this_ptr: number): number {
21837         if(!isWasmInitialized) {
21838                 throw new Error("initializeWasm() must be awaited first!");
21839         }
21840         const nativeResponseValue = wasm.TS_FundingCreated_get_temporary_channel_id(this_ptr);
21841         return nativeResponseValue;
21842 }
21843         // void FundingCreated_set_temporary_channel_id(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21844 /* @internal */
21845 export function FundingCreated_set_temporary_channel_id(this_ptr: number, val: number): void {
21846         if(!isWasmInitialized) {
21847                 throw new Error("initializeWasm() must be awaited first!");
21848         }
21849         const nativeResponseValue = wasm.TS_FundingCreated_set_temporary_channel_id(this_ptr, val);
21850         // debug statements here
21851 }
21852         // const uint8_t (*FundingCreated_get_funding_txid(const struct LDKFundingCreated *NONNULL_PTR this_ptr))[32];
21853 /* @internal */
21854 export function FundingCreated_get_funding_txid(this_ptr: number): number {
21855         if(!isWasmInitialized) {
21856                 throw new Error("initializeWasm() must be awaited first!");
21857         }
21858         const nativeResponseValue = wasm.TS_FundingCreated_get_funding_txid(this_ptr);
21859         return nativeResponseValue;
21860 }
21861         // void FundingCreated_set_funding_txid(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21862 /* @internal */
21863 export function FundingCreated_set_funding_txid(this_ptr: number, val: number): void {
21864         if(!isWasmInitialized) {
21865                 throw new Error("initializeWasm() must be awaited first!");
21866         }
21867         const nativeResponseValue = wasm.TS_FundingCreated_set_funding_txid(this_ptr, val);
21868         // debug statements here
21869 }
21870         // uint16_t FundingCreated_get_funding_output_index(const struct LDKFundingCreated *NONNULL_PTR this_ptr);
21871 /* @internal */
21872 export function FundingCreated_get_funding_output_index(this_ptr: number): number {
21873         if(!isWasmInitialized) {
21874                 throw new Error("initializeWasm() must be awaited first!");
21875         }
21876         const nativeResponseValue = wasm.TS_FundingCreated_get_funding_output_index(this_ptr);
21877         return nativeResponseValue;
21878 }
21879         // void FundingCreated_set_funding_output_index(struct LDKFundingCreated *NONNULL_PTR this_ptr, uint16_t val);
21880 /* @internal */
21881 export function FundingCreated_set_funding_output_index(this_ptr: number, val: number): void {
21882         if(!isWasmInitialized) {
21883                 throw new Error("initializeWasm() must be awaited first!");
21884         }
21885         const nativeResponseValue = wasm.TS_FundingCreated_set_funding_output_index(this_ptr, val);
21886         // debug statements here
21887 }
21888         // struct LDKSignature FundingCreated_get_signature(const struct LDKFundingCreated *NONNULL_PTR this_ptr);
21889 /* @internal */
21890 export function FundingCreated_get_signature(this_ptr: number): number {
21891         if(!isWasmInitialized) {
21892                 throw new Error("initializeWasm() must be awaited first!");
21893         }
21894         const nativeResponseValue = wasm.TS_FundingCreated_get_signature(this_ptr);
21895         return nativeResponseValue;
21896 }
21897         // void FundingCreated_set_signature(struct LDKFundingCreated *NONNULL_PTR this_ptr, struct LDKSignature val);
21898 /* @internal */
21899 export function FundingCreated_set_signature(this_ptr: number, val: number): void {
21900         if(!isWasmInitialized) {
21901                 throw new Error("initializeWasm() must be awaited first!");
21902         }
21903         const nativeResponseValue = wasm.TS_FundingCreated_set_signature(this_ptr, val);
21904         // debug statements here
21905 }
21906         // MUST_USE_RES struct LDKFundingCreated FundingCreated_new(struct LDKThirtyTwoBytes temporary_channel_id_arg, struct LDKThirtyTwoBytes funding_txid_arg, uint16_t funding_output_index_arg, struct LDKSignature signature_arg);
21907 /* @internal */
21908 export function FundingCreated_new(temporary_channel_id_arg: number, funding_txid_arg: number, funding_output_index_arg: number, signature_arg: number): number {
21909         if(!isWasmInitialized) {
21910                 throw new Error("initializeWasm() must be awaited first!");
21911         }
21912         const nativeResponseValue = wasm.TS_FundingCreated_new(temporary_channel_id_arg, funding_txid_arg, funding_output_index_arg, signature_arg);
21913         return nativeResponseValue;
21914 }
21915         // uintptr_t FundingCreated_clone_ptr(LDKFundingCreated *NONNULL_PTR arg);
21916 /* @internal */
21917 export function FundingCreated_clone_ptr(arg: number): number {
21918         if(!isWasmInitialized) {
21919                 throw new Error("initializeWasm() must be awaited first!");
21920         }
21921         const nativeResponseValue = wasm.TS_FundingCreated_clone_ptr(arg);
21922         return nativeResponseValue;
21923 }
21924         // struct LDKFundingCreated FundingCreated_clone(const struct LDKFundingCreated *NONNULL_PTR orig);
21925 /* @internal */
21926 export function FundingCreated_clone(orig: number): number {
21927         if(!isWasmInitialized) {
21928                 throw new Error("initializeWasm() must be awaited first!");
21929         }
21930         const nativeResponseValue = wasm.TS_FundingCreated_clone(orig);
21931         return nativeResponseValue;
21932 }
21933         // void FundingSigned_free(struct LDKFundingSigned this_obj);
21934 /* @internal */
21935 export function FundingSigned_free(this_obj: number): void {
21936         if(!isWasmInitialized) {
21937                 throw new Error("initializeWasm() must be awaited first!");
21938         }
21939         const nativeResponseValue = wasm.TS_FundingSigned_free(this_obj);
21940         // debug statements here
21941 }
21942         // const uint8_t (*FundingSigned_get_channel_id(const struct LDKFundingSigned *NONNULL_PTR this_ptr))[32];
21943 /* @internal */
21944 export function FundingSigned_get_channel_id(this_ptr: number): number {
21945         if(!isWasmInitialized) {
21946                 throw new Error("initializeWasm() must be awaited first!");
21947         }
21948         const nativeResponseValue = wasm.TS_FundingSigned_get_channel_id(this_ptr);
21949         return nativeResponseValue;
21950 }
21951         // void FundingSigned_set_channel_id(struct LDKFundingSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
21952 /* @internal */
21953 export function FundingSigned_set_channel_id(this_ptr: number, val: number): void {
21954         if(!isWasmInitialized) {
21955                 throw new Error("initializeWasm() must be awaited first!");
21956         }
21957         const nativeResponseValue = wasm.TS_FundingSigned_set_channel_id(this_ptr, val);
21958         // debug statements here
21959 }
21960         // struct LDKSignature FundingSigned_get_signature(const struct LDKFundingSigned *NONNULL_PTR this_ptr);
21961 /* @internal */
21962 export function FundingSigned_get_signature(this_ptr: number): number {
21963         if(!isWasmInitialized) {
21964                 throw new Error("initializeWasm() must be awaited first!");
21965         }
21966         const nativeResponseValue = wasm.TS_FundingSigned_get_signature(this_ptr);
21967         return nativeResponseValue;
21968 }
21969         // void FundingSigned_set_signature(struct LDKFundingSigned *NONNULL_PTR this_ptr, struct LDKSignature val);
21970 /* @internal */
21971 export function FundingSigned_set_signature(this_ptr: number, val: number): void {
21972         if(!isWasmInitialized) {
21973                 throw new Error("initializeWasm() must be awaited first!");
21974         }
21975         const nativeResponseValue = wasm.TS_FundingSigned_set_signature(this_ptr, val);
21976         // debug statements here
21977 }
21978         // MUST_USE_RES struct LDKFundingSigned FundingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKSignature signature_arg);
21979 /* @internal */
21980 export function FundingSigned_new(channel_id_arg: number, signature_arg: number): number {
21981         if(!isWasmInitialized) {
21982                 throw new Error("initializeWasm() must be awaited first!");
21983         }
21984         const nativeResponseValue = wasm.TS_FundingSigned_new(channel_id_arg, signature_arg);
21985         return nativeResponseValue;
21986 }
21987         // uintptr_t FundingSigned_clone_ptr(LDKFundingSigned *NONNULL_PTR arg);
21988 /* @internal */
21989 export function FundingSigned_clone_ptr(arg: number): number {
21990         if(!isWasmInitialized) {
21991                 throw new Error("initializeWasm() must be awaited first!");
21992         }
21993         const nativeResponseValue = wasm.TS_FundingSigned_clone_ptr(arg);
21994         return nativeResponseValue;
21995 }
21996         // struct LDKFundingSigned FundingSigned_clone(const struct LDKFundingSigned *NONNULL_PTR orig);
21997 /* @internal */
21998 export function FundingSigned_clone(orig: number): number {
21999         if(!isWasmInitialized) {
22000                 throw new Error("initializeWasm() must be awaited first!");
22001         }
22002         const nativeResponseValue = wasm.TS_FundingSigned_clone(orig);
22003         return nativeResponseValue;
22004 }
22005         // void ChannelReady_free(struct LDKChannelReady this_obj);
22006 /* @internal */
22007 export function ChannelReady_free(this_obj: number): void {
22008         if(!isWasmInitialized) {
22009                 throw new Error("initializeWasm() must be awaited first!");
22010         }
22011         const nativeResponseValue = wasm.TS_ChannelReady_free(this_obj);
22012         // debug statements here
22013 }
22014         // const uint8_t (*ChannelReady_get_channel_id(const struct LDKChannelReady *NONNULL_PTR this_ptr))[32];
22015 /* @internal */
22016 export function ChannelReady_get_channel_id(this_ptr: number): number {
22017         if(!isWasmInitialized) {
22018                 throw new Error("initializeWasm() must be awaited first!");
22019         }
22020         const nativeResponseValue = wasm.TS_ChannelReady_get_channel_id(this_ptr);
22021         return nativeResponseValue;
22022 }
22023         // void ChannelReady_set_channel_id(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22024 /* @internal */
22025 export function ChannelReady_set_channel_id(this_ptr: number, val: number): void {
22026         if(!isWasmInitialized) {
22027                 throw new Error("initializeWasm() must be awaited first!");
22028         }
22029         const nativeResponseValue = wasm.TS_ChannelReady_set_channel_id(this_ptr, val);
22030         // debug statements here
22031 }
22032         // struct LDKPublicKey ChannelReady_get_next_per_commitment_point(const struct LDKChannelReady *NONNULL_PTR this_ptr);
22033 /* @internal */
22034 export function ChannelReady_get_next_per_commitment_point(this_ptr: number): number {
22035         if(!isWasmInitialized) {
22036                 throw new Error("initializeWasm() must be awaited first!");
22037         }
22038         const nativeResponseValue = wasm.TS_ChannelReady_get_next_per_commitment_point(this_ptr);
22039         return nativeResponseValue;
22040 }
22041         // void ChannelReady_set_next_per_commitment_point(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKPublicKey val);
22042 /* @internal */
22043 export function ChannelReady_set_next_per_commitment_point(this_ptr: number, val: number): void {
22044         if(!isWasmInitialized) {
22045                 throw new Error("initializeWasm() must be awaited first!");
22046         }
22047         const nativeResponseValue = wasm.TS_ChannelReady_set_next_per_commitment_point(this_ptr, val);
22048         // debug statements here
22049 }
22050         // struct LDKCOption_u64Z ChannelReady_get_short_channel_id_alias(const struct LDKChannelReady *NONNULL_PTR this_ptr);
22051 /* @internal */
22052 export function ChannelReady_get_short_channel_id_alias(this_ptr: number): number {
22053         if(!isWasmInitialized) {
22054                 throw new Error("initializeWasm() must be awaited first!");
22055         }
22056         const nativeResponseValue = wasm.TS_ChannelReady_get_short_channel_id_alias(this_ptr);
22057         return nativeResponseValue;
22058 }
22059         // void ChannelReady_set_short_channel_id_alias(struct LDKChannelReady *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
22060 /* @internal */
22061 export function ChannelReady_set_short_channel_id_alias(this_ptr: number, val: number): void {
22062         if(!isWasmInitialized) {
22063                 throw new Error("initializeWasm() must be awaited first!");
22064         }
22065         const nativeResponseValue = wasm.TS_ChannelReady_set_short_channel_id_alias(this_ptr, val);
22066         // debug statements here
22067 }
22068         // MUST_USE_RES struct LDKChannelReady ChannelReady_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKPublicKey next_per_commitment_point_arg, struct LDKCOption_u64Z short_channel_id_alias_arg);
22069 /* @internal */
22070 export function ChannelReady_new(channel_id_arg: number, next_per_commitment_point_arg: number, short_channel_id_alias_arg: number): number {
22071         if(!isWasmInitialized) {
22072                 throw new Error("initializeWasm() must be awaited first!");
22073         }
22074         const nativeResponseValue = wasm.TS_ChannelReady_new(channel_id_arg, next_per_commitment_point_arg, short_channel_id_alias_arg);
22075         return nativeResponseValue;
22076 }
22077         // uintptr_t ChannelReady_clone_ptr(LDKChannelReady *NONNULL_PTR arg);
22078 /* @internal */
22079 export function ChannelReady_clone_ptr(arg: number): number {
22080         if(!isWasmInitialized) {
22081                 throw new Error("initializeWasm() must be awaited first!");
22082         }
22083         const nativeResponseValue = wasm.TS_ChannelReady_clone_ptr(arg);
22084         return nativeResponseValue;
22085 }
22086         // struct LDKChannelReady ChannelReady_clone(const struct LDKChannelReady *NONNULL_PTR orig);
22087 /* @internal */
22088 export function ChannelReady_clone(orig: number): number {
22089         if(!isWasmInitialized) {
22090                 throw new Error("initializeWasm() must be awaited first!");
22091         }
22092         const nativeResponseValue = wasm.TS_ChannelReady_clone(orig);
22093         return nativeResponseValue;
22094 }
22095         // void Shutdown_free(struct LDKShutdown this_obj);
22096 /* @internal */
22097 export function Shutdown_free(this_obj: number): void {
22098         if(!isWasmInitialized) {
22099                 throw new Error("initializeWasm() must be awaited first!");
22100         }
22101         const nativeResponseValue = wasm.TS_Shutdown_free(this_obj);
22102         // debug statements here
22103 }
22104         // const uint8_t (*Shutdown_get_channel_id(const struct LDKShutdown *NONNULL_PTR this_ptr))[32];
22105 /* @internal */
22106 export function Shutdown_get_channel_id(this_ptr: number): number {
22107         if(!isWasmInitialized) {
22108                 throw new Error("initializeWasm() must be awaited first!");
22109         }
22110         const nativeResponseValue = wasm.TS_Shutdown_get_channel_id(this_ptr);
22111         return nativeResponseValue;
22112 }
22113         // void Shutdown_set_channel_id(struct LDKShutdown *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22114 /* @internal */
22115 export function Shutdown_set_channel_id(this_ptr: number, val: number): void {
22116         if(!isWasmInitialized) {
22117                 throw new Error("initializeWasm() must be awaited first!");
22118         }
22119         const nativeResponseValue = wasm.TS_Shutdown_set_channel_id(this_ptr, val);
22120         // debug statements here
22121 }
22122         // struct LDKu8slice Shutdown_get_scriptpubkey(const struct LDKShutdown *NONNULL_PTR this_ptr);
22123 /* @internal */
22124 export function Shutdown_get_scriptpubkey(this_ptr: number): number {
22125         if(!isWasmInitialized) {
22126                 throw new Error("initializeWasm() must be awaited first!");
22127         }
22128         const nativeResponseValue = wasm.TS_Shutdown_get_scriptpubkey(this_ptr);
22129         return nativeResponseValue;
22130 }
22131         // void Shutdown_set_scriptpubkey(struct LDKShutdown *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
22132 /* @internal */
22133 export function Shutdown_set_scriptpubkey(this_ptr: number, val: number): void {
22134         if(!isWasmInitialized) {
22135                 throw new Error("initializeWasm() must be awaited first!");
22136         }
22137         const nativeResponseValue = wasm.TS_Shutdown_set_scriptpubkey(this_ptr, val);
22138         // debug statements here
22139 }
22140         // MUST_USE_RES struct LDKShutdown Shutdown_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKCVec_u8Z scriptpubkey_arg);
22141 /* @internal */
22142 export function Shutdown_new(channel_id_arg: number, scriptpubkey_arg: number): number {
22143         if(!isWasmInitialized) {
22144                 throw new Error("initializeWasm() must be awaited first!");
22145         }
22146         const nativeResponseValue = wasm.TS_Shutdown_new(channel_id_arg, scriptpubkey_arg);
22147         return nativeResponseValue;
22148 }
22149         // uintptr_t Shutdown_clone_ptr(LDKShutdown *NONNULL_PTR arg);
22150 /* @internal */
22151 export function Shutdown_clone_ptr(arg: number): number {
22152         if(!isWasmInitialized) {
22153                 throw new Error("initializeWasm() must be awaited first!");
22154         }
22155         const nativeResponseValue = wasm.TS_Shutdown_clone_ptr(arg);
22156         return nativeResponseValue;
22157 }
22158         // struct LDKShutdown Shutdown_clone(const struct LDKShutdown *NONNULL_PTR orig);
22159 /* @internal */
22160 export function Shutdown_clone(orig: number): number {
22161         if(!isWasmInitialized) {
22162                 throw new Error("initializeWasm() must be awaited first!");
22163         }
22164         const nativeResponseValue = wasm.TS_Shutdown_clone(orig);
22165         return nativeResponseValue;
22166 }
22167         // void ClosingSignedFeeRange_free(struct LDKClosingSignedFeeRange this_obj);
22168 /* @internal */
22169 export function ClosingSignedFeeRange_free(this_obj: number): void {
22170         if(!isWasmInitialized) {
22171                 throw new Error("initializeWasm() must be awaited first!");
22172         }
22173         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_free(this_obj);
22174         // debug statements here
22175 }
22176         // uint64_t ClosingSignedFeeRange_get_min_fee_satoshis(const struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr);
22177 /* @internal */
22178 export function ClosingSignedFeeRange_get_min_fee_satoshis(this_ptr: number): bigint {
22179         if(!isWasmInitialized) {
22180                 throw new Error("initializeWasm() must be awaited first!");
22181         }
22182         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_get_min_fee_satoshis(this_ptr);
22183         return nativeResponseValue;
22184 }
22185         // void ClosingSignedFeeRange_set_min_fee_satoshis(struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr, uint64_t val);
22186 /* @internal */
22187 export function ClosingSignedFeeRange_set_min_fee_satoshis(this_ptr: number, val: bigint): void {
22188         if(!isWasmInitialized) {
22189                 throw new Error("initializeWasm() must be awaited first!");
22190         }
22191         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_set_min_fee_satoshis(this_ptr, val);
22192         // debug statements here
22193 }
22194         // uint64_t ClosingSignedFeeRange_get_max_fee_satoshis(const struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr);
22195 /* @internal */
22196 export function ClosingSignedFeeRange_get_max_fee_satoshis(this_ptr: number): bigint {
22197         if(!isWasmInitialized) {
22198                 throw new Error("initializeWasm() must be awaited first!");
22199         }
22200         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_get_max_fee_satoshis(this_ptr);
22201         return nativeResponseValue;
22202 }
22203         // void ClosingSignedFeeRange_set_max_fee_satoshis(struct LDKClosingSignedFeeRange *NONNULL_PTR this_ptr, uint64_t val);
22204 /* @internal */
22205 export function ClosingSignedFeeRange_set_max_fee_satoshis(this_ptr: number, val: bigint): void {
22206         if(!isWasmInitialized) {
22207                 throw new Error("initializeWasm() must be awaited first!");
22208         }
22209         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_set_max_fee_satoshis(this_ptr, val);
22210         // debug statements here
22211 }
22212         // MUST_USE_RES struct LDKClosingSignedFeeRange ClosingSignedFeeRange_new(uint64_t min_fee_satoshis_arg, uint64_t max_fee_satoshis_arg);
22213 /* @internal */
22214 export function ClosingSignedFeeRange_new(min_fee_satoshis_arg: bigint, max_fee_satoshis_arg: bigint): number {
22215         if(!isWasmInitialized) {
22216                 throw new Error("initializeWasm() must be awaited first!");
22217         }
22218         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_new(min_fee_satoshis_arg, max_fee_satoshis_arg);
22219         return nativeResponseValue;
22220 }
22221         // uintptr_t ClosingSignedFeeRange_clone_ptr(LDKClosingSignedFeeRange *NONNULL_PTR arg);
22222 /* @internal */
22223 export function ClosingSignedFeeRange_clone_ptr(arg: number): number {
22224         if(!isWasmInitialized) {
22225                 throw new Error("initializeWasm() must be awaited first!");
22226         }
22227         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_clone_ptr(arg);
22228         return nativeResponseValue;
22229 }
22230         // struct LDKClosingSignedFeeRange ClosingSignedFeeRange_clone(const struct LDKClosingSignedFeeRange *NONNULL_PTR orig);
22231 /* @internal */
22232 export function ClosingSignedFeeRange_clone(orig: number): number {
22233         if(!isWasmInitialized) {
22234                 throw new Error("initializeWasm() must be awaited first!");
22235         }
22236         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_clone(orig);
22237         return nativeResponseValue;
22238 }
22239         // void ClosingSigned_free(struct LDKClosingSigned this_obj);
22240 /* @internal */
22241 export function ClosingSigned_free(this_obj: number): void {
22242         if(!isWasmInitialized) {
22243                 throw new Error("initializeWasm() must be awaited first!");
22244         }
22245         const nativeResponseValue = wasm.TS_ClosingSigned_free(this_obj);
22246         // debug statements here
22247 }
22248         // const uint8_t (*ClosingSigned_get_channel_id(const struct LDKClosingSigned *NONNULL_PTR this_ptr))[32];
22249 /* @internal */
22250 export function ClosingSigned_get_channel_id(this_ptr: number): number {
22251         if(!isWasmInitialized) {
22252                 throw new Error("initializeWasm() must be awaited first!");
22253         }
22254         const nativeResponseValue = wasm.TS_ClosingSigned_get_channel_id(this_ptr);
22255         return nativeResponseValue;
22256 }
22257         // void ClosingSigned_set_channel_id(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22258 /* @internal */
22259 export function ClosingSigned_set_channel_id(this_ptr: number, val: number): void {
22260         if(!isWasmInitialized) {
22261                 throw new Error("initializeWasm() must be awaited first!");
22262         }
22263         const nativeResponseValue = wasm.TS_ClosingSigned_set_channel_id(this_ptr, val);
22264         // debug statements here
22265 }
22266         // uint64_t ClosingSigned_get_fee_satoshis(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
22267 /* @internal */
22268 export function ClosingSigned_get_fee_satoshis(this_ptr: number): bigint {
22269         if(!isWasmInitialized) {
22270                 throw new Error("initializeWasm() must be awaited first!");
22271         }
22272         const nativeResponseValue = wasm.TS_ClosingSigned_get_fee_satoshis(this_ptr);
22273         return nativeResponseValue;
22274 }
22275         // void ClosingSigned_set_fee_satoshis(struct LDKClosingSigned *NONNULL_PTR this_ptr, uint64_t val);
22276 /* @internal */
22277 export function ClosingSigned_set_fee_satoshis(this_ptr: number, val: bigint): void {
22278         if(!isWasmInitialized) {
22279                 throw new Error("initializeWasm() must be awaited first!");
22280         }
22281         const nativeResponseValue = wasm.TS_ClosingSigned_set_fee_satoshis(this_ptr, val);
22282         // debug statements here
22283 }
22284         // struct LDKSignature ClosingSigned_get_signature(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
22285 /* @internal */
22286 export function ClosingSigned_get_signature(this_ptr: number): number {
22287         if(!isWasmInitialized) {
22288                 throw new Error("initializeWasm() must be awaited first!");
22289         }
22290         const nativeResponseValue = wasm.TS_ClosingSigned_get_signature(this_ptr);
22291         return nativeResponseValue;
22292 }
22293         // void ClosingSigned_set_signature(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKSignature val);
22294 /* @internal */
22295 export function ClosingSigned_set_signature(this_ptr: number, val: number): void {
22296         if(!isWasmInitialized) {
22297                 throw new Error("initializeWasm() must be awaited first!");
22298         }
22299         const nativeResponseValue = wasm.TS_ClosingSigned_set_signature(this_ptr, val);
22300         // debug statements here
22301 }
22302         // struct LDKClosingSignedFeeRange ClosingSigned_get_fee_range(const struct LDKClosingSigned *NONNULL_PTR this_ptr);
22303 /* @internal */
22304 export function ClosingSigned_get_fee_range(this_ptr: number): number {
22305         if(!isWasmInitialized) {
22306                 throw new Error("initializeWasm() must be awaited first!");
22307         }
22308         const nativeResponseValue = wasm.TS_ClosingSigned_get_fee_range(this_ptr);
22309         return nativeResponseValue;
22310 }
22311         // void ClosingSigned_set_fee_range(struct LDKClosingSigned *NONNULL_PTR this_ptr, struct LDKClosingSignedFeeRange val);
22312 /* @internal */
22313 export function ClosingSigned_set_fee_range(this_ptr: number, val: number): void {
22314         if(!isWasmInitialized) {
22315                 throw new Error("initializeWasm() must be awaited first!");
22316         }
22317         const nativeResponseValue = wasm.TS_ClosingSigned_set_fee_range(this_ptr, val);
22318         // debug statements here
22319 }
22320         // MUST_USE_RES struct LDKClosingSigned ClosingSigned_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t fee_satoshis_arg, struct LDKSignature signature_arg, struct LDKClosingSignedFeeRange fee_range_arg);
22321 /* @internal */
22322 export function ClosingSigned_new(channel_id_arg: number, fee_satoshis_arg: bigint, signature_arg: number, fee_range_arg: number): number {
22323         if(!isWasmInitialized) {
22324                 throw new Error("initializeWasm() must be awaited first!");
22325         }
22326         const nativeResponseValue = wasm.TS_ClosingSigned_new(channel_id_arg, fee_satoshis_arg, signature_arg, fee_range_arg);
22327         return nativeResponseValue;
22328 }
22329         // uintptr_t ClosingSigned_clone_ptr(LDKClosingSigned *NONNULL_PTR arg);
22330 /* @internal */
22331 export function ClosingSigned_clone_ptr(arg: number): number {
22332         if(!isWasmInitialized) {
22333                 throw new Error("initializeWasm() must be awaited first!");
22334         }
22335         const nativeResponseValue = wasm.TS_ClosingSigned_clone_ptr(arg);
22336         return nativeResponseValue;
22337 }
22338         // struct LDKClosingSigned ClosingSigned_clone(const struct LDKClosingSigned *NONNULL_PTR orig);
22339 /* @internal */
22340 export function ClosingSigned_clone(orig: number): number {
22341         if(!isWasmInitialized) {
22342                 throw new Error("initializeWasm() must be awaited first!");
22343         }
22344         const nativeResponseValue = wasm.TS_ClosingSigned_clone(orig);
22345         return nativeResponseValue;
22346 }
22347         // void UpdateAddHTLC_free(struct LDKUpdateAddHTLC this_obj);
22348 /* @internal */
22349 export function UpdateAddHTLC_free(this_obj: number): void {
22350         if(!isWasmInitialized) {
22351                 throw new Error("initializeWasm() must be awaited first!");
22352         }
22353         const nativeResponseValue = wasm.TS_UpdateAddHTLC_free(this_obj);
22354         // debug statements here
22355 }
22356         // const uint8_t (*UpdateAddHTLC_get_channel_id(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr))[32];
22357 /* @internal */
22358 export function UpdateAddHTLC_get_channel_id(this_ptr: number): number {
22359         if(!isWasmInitialized) {
22360                 throw new Error("initializeWasm() must be awaited first!");
22361         }
22362         const nativeResponseValue = wasm.TS_UpdateAddHTLC_get_channel_id(this_ptr);
22363         return nativeResponseValue;
22364 }
22365         // void UpdateAddHTLC_set_channel_id(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22366 /* @internal */
22367 export function UpdateAddHTLC_set_channel_id(this_ptr: number, val: number): void {
22368         if(!isWasmInitialized) {
22369                 throw new Error("initializeWasm() must be awaited first!");
22370         }
22371         const nativeResponseValue = wasm.TS_UpdateAddHTLC_set_channel_id(this_ptr, val);
22372         // debug statements here
22373 }
22374         // uint64_t UpdateAddHTLC_get_htlc_id(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
22375 /* @internal */
22376 export function UpdateAddHTLC_get_htlc_id(this_ptr: number): bigint {
22377         if(!isWasmInitialized) {
22378                 throw new Error("initializeWasm() must be awaited first!");
22379         }
22380         const nativeResponseValue = wasm.TS_UpdateAddHTLC_get_htlc_id(this_ptr);
22381         return nativeResponseValue;
22382 }
22383         // void UpdateAddHTLC_set_htlc_id(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint64_t val);
22384 /* @internal */
22385 export function UpdateAddHTLC_set_htlc_id(this_ptr: number, val: bigint): void {
22386         if(!isWasmInitialized) {
22387                 throw new Error("initializeWasm() must be awaited first!");
22388         }
22389         const nativeResponseValue = wasm.TS_UpdateAddHTLC_set_htlc_id(this_ptr, val);
22390         // debug statements here
22391 }
22392         // uint64_t UpdateAddHTLC_get_amount_msat(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
22393 /* @internal */
22394 export function UpdateAddHTLC_get_amount_msat(this_ptr: number): bigint {
22395         if(!isWasmInitialized) {
22396                 throw new Error("initializeWasm() must be awaited first!");
22397         }
22398         const nativeResponseValue = wasm.TS_UpdateAddHTLC_get_amount_msat(this_ptr);
22399         return nativeResponseValue;
22400 }
22401         // void UpdateAddHTLC_set_amount_msat(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint64_t val);
22402 /* @internal */
22403 export function UpdateAddHTLC_set_amount_msat(this_ptr: number, val: bigint): void {
22404         if(!isWasmInitialized) {
22405                 throw new Error("initializeWasm() must be awaited first!");
22406         }
22407         const nativeResponseValue = wasm.TS_UpdateAddHTLC_set_amount_msat(this_ptr, val);
22408         // debug statements here
22409 }
22410         // const uint8_t (*UpdateAddHTLC_get_payment_hash(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr))[32];
22411 /* @internal */
22412 export function UpdateAddHTLC_get_payment_hash(this_ptr: number): number {
22413         if(!isWasmInitialized) {
22414                 throw new Error("initializeWasm() must be awaited first!");
22415         }
22416         const nativeResponseValue = wasm.TS_UpdateAddHTLC_get_payment_hash(this_ptr);
22417         return nativeResponseValue;
22418 }
22419         // void UpdateAddHTLC_set_payment_hash(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22420 /* @internal */
22421 export function UpdateAddHTLC_set_payment_hash(this_ptr: number, val: number): void {
22422         if(!isWasmInitialized) {
22423                 throw new Error("initializeWasm() must be awaited first!");
22424         }
22425         const nativeResponseValue = wasm.TS_UpdateAddHTLC_set_payment_hash(this_ptr, val);
22426         // debug statements here
22427 }
22428         // uint32_t UpdateAddHTLC_get_cltv_expiry(const struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr);
22429 /* @internal */
22430 export function UpdateAddHTLC_get_cltv_expiry(this_ptr: number): number {
22431         if(!isWasmInitialized) {
22432                 throw new Error("initializeWasm() must be awaited first!");
22433         }
22434         const nativeResponseValue = wasm.TS_UpdateAddHTLC_get_cltv_expiry(this_ptr);
22435         return nativeResponseValue;
22436 }
22437         // void UpdateAddHTLC_set_cltv_expiry(struct LDKUpdateAddHTLC *NONNULL_PTR this_ptr, uint32_t val);
22438 /* @internal */
22439 export function UpdateAddHTLC_set_cltv_expiry(this_ptr: number, val: number): void {
22440         if(!isWasmInitialized) {
22441                 throw new Error("initializeWasm() must be awaited first!");
22442         }
22443         const nativeResponseValue = wasm.TS_UpdateAddHTLC_set_cltv_expiry(this_ptr, val);
22444         // debug statements here
22445 }
22446         // uintptr_t UpdateAddHTLC_clone_ptr(LDKUpdateAddHTLC *NONNULL_PTR arg);
22447 /* @internal */
22448 export function UpdateAddHTLC_clone_ptr(arg: number): number {
22449         if(!isWasmInitialized) {
22450                 throw new Error("initializeWasm() must be awaited first!");
22451         }
22452         const nativeResponseValue = wasm.TS_UpdateAddHTLC_clone_ptr(arg);
22453         return nativeResponseValue;
22454 }
22455         // struct LDKUpdateAddHTLC UpdateAddHTLC_clone(const struct LDKUpdateAddHTLC *NONNULL_PTR orig);
22456 /* @internal */
22457 export function UpdateAddHTLC_clone(orig: number): number {
22458         if(!isWasmInitialized) {
22459                 throw new Error("initializeWasm() must be awaited first!");
22460         }
22461         const nativeResponseValue = wasm.TS_UpdateAddHTLC_clone(orig);
22462         return nativeResponseValue;
22463 }
22464         // void UpdateFulfillHTLC_free(struct LDKUpdateFulfillHTLC this_obj);
22465 /* @internal */
22466 export function UpdateFulfillHTLC_free(this_obj: number): void {
22467         if(!isWasmInitialized) {
22468                 throw new Error("initializeWasm() must be awaited first!");
22469         }
22470         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_free(this_obj);
22471         // debug statements here
22472 }
22473         // const uint8_t (*UpdateFulfillHTLC_get_channel_id(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr))[32];
22474 /* @internal */
22475 export function UpdateFulfillHTLC_get_channel_id(this_ptr: number): number {
22476         if(!isWasmInitialized) {
22477                 throw new Error("initializeWasm() must be awaited first!");
22478         }
22479         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_get_channel_id(this_ptr);
22480         return nativeResponseValue;
22481 }
22482         // void UpdateFulfillHTLC_set_channel_id(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22483 /* @internal */
22484 export function UpdateFulfillHTLC_set_channel_id(this_ptr: number, val: number): void {
22485         if(!isWasmInitialized) {
22486                 throw new Error("initializeWasm() must be awaited first!");
22487         }
22488         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_set_channel_id(this_ptr, val);
22489         // debug statements here
22490 }
22491         // uint64_t UpdateFulfillHTLC_get_htlc_id(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr);
22492 /* @internal */
22493 export function UpdateFulfillHTLC_get_htlc_id(this_ptr: number): bigint {
22494         if(!isWasmInitialized) {
22495                 throw new Error("initializeWasm() must be awaited first!");
22496         }
22497         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_get_htlc_id(this_ptr);
22498         return nativeResponseValue;
22499 }
22500         // void UpdateFulfillHTLC_set_htlc_id(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, uint64_t val);
22501 /* @internal */
22502 export function UpdateFulfillHTLC_set_htlc_id(this_ptr: number, val: bigint): void {
22503         if(!isWasmInitialized) {
22504                 throw new Error("initializeWasm() must be awaited first!");
22505         }
22506         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_set_htlc_id(this_ptr, val);
22507         // debug statements here
22508 }
22509         // const uint8_t (*UpdateFulfillHTLC_get_payment_preimage(const struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr))[32];
22510 /* @internal */
22511 export function UpdateFulfillHTLC_get_payment_preimage(this_ptr: number): number {
22512         if(!isWasmInitialized) {
22513                 throw new Error("initializeWasm() must be awaited first!");
22514         }
22515         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_get_payment_preimage(this_ptr);
22516         return nativeResponseValue;
22517 }
22518         // void UpdateFulfillHTLC_set_payment_preimage(struct LDKUpdateFulfillHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22519 /* @internal */
22520 export function UpdateFulfillHTLC_set_payment_preimage(this_ptr: number, val: number): void {
22521         if(!isWasmInitialized) {
22522                 throw new Error("initializeWasm() must be awaited first!");
22523         }
22524         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_set_payment_preimage(this_ptr, val);
22525         // debug statements here
22526 }
22527         // MUST_USE_RES struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t htlc_id_arg, struct LDKThirtyTwoBytes payment_preimage_arg);
22528 /* @internal */
22529 export function UpdateFulfillHTLC_new(channel_id_arg: number, htlc_id_arg: bigint, payment_preimage_arg: number): number {
22530         if(!isWasmInitialized) {
22531                 throw new Error("initializeWasm() must be awaited first!");
22532         }
22533         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_new(channel_id_arg, htlc_id_arg, payment_preimage_arg);
22534         return nativeResponseValue;
22535 }
22536         // uintptr_t UpdateFulfillHTLC_clone_ptr(LDKUpdateFulfillHTLC *NONNULL_PTR arg);
22537 /* @internal */
22538 export function UpdateFulfillHTLC_clone_ptr(arg: number): number {
22539         if(!isWasmInitialized) {
22540                 throw new Error("initializeWasm() must be awaited first!");
22541         }
22542         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_clone_ptr(arg);
22543         return nativeResponseValue;
22544 }
22545         // struct LDKUpdateFulfillHTLC UpdateFulfillHTLC_clone(const struct LDKUpdateFulfillHTLC *NONNULL_PTR orig);
22546 /* @internal */
22547 export function UpdateFulfillHTLC_clone(orig: number): number {
22548         if(!isWasmInitialized) {
22549                 throw new Error("initializeWasm() must be awaited first!");
22550         }
22551         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_clone(orig);
22552         return nativeResponseValue;
22553 }
22554         // void UpdateFailHTLC_free(struct LDKUpdateFailHTLC this_obj);
22555 /* @internal */
22556 export function UpdateFailHTLC_free(this_obj: number): void {
22557         if(!isWasmInitialized) {
22558                 throw new Error("initializeWasm() must be awaited first!");
22559         }
22560         const nativeResponseValue = wasm.TS_UpdateFailHTLC_free(this_obj);
22561         // debug statements here
22562 }
22563         // const uint8_t (*UpdateFailHTLC_get_channel_id(const struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr))[32];
22564 /* @internal */
22565 export function UpdateFailHTLC_get_channel_id(this_ptr: number): number {
22566         if(!isWasmInitialized) {
22567                 throw new Error("initializeWasm() must be awaited first!");
22568         }
22569         const nativeResponseValue = wasm.TS_UpdateFailHTLC_get_channel_id(this_ptr);
22570         return nativeResponseValue;
22571 }
22572         // void UpdateFailHTLC_set_channel_id(struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22573 /* @internal */
22574 export function UpdateFailHTLC_set_channel_id(this_ptr: number, val: number): void {
22575         if(!isWasmInitialized) {
22576                 throw new Error("initializeWasm() must be awaited first!");
22577         }
22578         const nativeResponseValue = wasm.TS_UpdateFailHTLC_set_channel_id(this_ptr, val);
22579         // debug statements here
22580 }
22581         // uint64_t UpdateFailHTLC_get_htlc_id(const struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr);
22582 /* @internal */
22583 export function UpdateFailHTLC_get_htlc_id(this_ptr: number): bigint {
22584         if(!isWasmInitialized) {
22585                 throw new Error("initializeWasm() must be awaited first!");
22586         }
22587         const nativeResponseValue = wasm.TS_UpdateFailHTLC_get_htlc_id(this_ptr);
22588         return nativeResponseValue;
22589 }
22590         // void UpdateFailHTLC_set_htlc_id(struct LDKUpdateFailHTLC *NONNULL_PTR this_ptr, uint64_t val);
22591 /* @internal */
22592 export function UpdateFailHTLC_set_htlc_id(this_ptr: number, val: bigint): void {
22593         if(!isWasmInitialized) {
22594                 throw new Error("initializeWasm() must be awaited first!");
22595         }
22596         const nativeResponseValue = wasm.TS_UpdateFailHTLC_set_htlc_id(this_ptr, val);
22597         // debug statements here
22598 }
22599         // uintptr_t UpdateFailHTLC_clone_ptr(LDKUpdateFailHTLC *NONNULL_PTR arg);
22600 /* @internal */
22601 export function UpdateFailHTLC_clone_ptr(arg: number): number {
22602         if(!isWasmInitialized) {
22603                 throw new Error("initializeWasm() must be awaited first!");
22604         }
22605         const nativeResponseValue = wasm.TS_UpdateFailHTLC_clone_ptr(arg);
22606         return nativeResponseValue;
22607 }
22608         // struct LDKUpdateFailHTLC UpdateFailHTLC_clone(const struct LDKUpdateFailHTLC *NONNULL_PTR orig);
22609 /* @internal */
22610 export function UpdateFailHTLC_clone(orig: number): number {
22611         if(!isWasmInitialized) {
22612                 throw new Error("initializeWasm() must be awaited first!");
22613         }
22614         const nativeResponseValue = wasm.TS_UpdateFailHTLC_clone(orig);
22615         return nativeResponseValue;
22616 }
22617         // void UpdateFailMalformedHTLC_free(struct LDKUpdateFailMalformedHTLC this_obj);
22618 /* @internal */
22619 export function UpdateFailMalformedHTLC_free(this_obj: number): void {
22620         if(!isWasmInitialized) {
22621                 throw new Error("initializeWasm() must be awaited first!");
22622         }
22623         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_free(this_obj);
22624         // debug statements here
22625 }
22626         // const uint8_t (*UpdateFailMalformedHTLC_get_channel_id(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr))[32];
22627 /* @internal */
22628 export function UpdateFailMalformedHTLC_get_channel_id(this_ptr: number): number {
22629         if(!isWasmInitialized) {
22630                 throw new Error("initializeWasm() must be awaited first!");
22631         }
22632         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_get_channel_id(this_ptr);
22633         return nativeResponseValue;
22634 }
22635         // void UpdateFailMalformedHTLC_set_channel_id(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22636 /* @internal */
22637 export function UpdateFailMalformedHTLC_set_channel_id(this_ptr: number, val: number): void {
22638         if(!isWasmInitialized) {
22639                 throw new Error("initializeWasm() must be awaited first!");
22640         }
22641         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_set_channel_id(this_ptr, val);
22642         // debug statements here
22643 }
22644         // uint64_t UpdateFailMalformedHTLC_get_htlc_id(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr);
22645 /* @internal */
22646 export function UpdateFailMalformedHTLC_get_htlc_id(this_ptr: number): bigint {
22647         if(!isWasmInitialized) {
22648                 throw new Error("initializeWasm() must be awaited first!");
22649         }
22650         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_get_htlc_id(this_ptr);
22651         return nativeResponseValue;
22652 }
22653         // void UpdateFailMalformedHTLC_set_htlc_id(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, uint64_t val);
22654 /* @internal */
22655 export function UpdateFailMalformedHTLC_set_htlc_id(this_ptr: number, val: bigint): void {
22656         if(!isWasmInitialized) {
22657                 throw new Error("initializeWasm() must be awaited first!");
22658         }
22659         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_set_htlc_id(this_ptr, val);
22660         // debug statements here
22661 }
22662         // uint16_t UpdateFailMalformedHTLC_get_failure_code(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr);
22663 /* @internal */
22664 export function UpdateFailMalformedHTLC_get_failure_code(this_ptr: number): number {
22665         if(!isWasmInitialized) {
22666                 throw new Error("initializeWasm() must be awaited first!");
22667         }
22668         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_get_failure_code(this_ptr);
22669         return nativeResponseValue;
22670 }
22671         // void UpdateFailMalformedHTLC_set_failure_code(struct LDKUpdateFailMalformedHTLC *NONNULL_PTR this_ptr, uint16_t val);
22672 /* @internal */
22673 export function UpdateFailMalformedHTLC_set_failure_code(this_ptr: number, val: number): void {
22674         if(!isWasmInitialized) {
22675                 throw new Error("initializeWasm() must be awaited first!");
22676         }
22677         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_set_failure_code(this_ptr, val);
22678         // debug statements here
22679 }
22680         // uintptr_t UpdateFailMalformedHTLC_clone_ptr(LDKUpdateFailMalformedHTLC *NONNULL_PTR arg);
22681 /* @internal */
22682 export function UpdateFailMalformedHTLC_clone_ptr(arg: number): number {
22683         if(!isWasmInitialized) {
22684                 throw new Error("initializeWasm() must be awaited first!");
22685         }
22686         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_clone_ptr(arg);
22687         return nativeResponseValue;
22688 }
22689         // struct LDKUpdateFailMalformedHTLC UpdateFailMalformedHTLC_clone(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR orig);
22690 /* @internal */
22691 export function UpdateFailMalformedHTLC_clone(orig: number): number {
22692         if(!isWasmInitialized) {
22693                 throw new Error("initializeWasm() must be awaited first!");
22694         }
22695         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_clone(orig);
22696         return nativeResponseValue;
22697 }
22698         // void CommitmentSigned_free(struct LDKCommitmentSigned this_obj);
22699 /* @internal */
22700 export function CommitmentSigned_free(this_obj: number): void {
22701         if(!isWasmInitialized) {
22702                 throw new Error("initializeWasm() must be awaited first!");
22703         }
22704         const nativeResponseValue = wasm.TS_CommitmentSigned_free(this_obj);
22705         // debug statements here
22706 }
22707         // const uint8_t (*CommitmentSigned_get_channel_id(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr))[32];
22708 /* @internal */
22709 export function CommitmentSigned_get_channel_id(this_ptr: number): number {
22710         if(!isWasmInitialized) {
22711                 throw new Error("initializeWasm() must be awaited first!");
22712         }
22713         const nativeResponseValue = wasm.TS_CommitmentSigned_get_channel_id(this_ptr);
22714         return nativeResponseValue;
22715 }
22716         // void CommitmentSigned_set_channel_id(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22717 /* @internal */
22718 export function CommitmentSigned_set_channel_id(this_ptr: number, val: number): void {
22719         if(!isWasmInitialized) {
22720                 throw new Error("initializeWasm() must be awaited first!");
22721         }
22722         const nativeResponseValue = wasm.TS_CommitmentSigned_set_channel_id(this_ptr, val);
22723         // debug statements here
22724 }
22725         // struct LDKSignature CommitmentSigned_get_signature(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr);
22726 /* @internal */
22727 export function CommitmentSigned_get_signature(this_ptr: number): number {
22728         if(!isWasmInitialized) {
22729                 throw new Error("initializeWasm() must be awaited first!");
22730         }
22731         const nativeResponseValue = wasm.TS_CommitmentSigned_get_signature(this_ptr);
22732         return nativeResponseValue;
22733 }
22734         // void CommitmentSigned_set_signature(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKSignature val);
22735 /* @internal */
22736 export function CommitmentSigned_set_signature(this_ptr: number, val: number): void {
22737         if(!isWasmInitialized) {
22738                 throw new Error("initializeWasm() must be awaited first!");
22739         }
22740         const nativeResponseValue = wasm.TS_CommitmentSigned_set_signature(this_ptr, val);
22741         // debug statements here
22742 }
22743         // struct LDKCVec_SignatureZ CommitmentSigned_get_htlc_signatures(const struct LDKCommitmentSigned *NONNULL_PTR this_ptr);
22744 /* @internal */
22745 export function CommitmentSigned_get_htlc_signatures(this_ptr: number): number {
22746         if(!isWasmInitialized) {
22747                 throw new Error("initializeWasm() must be awaited first!");
22748         }
22749         const nativeResponseValue = wasm.TS_CommitmentSigned_get_htlc_signatures(this_ptr);
22750         return nativeResponseValue;
22751 }
22752         // void CommitmentSigned_set_htlc_signatures(struct LDKCommitmentSigned *NONNULL_PTR this_ptr, struct LDKCVec_SignatureZ val);
22753 /* @internal */
22754 export function CommitmentSigned_set_htlc_signatures(this_ptr: number, val: number): void {
22755         if(!isWasmInitialized) {
22756                 throw new Error("initializeWasm() must be awaited first!");
22757         }
22758         const nativeResponseValue = wasm.TS_CommitmentSigned_set_htlc_signatures(this_ptr, val);
22759         // debug statements here
22760 }
22761         // MUST_USE_RES struct LDKCommitmentSigned CommitmentSigned_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKSignature signature_arg, struct LDKCVec_SignatureZ htlc_signatures_arg);
22762 /* @internal */
22763 export function CommitmentSigned_new(channel_id_arg: number, signature_arg: number, htlc_signatures_arg: number): number {
22764         if(!isWasmInitialized) {
22765                 throw new Error("initializeWasm() must be awaited first!");
22766         }
22767         const nativeResponseValue = wasm.TS_CommitmentSigned_new(channel_id_arg, signature_arg, htlc_signatures_arg);
22768         return nativeResponseValue;
22769 }
22770         // uintptr_t CommitmentSigned_clone_ptr(LDKCommitmentSigned *NONNULL_PTR arg);
22771 /* @internal */
22772 export function CommitmentSigned_clone_ptr(arg: number): number {
22773         if(!isWasmInitialized) {
22774                 throw new Error("initializeWasm() must be awaited first!");
22775         }
22776         const nativeResponseValue = wasm.TS_CommitmentSigned_clone_ptr(arg);
22777         return nativeResponseValue;
22778 }
22779         // struct LDKCommitmentSigned CommitmentSigned_clone(const struct LDKCommitmentSigned *NONNULL_PTR orig);
22780 /* @internal */
22781 export function CommitmentSigned_clone(orig: number): number {
22782         if(!isWasmInitialized) {
22783                 throw new Error("initializeWasm() must be awaited first!");
22784         }
22785         const nativeResponseValue = wasm.TS_CommitmentSigned_clone(orig);
22786         return nativeResponseValue;
22787 }
22788         // void RevokeAndACK_free(struct LDKRevokeAndACK this_obj);
22789 /* @internal */
22790 export function RevokeAndACK_free(this_obj: number): void {
22791         if(!isWasmInitialized) {
22792                 throw new Error("initializeWasm() must be awaited first!");
22793         }
22794         const nativeResponseValue = wasm.TS_RevokeAndACK_free(this_obj);
22795         // debug statements here
22796 }
22797         // const uint8_t (*RevokeAndACK_get_channel_id(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr))[32];
22798 /* @internal */
22799 export function RevokeAndACK_get_channel_id(this_ptr: number): number {
22800         if(!isWasmInitialized) {
22801                 throw new Error("initializeWasm() must be awaited first!");
22802         }
22803         const nativeResponseValue = wasm.TS_RevokeAndACK_get_channel_id(this_ptr);
22804         return nativeResponseValue;
22805 }
22806         // void RevokeAndACK_set_channel_id(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22807 /* @internal */
22808 export function RevokeAndACK_set_channel_id(this_ptr: number, val: number): void {
22809         if(!isWasmInitialized) {
22810                 throw new Error("initializeWasm() must be awaited first!");
22811         }
22812         const nativeResponseValue = wasm.TS_RevokeAndACK_set_channel_id(this_ptr, val);
22813         // debug statements here
22814 }
22815         // const uint8_t (*RevokeAndACK_get_per_commitment_secret(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr))[32];
22816 /* @internal */
22817 export function RevokeAndACK_get_per_commitment_secret(this_ptr: number): number {
22818         if(!isWasmInitialized) {
22819                 throw new Error("initializeWasm() must be awaited first!");
22820         }
22821         const nativeResponseValue = wasm.TS_RevokeAndACK_get_per_commitment_secret(this_ptr);
22822         return nativeResponseValue;
22823 }
22824         // void RevokeAndACK_set_per_commitment_secret(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22825 /* @internal */
22826 export function RevokeAndACK_set_per_commitment_secret(this_ptr: number, val: number): void {
22827         if(!isWasmInitialized) {
22828                 throw new Error("initializeWasm() must be awaited first!");
22829         }
22830         const nativeResponseValue = wasm.TS_RevokeAndACK_set_per_commitment_secret(this_ptr, val);
22831         // debug statements here
22832 }
22833         // struct LDKPublicKey RevokeAndACK_get_next_per_commitment_point(const struct LDKRevokeAndACK *NONNULL_PTR this_ptr);
22834 /* @internal */
22835 export function RevokeAndACK_get_next_per_commitment_point(this_ptr: number): number {
22836         if(!isWasmInitialized) {
22837                 throw new Error("initializeWasm() must be awaited first!");
22838         }
22839         const nativeResponseValue = wasm.TS_RevokeAndACK_get_next_per_commitment_point(this_ptr);
22840         return nativeResponseValue;
22841 }
22842         // void RevokeAndACK_set_next_per_commitment_point(struct LDKRevokeAndACK *NONNULL_PTR this_ptr, struct LDKPublicKey val);
22843 /* @internal */
22844 export function RevokeAndACK_set_next_per_commitment_point(this_ptr: number, val: number): void {
22845         if(!isWasmInitialized) {
22846                 throw new Error("initializeWasm() must be awaited first!");
22847         }
22848         const nativeResponseValue = wasm.TS_RevokeAndACK_set_next_per_commitment_point(this_ptr, val);
22849         // debug statements here
22850 }
22851         // MUST_USE_RES struct LDKRevokeAndACK RevokeAndACK_new(struct LDKThirtyTwoBytes channel_id_arg, struct LDKThirtyTwoBytes per_commitment_secret_arg, struct LDKPublicKey next_per_commitment_point_arg);
22852 /* @internal */
22853 export function RevokeAndACK_new(channel_id_arg: number, per_commitment_secret_arg: number, next_per_commitment_point_arg: number): number {
22854         if(!isWasmInitialized) {
22855                 throw new Error("initializeWasm() must be awaited first!");
22856         }
22857         const nativeResponseValue = wasm.TS_RevokeAndACK_new(channel_id_arg, per_commitment_secret_arg, next_per_commitment_point_arg);
22858         return nativeResponseValue;
22859 }
22860         // uintptr_t RevokeAndACK_clone_ptr(LDKRevokeAndACK *NONNULL_PTR arg);
22861 /* @internal */
22862 export function RevokeAndACK_clone_ptr(arg: number): number {
22863         if(!isWasmInitialized) {
22864                 throw new Error("initializeWasm() must be awaited first!");
22865         }
22866         const nativeResponseValue = wasm.TS_RevokeAndACK_clone_ptr(arg);
22867         return nativeResponseValue;
22868 }
22869         // struct LDKRevokeAndACK RevokeAndACK_clone(const struct LDKRevokeAndACK *NONNULL_PTR orig);
22870 /* @internal */
22871 export function RevokeAndACK_clone(orig: number): number {
22872         if(!isWasmInitialized) {
22873                 throw new Error("initializeWasm() must be awaited first!");
22874         }
22875         const nativeResponseValue = wasm.TS_RevokeAndACK_clone(orig);
22876         return nativeResponseValue;
22877 }
22878         // void UpdateFee_free(struct LDKUpdateFee this_obj);
22879 /* @internal */
22880 export function UpdateFee_free(this_obj: number): void {
22881         if(!isWasmInitialized) {
22882                 throw new Error("initializeWasm() must be awaited first!");
22883         }
22884         const nativeResponseValue = wasm.TS_UpdateFee_free(this_obj);
22885         // debug statements here
22886 }
22887         // const uint8_t (*UpdateFee_get_channel_id(const struct LDKUpdateFee *NONNULL_PTR this_ptr))[32];
22888 /* @internal */
22889 export function UpdateFee_get_channel_id(this_ptr: number): number {
22890         if(!isWasmInitialized) {
22891                 throw new Error("initializeWasm() must be awaited first!");
22892         }
22893         const nativeResponseValue = wasm.TS_UpdateFee_get_channel_id(this_ptr);
22894         return nativeResponseValue;
22895 }
22896         // void UpdateFee_set_channel_id(struct LDKUpdateFee *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22897 /* @internal */
22898 export function UpdateFee_set_channel_id(this_ptr: number, val: number): void {
22899         if(!isWasmInitialized) {
22900                 throw new Error("initializeWasm() must be awaited first!");
22901         }
22902         const nativeResponseValue = wasm.TS_UpdateFee_set_channel_id(this_ptr, val);
22903         // debug statements here
22904 }
22905         // uint32_t UpdateFee_get_feerate_per_kw(const struct LDKUpdateFee *NONNULL_PTR this_ptr);
22906 /* @internal */
22907 export function UpdateFee_get_feerate_per_kw(this_ptr: number): number {
22908         if(!isWasmInitialized) {
22909                 throw new Error("initializeWasm() must be awaited first!");
22910         }
22911         const nativeResponseValue = wasm.TS_UpdateFee_get_feerate_per_kw(this_ptr);
22912         return nativeResponseValue;
22913 }
22914         // void UpdateFee_set_feerate_per_kw(struct LDKUpdateFee *NONNULL_PTR this_ptr, uint32_t val);
22915 /* @internal */
22916 export function UpdateFee_set_feerate_per_kw(this_ptr: number, val: number): void {
22917         if(!isWasmInitialized) {
22918                 throw new Error("initializeWasm() must be awaited first!");
22919         }
22920         const nativeResponseValue = wasm.TS_UpdateFee_set_feerate_per_kw(this_ptr, val);
22921         // debug statements here
22922 }
22923         // MUST_USE_RES struct LDKUpdateFee UpdateFee_new(struct LDKThirtyTwoBytes channel_id_arg, uint32_t feerate_per_kw_arg);
22924 /* @internal */
22925 export function UpdateFee_new(channel_id_arg: number, feerate_per_kw_arg: number): number {
22926         if(!isWasmInitialized) {
22927                 throw new Error("initializeWasm() must be awaited first!");
22928         }
22929         const nativeResponseValue = wasm.TS_UpdateFee_new(channel_id_arg, feerate_per_kw_arg);
22930         return nativeResponseValue;
22931 }
22932         // uintptr_t UpdateFee_clone_ptr(LDKUpdateFee *NONNULL_PTR arg);
22933 /* @internal */
22934 export function UpdateFee_clone_ptr(arg: number): number {
22935         if(!isWasmInitialized) {
22936                 throw new Error("initializeWasm() must be awaited first!");
22937         }
22938         const nativeResponseValue = wasm.TS_UpdateFee_clone_ptr(arg);
22939         return nativeResponseValue;
22940 }
22941         // struct LDKUpdateFee UpdateFee_clone(const struct LDKUpdateFee *NONNULL_PTR orig);
22942 /* @internal */
22943 export function UpdateFee_clone(orig: number): number {
22944         if(!isWasmInitialized) {
22945                 throw new Error("initializeWasm() must be awaited first!");
22946         }
22947         const nativeResponseValue = wasm.TS_UpdateFee_clone(orig);
22948         return nativeResponseValue;
22949 }
22950         // void DataLossProtect_free(struct LDKDataLossProtect this_obj);
22951 /* @internal */
22952 export function DataLossProtect_free(this_obj: number): void {
22953         if(!isWasmInitialized) {
22954                 throw new Error("initializeWasm() must be awaited first!");
22955         }
22956         const nativeResponseValue = wasm.TS_DataLossProtect_free(this_obj);
22957         // debug statements here
22958 }
22959         // const uint8_t (*DataLossProtect_get_your_last_per_commitment_secret(const struct LDKDataLossProtect *NONNULL_PTR this_ptr))[32];
22960 /* @internal */
22961 export function DataLossProtect_get_your_last_per_commitment_secret(this_ptr: number): number {
22962         if(!isWasmInitialized) {
22963                 throw new Error("initializeWasm() must be awaited first!");
22964         }
22965         const nativeResponseValue = wasm.TS_DataLossProtect_get_your_last_per_commitment_secret(this_ptr);
22966         return nativeResponseValue;
22967 }
22968         // void DataLossProtect_set_your_last_per_commitment_secret(struct LDKDataLossProtect *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
22969 /* @internal */
22970 export function DataLossProtect_set_your_last_per_commitment_secret(this_ptr: number, val: number): void {
22971         if(!isWasmInitialized) {
22972                 throw new Error("initializeWasm() must be awaited first!");
22973         }
22974         const nativeResponseValue = wasm.TS_DataLossProtect_set_your_last_per_commitment_secret(this_ptr, val);
22975         // debug statements here
22976 }
22977         // struct LDKPublicKey DataLossProtect_get_my_current_per_commitment_point(const struct LDKDataLossProtect *NONNULL_PTR this_ptr);
22978 /* @internal */
22979 export function DataLossProtect_get_my_current_per_commitment_point(this_ptr: number): number {
22980         if(!isWasmInitialized) {
22981                 throw new Error("initializeWasm() must be awaited first!");
22982         }
22983         const nativeResponseValue = wasm.TS_DataLossProtect_get_my_current_per_commitment_point(this_ptr);
22984         return nativeResponseValue;
22985 }
22986         // void DataLossProtect_set_my_current_per_commitment_point(struct LDKDataLossProtect *NONNULL_PTR this_ptr, struct LDKPublicKey val);
22987 /* @internal */
22988 export function DataLossProtect_set_my_current_per_commitment_point(this_ptr: number, val: number): void {
22989         if(!isWasmInitialized) {
22990                 throw new Error("initializeWasm() must be awaited first!");
22991         }
22992         const nativeResponseValue = wasm.TS_DataLossProtect_set_my_current_per_commitment_point(this_ptr, val);
22993         // debug statements here
22994 }
22995         // MUST_USE_RES struct LDKDataLossProtect DataLossProtect_new(struct LDKThirtyTwoBytes your_last_per_commitment_secret_arg, struct LDKPublicKey my_current_per_commitment_point_arg);
22996 /* @internal */
22997 export function DataLossProtect_new(your_last_per_commitment_secret_arg: number, my_current_per_commitment_point_arg: number): number {
22998         if(!isWasmInitialized) {
22999                 throw new Error("initializeWasm() must be awaited first!");
23000         }
23001         const nativeResponseValue = wasm.TS_DataLossProtect_new(your_last_per_commitment_secret_arg, my_current_per_commitment_point_arg);
23002         return nativeResponseValue;
23003 }
23004         // uintptr_t DataLossProtect_clone_ptr(LDKDataLossProtect *NONNULL_PTR arg);
23005 /* @internal */
23006 export function DataLossProtect_clone_ptr(arg: number): number {
23007         if(!isWasmInitialized) {
23008                 throw new Error("initializeWasm() must be awaited first!");
23009         }
23010         const nativeResponseValue = wasm.TS_DataLossProtect_clone_ptr(arg);
23011         return nativeResponseValue;
23012 }
23013         // struct LDKDataLossProtect DataLossProtect_clone(const struct LDKDataLossProtect *NONNULL_PTR orig);
23014 /* @internal */
23015 export function DataLossProtect_clone(orig: number): number {
23016         if(!isWasmInitialized) {
23017                 throw new Error("initializeWasm() must be awaited first!");
23018         }
23019         const nativeResponseValue = wasm.TS_DataLossProtect_clone(orig);
23020         return nativeResponseValue;
23021 }
23022         // void ChannelReestablish_free(struct LDKChannelReestablish this_obj);
23023 /* @internal */
23024 export function ChannelReestablish_free(this_obj: number): void {
23025         if(!isWasmInitialized) {
23026                 throw new Error("initializeWasm() must be awaited first!");
23027         }
23028         const nativeResponseValue = wasm.TS_ChannelReestablish_free(this_obj);
23029         // debug statements here
23030 }
23031         // const uint8_t (*ChannelReestablish_get_channel_id(const struct LDKChannelReestablish *NONNULL_PTR this_ptr))[32];
23032 /* @internal */
23033 export function ChannelReestablish_get_channel_id(this_ptr: number): number {
23034         if(!isWasmInitialized) {
23035                 throw new Error("initializeWasm() must be awaited first!");
23036         }
23037         const nativeResponseValue = wasm.TS_ChannelReestablish_get_channel_id(this_ptr);
23038         return nativeResponseValue;
23039 }
23040         // void ChannelReestablish_set_channel_id(struct LDKChannelReestablish *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
23041 /* @internal */
23042 export function ChannelReestablish_set_channel_id(this_ptr: number, val: number): void {
23043         if(!isWasmInitialized) {
23044                 throw new Error("initializeWasm() must be awaited first!");
23045         }
23046         const nativeResponseValue = wasm.TS_ChannelReestablish_set_channel_id(this_ptr, val);
23047         // debug statements here
23048 }
23049         // uint64_t ChannelReestablish_get_next_local_commitment_number(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
23050 /* @internal */
23051 export function ChannelReestablish_get_next_local_commitment_number(this_ptr: number): bigint {
23052         if(!isWasmInitialized) {
23053                 throw new Error("initializeWasm() must be awaited first!");
23054         }
23055         const nativeResponseValue = wasm.TS_ChannelReestablish_get_next_local_commitment_number(this_ptr);
23056         return nativeResponseValue;
23057 }
23058         // void ChannelReestablish_set_next_local_commitment_number(struct LDKChannelReestablish *NONNULL_PTR this_ptr, uint64_t val);
23059 /* @internal */
23060 export function ChannelReestablish_set_next_local_commitment_number(this_ptr: number, val: bigint): void {
23061         if(!isWasmInitialized) {
23062                 throw new Error("initializeWasm() must be awaited first!");
23063         }
23064         const nativeResponseValue = wasm.TS_ChannelReestablish_set_next_local_commitment_number(this_ptr, val);
23065         // debug statements here
23066 }
23067         // uint64_t ChannelReestablish_get_next_remote_commitment_number(const struct LDKChannelReestablish *NONNULL_PTR this_ptr);
23068 /* @internal */
23069 export function ChannelReestablish_get_next_remote_commitment_number(this_ptr: number): bigint {
23070         if(!isWasmInitialized) {
23071                 throw new Error("initializeWasm() must be awaited first!");
23072         }
23073         const nativeResponseValue = wasm.TS_ChannelReestablish_get_next_remote_commitment_number(this_ptr);
23074         return nativeResponseValue;
23075 }
23076         // void ChannelReestablish_set_next_remote_commitment_number(struct LDKChannelReestablish *NONNULL_PTR this_ptr, uint64_t val);
23077 /* @internal */
23078 export function ChannelReestablish_set_next_remote_commitment_number(this_ptr: number, val: bigint): void {
23079         if(!isWasmInitialized) {
23080                 throw new Error("initializeWasm() must be awaited first!");
23081         }
23082         const nativeResponseValue = wasm.TS_ChannelReestablish_set_next_remote_commitment_number(this_ptr, val);
23083         // debug statements here
23084 }
23085         // uintptr_t ChannelReestablish_clone_ptr(LDKChannelReestablish *NONNULL_PTR arg);
23086 /* @internal */
23087 export function ChannelReestablish_clone_ptr(arg: number): number {
23088         if(!isWasmInitialized) {
23089                 throw new Error("initializeWasm() must be awaited first!");
23090         }
23091         const nativeResponseValue = wasm.TS_ChannelReestablish_clone_ptr(arg);
23092         return nativeResponseValue;
23093 }
23094         // struct LDKChannelReestablish ChannelReestablish_clone(const struct LDKChannelReestablish *NONNULL_PTR orig);
23095 /* @internal */
23096 export function ChannelReestablish_clone(orig: number): number {
23097         if(!isWasmInitialized) {
23098                 throw new Error("initializeWasm() must be awaited first!");
23099         }
23100         const nativeResponseValue = wasm.TS_ChannelReestablish_clone(orig);
23101         return nativeResponseValue;
23102 }
23103         // void AnnouncementSignatures_free(struct LDKAnnouncementSignatures this_obj);
23104 /* @internal */
23105 export function AnnouncementSignatures_free(this_obj: number): void {
23106         if(!isWasmInitialized) {
23107                 throw new Error("initializeWasm() must be awaited first!");
23108         }
23109         const nativeResponseValue = wasm.TS_AnnouncementSignatures_free(this_obj);
23110         // debug statements here
23111 }
23112         // const uint8_t (*AnnouncementSignatures_get_channel_id(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr))[32];
23113 /* @internal */
23114 export function AnnouncementSignatures_get_channel_id(this_ptr: number): number {
23115         if(!isWasmInitialized) {
23116                 throw new Error("initializeWasm() must be awaited first!");
23117         }
23118         const nativeResponseValue = wasm.TS_AnnouncementSignatures_get_channel_id(this_ptr);
23119         return nativeResponseValue;
23120 }
23121         // void AnnouncementSignatures_set_channel_id(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
23122 /* @internal */
23123 export function AnnouncementSignatures_set_channel_id(this_ptr: number, val: number): void {
23124         if(!isWasmInitialized) {
23125                 throw new Error("initializeWasm() must be awaited first!");
23126         }
23127         const nativeResponseValue = wasm.TS_AnnouncementSignatures_set_channel_id(this_ptr, val);
23128         // debug statements here
23129 }
23130         // uint64_t AnnouncementSignatures_get_short_channel_id(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
23131 /* @internal */
23132 export function AnnouncementSignatures_get_short_channel_id(this_ptr: number): bigint {
23133         if(!isWasmInitialized) {
23134                 throw new Error("initializeWasm() must be awaited first!");
23135         }
23136         const nativeResponseValue = wasm.TS_AnnouncementSignatures_get_short_channel_id(this_ptr);
23137         return nativeResponseValue;
23138 }
23139         // void AnnouncementSignatures_set_short_channel_id(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, uint64_t val);
23140 /* @internal */
23141 export function AnnouncementSignatures_set_short_channel_id(this_ptr: number, val: bigint): void {
23142         if(!isWasmInitialized) {
23143                 throw new Error("initializeWasm() must be awaited first!");
23144         }
23145         const nativeResponseValue = wasm.TS_AnnouncementSignatures_set_short_channel_id(this_ptr, val);
23146         // debug statements here
23147 }
23148         // struct LDKSignature AnnouncementSignatures_get_node_signature(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
23149 /* @internal */
23150 export function AnnouncementSignatures_get_node_signature(this_ptr: number): number {
23151         if(!isWasmInitialized) {
23152                 throw new Error("initializeWasm() must be awaited first!");
23153         }
23154         const nativeResponseValue = wasm.TS_AnnouncementSignatures_get_node_signature(this_ptr);
23155         return nativeResponseValue;
23156 }
23157         // void AnnouncementSignatures_set_node_signature(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKSignature val);
23158 /* @internal */
23159 export function AnnouncementSignatures_set_node_signature(this_ptr: number, val: number): void {
23160         if(!isWasmInitialized) {
23161                 throw new Error("initializeWasm() must be awaited first!");
23162         }
23163         const nativeResponseValue = wasm.TS_AnnouncementSignatures_set_node_signature(this_ptr, val);
23164         // debug statements here
23165 }
23166         // struct LDKSignature AnnouncementSignatures_get_bitcoin_signature(const struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr);
23167 /* @internal */
23168 export function AnnouncementSignatures_get_bitcoin_signature(this_ptr: number): number {
23169         if(!isWasmInitialized) {
23170                 throw new Error("initializeWasm() must be awaited first!");
23171         }
23172         const nativeResponseValue = wasm.TS_AnnouncementSignatures_get_bitcoin_signature(this_ptr);
23173         return nativeResponseValue;
23174 }
23175         // void AnnouncementSignatures_set_bitcoin_signature(struct LDKAnnouncementSignatures *NONNULL_PTR this_ptr, struct LDKSignature val);
23176 /* @internal */
23177 export function AnnouncementSignatures_set_bitcoin_signature(this_ptr: number, val: number): void {
23178         if(!isWasmInitialized) {
23179                 throw new Error("initializeWasm() must be awaited first!");
23180         }
23181         const nativeResponseValue = wasm.TS_AnnouncementSignatures_set_bitcoin_signature(this_ptr, val);
23182         // debug statements here
23183 }
23184         // MUST_USE_RES struct LDKAnnouncementSignatures AnnouncementSignatures_new(struct LDKThirtyTwoBytes channel_id_arg, uint64_t short_channel_id_arg, struct LDKSignature node_signature_arg, struct LDKSignature bitcoin_signature_arg);
23185 /* @internal */
23186 export function AnnouncementSignatures_new(channel_id_arg: number, short_channel_id_arg: bigint, node_signature_arg: number, bitcoin_signature_arg: number): number {
23187         if(!isWasmInitialized) {
23188                 throw new Error("initializeWasm() must be awaited first!");
23189         }
23190         const nativeResponseValue = wasm.TS_AnnouncementSignatures_new(channel_id_arg, short_channel_id_arg, node_signature_arg, bitcoin_signature_arg);
23191         return nativeResponseValue;
23192 }
23193         // uintptr_t AnnouncementSignatures_clone_ptr(LDKAnnouncementSignatures *NONNULL_PTR arg);
23194 /* @internal */
23195 export function AnnouncementSignatures_clone_ptr(arg: number): number {
23196         if(!isWasmInitialized) {
23197                 throw new Error("initializeWasm() must be awaited first!");
23198         }
23199         const nativeResponseValue = wasm.TS_AnnouncementSignatures_clone_ptr(arg);
23200         return nativeResponseValue;
23201 }
23202         // struct LDKAnnouncementSignatures AnnouncementSignatures_clone(const struct LDKAnnouncementSignatures *NONNULL_PTR orig);
23203 /* @internal */
23204 export function AnnouncementSignatures_clone(orig: number): number {
23205         if(!isWasmInitialized) {
23206                 throw new Error("initializeWasm() must be awaited first!");
23207         }
23208         const nativeResponseValue = wasm.TS_AnnouncementSignatures_clone(orig);
23209         return nativeResponseValue;
23210 }
23211         // void NetAddress_free(struct LDKNetAddress this_ptr);
23212 /* @internal */
23213 export function NetAddress_free(this_ptr: number): void {
23214         if(!isWasmInitialized) {
23215                 throw new Error("initializeWasm() must be awaited first!");
23216         }
23217         const nativeResponseValue = wasm.TS_NetAddress_free(this_ptr);
23218         // debug statements here
23219 }
23220         // uintptr_t NetAddress_clone_ptr(LDKNetAddress *NONNULL_PTR arg);
23221 /* @internal */
23222 export function NetAddress_clone_ptr(arg: number): number {
23223         if(!isWasmInitialized) {
23224                 throw new Error("initializeWasm() must be awaited first!");
23225         }
23226         const nativeResponseValue = wasm.TS_NetAddress_clone_ptr(arg);
23227         return nativeResponseValue;
23228 }
23229         // struct LDKNetAddress NetAddress_clone(const struct LDKNetAddress *NONNULL_PTR orig);
23230 /* @internal */
23231 export function NetAddress_clone(orig: number): number {
23232         if(!isWasmInitialized) {
23233                 throw new Error("initializeWasm() must be awaited first!");
23234         }
23235         const nativeResponseValue = wasm.TS_NetAddress_clone(orig);
23236         return nativeResponseValue;
23237 }
23238         // struct LDKNetAddress NetAddress_ipv4(struct LDKFourBytes addr, uint16_t port);
23239 /* @internal */
23240 export function NetAddress_ipv4(addr: number, port: number): number {
23241         if(!isWasmInitialized) {
23242                 throw new Error("initializeWasm() must be awaited first!");
23243         }
23244         const nativeResponseValue = wasm.TS_NetAddress_ipv4(addr, port);
23245         return nativeResponseValue;
23246 }
23247         // struct LDKNetAddress NetAddress_ipv6(struct LDKSixteenBytes addr, uint16_t port);
23248 /* @internal */
23249 export function NetAddress_ipv6(addr: number, port: number): number {
23250         if(!isWasmInitialized) {
23251                 throw new Error("initializeWasm() must be awaited first!");
23252         }
23253         const nativeResponseValue = wasm.TS_NetAddress_ipv6(addr, port);
23254         return nativeResponseValue;
23255 }
23256         // struct LDKNetAddress NetAddress_onion_v2(struct LDKTwelveBytes a);
23257 /* @internal */
23258 export function NetAddress_onion_v2(a: number): number {
23259         if(!isWasmInitialized) {
23260                 throw new Error("initializeWasm() must be awaited first!");
23261         }
23262         const nativeResponseValue = wasm.TS_NetAddress_onion_v2(a);
23263         return nativeResponseValue;
23264 }
23265         // struct LDKNetAddress NetAddress_onion_v3(struct LDKThirtyTwoBytes ed25519_pubkey, uint16_t checksum, uint8_t version, uint16_t port);
23266 /* @internal */
23267 export function NetAddress_onion_v3(ed25519_pubkey: number, checksum: number, version: number, port: number): number {
23268         if(!isWasmInitialized) {
23269                 throw new Error("initializeWasm() must be awaited first!");
23270         }
23271         const nativeResponseValue = wasm.TS_NetAddress_onion_v3(ed25519_pubkey, checksum, version, port);
23272         return nativeResponseValue;
23273 }
23274         // struct LDKNetAddress NetAddress_hostname(struct LDKHostname hostname, uint16_t port);
23275 /* @internal */
23276 export function NetAddress_hostname(hostname: number, port: number): number {
23277         if(!isWasmInitialized) {
23278                 throw new Error("initializeWasm() must be awaited first!");
23279         }
23280         const nativeResponseValue = wasm.TS_NetAddress_hostname(hostname, port);
23281         return nativeResponseValue;
23282 }
23283         // struct LDKCVec_u8Z NetAddress_write(const struct LDKNetAddress *NONNULL_PTR obj);
23284 /* @internal */
23285 export function NetAddress_write(obj: number): number {
23286         if(!isWasmInitialized) {
23287                 throw new Error("initializeWasm() must be awaited first!");
23288         }
23289         const nativeResponseValue = wasm.TS_NetAddress_write(obj);
23290         return nativeResponseValue;
23291 }
23292         // struct LDKCResult_NetAddressDecodeErrorZ NetAddress_read(struct LDKu8slice ser);
23293 /* @internal */
23294 export function NetAddress_read(ser: number): number {
23295         if(!isWasmInitialized) {
23296                 throw new Error("initializeWasm() must be awaited first!");
23297         }
23298         const nativeResponseValue = wasm.TS_NetAddress_read(ser);
23299         return nativeResponseValue;
23300 }
23301         // void UnsignedNodeAnnouncement_free(struct LDKUnsignedNodeAnnouncement this_obj);
23302 /* @internal */
23303 export function UnsignedNodeAnnouncement_free(this_obj: number): void {
23304         if(!isWasmInitialized) {
23305                 throw new Error("initializeWasm() must be awaited first!");
23306         }
23307         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_free(this_obj);
23308         // debug statements here
23309 }
23310         // struct LDKNodeFeatures UnsignedNodeAnnouncement_get_features(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
23311 /* @internal */
23312 export function UnsignedNodeAnnouncement_get_features(this_ptr: number): number {
23313         if(!isWasmInitialized) {
23314                 throw new Error("initializeWasm() must be awaited first!");
23315         }
23316         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_features(this_ptr);
23317         return nativeResponseValue;
23318 }
23319         // void UnsignedNodeAnnouncement_set_features(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
23320 /* @internal */
23321 export function UnsignedNodeAnnouncement_set_features(this_ptr: number, val: number): void {
23322         if(!isWasmInitialized) {
23323                 throw new Error("initializeWasm() must be awaited first!");
23324         }
23325         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_features(this_ptr, val);
23326         // debug statements here
23327 }
23328         // uint32_t UnsignedNodeAnnouncement_get_timestamp(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
23329 /* @internal */
23330 export function UnsignedNodeAnnouncement_get_timestamp(this_ptr: number): number {
23331         if(!isWasmInitialized) {
23332                 throw new Error("initializeWasm() must be awaited first!");
23333         }
23334         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_timestamp(this_ptr);
23335         return nativeResponseValue;
23336 }
23337         // void UnsignedNodeAnnouncement_set_timestamp(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, uint32_t val);
23338 /* @internal */
23339 export function UnsignedNodeAnnouncement_set_timestamp(this_ptr: number, val: number): void {
23340         if(!isWasmInitialized) {
23341                 throw new Error("initializeWasm() must be awaited first!");
23342         }
23343         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_timestamp(this_ptr, val);
23344         // debug statements here
23345 }
23346         // struct LDKPublicKey UnsignedNodeAnnouncement_get_node_id(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
23347 /* @internal */
23348 export function UnsignedNodeAnnouncement_get_node_id(this_ptr: number): number {
23349         if(!isWasmInitialized) {
23350                 throw new Error("initializeWasm() must be awaited first!");
23351         }
23352         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_node_id(this_ptr);
23353         return nativeResponseValue;
23354 }
23355         // void UnsignedNodeAnnouncement_set_node_id(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKPublicKey val);
23356 /* @internal */
23357 export function UnsignedNodeAnnouncement_set_node_id(this_ptr: number, val: number): void {
23358         if(!isWasmInitialized) {
23359                 throw new Error("initializeWasm() must be awaited first!");
23360         }
23361         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_node_id(this_ptr, val);
23362         // debug statements here
23363 }
23364         // const uint8_t (*UnsignedNodeAnnouncement_get_rgb(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr))[3];
23365 /* @internal */
23366 export function UnsignedNodeAnnouncement_get_rgb(this_ptr: number): number {
23367         if(!isWasmInitialized) {
23368                 throw new Error("initializeWasm() must be awaited first!");
23369         }
23370         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_rgb(this_ptr);
23371         return nativeResponseValue;
23372 }
23373         // void UnsignedNodeAnnouncement_set_rgb(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKThreeBytes val);
23374 /* @internal */
23375 export function UnsignedNodeAnnouncement_set_rgb(this_ptr: number, val: number): void {
23376         if(!isWasmInitialized) {
23377                 throw new Error("initializeWasm() must be awaited first!");
23378         }
23379         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_rgb(this_ptr, val);
23380         // debug statements here
23381 }
23382         // const uint8_t (*UnsignedNodeAnnouncement_get_alias(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr))[32];
23383 /* @internal */
23384 export function UnsignedNodeAnnouncement_get_alias(this_ptr: number): number {
23385         if(!isWasmInitialized) {
23386                 throw new Error("initializeWasm() must be awaited first!");
23387         }
23388         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_alias(this_ptr);
23389         return nativeResponseValue;
23390 }
23391         // void UnsignedNodeAnnouncement_set_alias(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
23392 /* @internal */
23393 export function UnsignedNodeAnnouncement_set_alias(this_ptr: number, val: number): void {
23394         if(!isWasmInitialized) {
23395                 throw new Error("initializeWasm() must be awaited first!");
23396         }
23397         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_alias(this_ptr, val);
23398         // debug statements here
23399 }
23400         // struct LDKCVec_NetAddressZ UnsignedNodeAnnouncement_get_addresses(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr);
23401 /* @internal */
23402 export function UnsignedNodeAnnouncement_get_addresses(this_ptr: number): number {
23403         if(!isWasmInitialized) {
23404                 throw new Error("initializeWasm() must be awaited first!");
23405         }
23406         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_get_addresses(this_ptr);
23407         return nativeResponseValue;
23408 }
23409         // void UnsignedNodeAnnouncement_set_addresses(struct LDKUnsignedNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKCVec_NetAddressZ val);
23410 /* @internal */
23411 export function UnsignedNodeAnnouncement_set_addresses(this_ptr: number, val: number): void {
23412         if(!isWasmInitialized) {
23413                 throw new Error("initializeWasm() must be awaited first!");
23414         }
23415         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_set_addresses(this_ptr, val);
23416         // debug statements here
23417 }
23418         // uintptr_t UnsignedNodeAnnouncement_clone_ptr(LDKUnsignedNodeAnnouncement *NONNULL_PTR arg);
23419 /* @internal */
23420 export function UnsignedNodeAnnouncement_clone_ptr(arg: number): number {
23421         if(!isWasmInitialized) {
23422                 throw new Error("initializeWasm() must be awaited first!");
23423         }
23424         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_clone_ptr(arg);
23425         return nativeResponseValue;
23426 }
23427         // struct LDKUnsignedNodeAnnouncement UnsignedNodeAnnouncement_clone(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR orig);
23428 /* @internal */
23429 export function UnsignedNodeAnnouncement_clone(orig: number): number {
23430         if(!isWasmInitialized) {
23431                 throw new Error("initializeWasm() must be awaited first!");
23432         }
23433         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_clone(orig);
23434         return nativeResponseValue;
23435 }
23436         // void NodeAnnouncement_free(struct LDKNodeAnnouncement this_obj);
23437 /* @internal */
23438 export function NodeAnnouncement_free(this_obj: number): void {
23439         if(!isWasmInitialized) {
23440                 throw new Error("initializeWasm() must be awaited first!");
23441         }
23442         const nativeResponseValue = wasm.TS_NodeAnnouncement_free(this_obj);
23443         // debug statements here
23444 }
23445         // struct LDKSignature NodeAnnouncement_get_signature(const struct LDKNodeAnnouncement *NONNULL_PTR this_ptr);
23446 /* @internal */
23447 export function NodeAnnouncement_get_signature(this_ptr: number): number {
23448         if(!isWasmInitialized) {
23449                 throw new Error("initializeWasm() must be awaited first!");
23450         }
23451         const nativeResponseValue = wasm.TS_NodeAnnouncement_get_signature(this_ptr);
23452         return nativeResponseValue;
23453 }
23454         // void NodeAnnouncement_set_signature(struct LDKNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKSignature val);
23455 /* @internal */
23456 export function NodeAnnouncement_set_signature(this_ptr: number, val: number): void {
23457         if(!isWasmInitialized) {
23458                 throw new Error("initializeWasm() must be awaited first!");
23459         }
23460         const nativeResponseValue = wasm.TS_NodeAnnouncement_set_signature(this_ptr, val);
23461         // debug statements here
23462 }
23463         // struct LDKUnsignedNodeAnnouncement NodeAnnouncement_get_contents(const struct LDKNodeAnnouncement *NONNULL_PTR this_ptr);
23464 /* @internal */
23465 export function NodeAnnouncement_get_contents(this_ptr: number): number {
23466         if(!isWasmInitialized) {
23467                 throw new Error("initializeWasm() must be awaited first!");
23468         }
23469         const nativeResponseValue = wasm.TS_NodeAnnouncement_get_contents(this_ptr);
23470         return nativeResponseValue;
23471 }
23472         // void NodeAnnouncement_set_contents(struct LDKNodeAnnouncement *NONNULL_PTR this_ptr, struct LDKUnsignedNodeAnnouncement val);
23473 /* @internal */
23474 export function NodeAnnouncement_set_contents(this_ptr: number, val: number): void {
23475         if(!isWasmInitialized) {
23476                 throw new Error("initializeWasm() must be awaited first!");
23477         }
23478         const nativeResponseValue = wasm.TS_NodeAnnouncement_set_contents(this_ptr, val);
23479         // debug statements here
23480 }
23481         // MUST_USE_RES struct LDKNodeAnnouncement NodeAnnouncement_new(struct LDKSignature signature_arg, struct LDKUnsignedNodeAnnouncement contents_arg);
23482 /* @internal */
23483 export function NodeAnnouncement_new(signature_arg: number, contents_arg: number): number {
23484         if(!isWasmInitialized) {
23485                 throw new Error("initializeWasm() must be awaited first!");
23486         }
23487         const nativeResponseValue = wasm.TS_NodeAnnouncement_new(signature_arg, contents_arg);
23488         return nativeResponseValue;
23489 }
23490         // uintptr_t NodeAnnouncement_clone_ptr(LDKNodeAnnouncement *NONNULL_PTR arg);
23491 /* @internal */
23492 export function NodeAnnouncement_clone_ptr(arg: number): number {
23493         if(!isWasmInitialized) {
23494                 throw new Error("initializeWasm() must be awaited first!");
23495         }
23496         const nativeResponseValue = wasm.TS_NodeAnnouncement_clone_ptr(arg);
23497         return nativeResponseValue;
23498 }
23499         // struct LDKNodeAnnouncement NodeAnnouncement_clone(const struct LDKNodeAnnouncement *NONNULL_PTR orig);
23500 /* @internal */
23501 export function NodeAnnouncement_clone(orig: number): number {
23502         if(!isWasmInitialized) {
23503                 throw new Error("initializeWasm() must be awaited first!");
23504         }
23505         const nativeResponseValue = wasm.TS_NodeAnnouncement_clone(orig);
23506         return nativeResponseValue;
23507 }
23508         // void UnsignedChannelAnnouncement_free(struct LDKUnsignedChannelAnnouncement this_obj);
23509 /* @internal */
23510 export function UnsignedChannelAnnouncement_free(this_obj: number): void {
23511         if(!isWasmInitialized) {
23512                 throw new Error("initializeWasm() must be awaited first!");
23513         }
23514         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_free(this_obj);
23515         // debug statements here
23516 }
23517         // struct LDKChannelFeatures UnsignedChannelAnnouncement_get_features(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23518 /* @internal */
23519 export function UnsignedChannelAnnouncement_get_features(this_ptr: number): number {
23520         if(!isWasmInitialized) {
23521                 throw new Error("initializeWasm() must be awaited first!");
23522         }
23523         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_features(this_ptr);
23524         return nativeResponseValue;
23525 }
23526         // void UnsignedChannelAnnouncement_set_features(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
23527 /* @internal */
23528 export function UnsignedChannelAnnouncement_set_features(this_ptr: number, val: number): void {
23529         if(!isWasmInitialized) {
23530                 throw new Error("initializeWasm() must be awaited first!");
23531         }
23532         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_features(this_ptr, val);
23533         // debug statements here
23534 }
23535         // const uint8_t (*UnsignedChannelAnnouncement_get_chain_hash(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr))[32];
23536 /* @internal */
23537 export function UnsignedChannelAnnouncement_get_chain_hash(this_ptr: number): number {
23538         if(!isWasmInitialized) {
23539                 throw new Error("initializeWasm() must be awaited first!");
23540         }
23541         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_chain_hash(this_ptr);
23542         return nativeResponseValue;
23543 }
23544         // void UnsignedChannelAnnouncement_set_chain_hash(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
23545 /* @internal */
23546 export function UnsignedChannelAnnouncement_set_chain_hash(this_ptr: number, val: number): void {
23547         if(!isWasmInitialized) {
23548                 throw new Error("initializeWasm() must be awaited first!");
23549         }
23550         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_chain_hash(this_ptr, val);
23551         // debug statements here
23552 }
23553         // uint64_t UnsignedChannelAnnouncement_get_short_channel_id(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23554 /* @internal */
23555 export function UnsignedChannelAnnouncement_get_short_channel_id(this_ptr: number): bigint {
23556         if(!isWasmInitialized) {
23557                 throw new Error("initializeWasm() must be awaited first!");
23558         }
23559         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_short_channel_id(this_ptr);
23560         return nativeResponseValue;
23561 }
23562         // void UnsignedChannelAnnouncement_set_short_channel_id(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, uint64_t val);
23563 /* @internal */
23564 export function UnsignedChannelAnnouncement_set_short_channel_id(this_ptr: number, val: bigint): void {
23565         if(!isWasmInitialized) {
23566                 throw new Error("initializeWasm() must be awaited first!");
23567         }
23568         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_short_channel_id(this_ptr, val);
23569         // debug statements here
23570 }
23571         // struct LDKPublicKey UnsignedChannelAnnouncement_get_node_id_1(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23572 /* @internal */
23573 export function UnsignedChannelAnnouncement_get_node_id_1(this_ptr: number): number {
23574         if(!isWasmInitialized) {
23575                 throw new Error("initializeWasm() must be awaited first!");
23576         }
23577         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_node_id_1(this_ptr);
23578         return nativeResponseValue;
23579 }
23580         // void UnsignedChannelAnnouncement_set_node_id_1(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKPublicKey val);
23581 /* @internal */
23582 export function UnsignedChannelAnnouncement_set_node_id_1(this_ptr: number, val: number): void {
23583         if(!isWasmInitialized) {
23584                 throw new Error("initializeWasm() must be awaited first!");
23585         }
23586         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_node_id_1(this_ptr, val);
23587         // debug statements here
23588 }
23589         // struct LDKPublicKey UnsignedChannelAnnouncement_get_node_id_2(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23590 /* @internal */
23591 export function UnsignedChannelAnnouncement_get_node_id_2(this_ptr: number): number {
23592         if(!isWasmInitialized) {
23593                 throw new Error("initializeWasm() must be awaited first!");
23594         }
23595         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_node_id_2(this_ptr);
23596         return nativeResponseValue;
23597 }
23598         // void UnsignedChannelAnnouncement_set_node_id_2(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKPublicKey val);
23599 /* @internal */
23600 export function UnsignedChannelAnnouncement_set_node_id_2(this_ptr: number, val: number): void {
23601         if(!isWasmInitialized) {
23602                 throw new Error("initializeWasm() must be awaited first!");
23603         }
23604         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_node_id_2(this_ptr, val);
23605         // debug statements here
23606 }
23607         // struct LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_1(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23608 /* @internal */
23609 export function UnsignedChannelAnnouncement_get_bitcoin_key_1(this_ptr: number): number {
23610         if(!isWasmInitialized) {
23611                 throw new Error("initializeWasm() must be awaited first!");
23612         }
23613         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_bitcoin_key_1(this_ptr);
23614         return nativeResponseValue;
23615 }
23616         // void UnsignedChannelAnnouncement_set_bitcoin_key_1(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKPublicKey val);
23617 /* @internal */
23618 export function UnsignedChannelAnnouncement_set_bitcoin_key_1(this_ptr: number, val: number): void {
23619         if(!isWasmInitialized) {
23620                 throw new Error("initializeWasm() must be awaited first!");
23621         }
23622         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_bitcoin_key_1(this_ptr, val);
23623         // debug statements here
23624 }
23625         // struct LDKPublicKey UnsignedChannelAnnouncement_get_bitcoin_key_2(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr);
23626 /* @internal */
23627 export function UnsignedChannelAnnouncement_get_bitcoin_key_2(this_ptr: number): number {
23628         if(!isWasmInitialized) {
23629                 throw new Error("initializeWasm() must be awaited first!");
23630         }
23631         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_get_bitcoin_key_2(this_ptr);
23632         return nativeResponseValue;
23633 }
23634         // void UnsignedChannelAnnouncement_set_bitcoin_key_2(struct LDKUnsignedChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKPublicKey val);
23635 /* @internal */
23636 export function UnsignedChannelAnnouncement_set_bitcoin_key_2(this_ptr: number, val: number): void {
23637         if(!isWasmInitialized) {
23638                 throw new Error("initializeWasm() must be awaited first!");
23639         }
23640         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_set_bitcoin_key_2(this_ptr, val);
23641         // debug statements here
23642 }
23643         // uintptr_t UnsignedChannelAnnouncement_clone_ptr(LDKUnsignedChannelAnnouncement *NONNULL_PTR arg);
23644 /* @internal */
23645 export function UnsignedChannelAnnouncement_clone_ptr(arg: number): number {
23646         if(!isWasmInitialized) {
23647                 throw new Error("initializeWasm() must be awaited first!");
23648         }
23649         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_clone_ptr(arg);
23650         return nativeResponseValue;
23651 }
23652         // struct LDKUnsignedChannelAnnouncement UnsignedChannelAnnouncement_clone(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR orig);
23653 /* @internal */
23654 export function UnsignedChannelAnnouncement_clone(orig: number): number {
23655         if(!isWasmInitialized) {
23656                 throw new Error("initializeWasm() must be awaited first!");
23657         }
23658         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_clone(orig);
23659         return nativeResponseValue;
23660 }
23661         // void ChannelAnnouncement_free(struct LDKChannelAnnouncement this_obj);
23662 /* @internal */
23663 export function ChannelAnnouncement_free(this_obj: number): void {
23664         if(!isWasmInitialized) {
23665                 throw new Error("initializeWasm() must be awaited first!");
23666         }
23667         const nativeResponseValue = wasm.TS_ChannelAnnouncement_free(this_obj);
23668         // debug statements here
23669 }
23670         // struct LDKSignature ChannelAnnouncement_get_node_signature_1(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
23671 /* @internal */
23672 export function ChannelAnnouncement_get_node_signature_1(this_ptr: number): number {
23673         if(!isWasmInitialized) {
23674                 throw new Error("initializeWasm() must be awaited first!");
23675         }
23676         const nativeResponseValue = wasm.TS_ChannelAnnouncement_get_node_signature_1(this_ptr);
23677         return nativeResponseValue;
23678 }
23679         // void ChannelAnnouncement_set_node_signature_1(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKSignature val);
23680 /* @internal */
23681 export function ChannelAnnouncement_set_node_signature_1(this_ptr: number, val: number): void {
23682         if(!isWasmInitialized) {
23683                 throw new Error("initializeWasm() must be awaited first!");
23684         }
23685         const nativeResponseValue = wasm.TS_ChannelAnnouncement_set_node_signature_1(this_ptr, val);
23686         // debug statements here
23687 }
23688         // struct LDKSignature ChannelAnnouncement_get_node_signature_2(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
23689 /* @internal */
23690 export function ChannelAnnouncement_get_node_signature_2(this_ptr: number): number {
23691         if(!isWasmInitialized) {
23692                 throw new Error("initializeWasm() must be awaited first!");
23693         }
23694         const nativeResponseValue = wasm.TS_ChannelAnnouncement_get_node_signature_2(this_ptr);
23695         return nativeResponseValue;
23696 }
23697         // void ChannelAnnouncement_set_node_signature_2(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKSignature val);
23698 /* @internal */
23699 export function ChannelAnnouncement_set_node_signature_2(this_ptr: number, val: number): void {
23700         if(!isWasmInitialized) {
23701                 throw new Error("initializeWasm() must be awaited first!");
23702         }
23703         const nativeResponseValue = wasm.TS_ChannelAnnouncement_set_node_signature_2(this_ptr, val);
23704         // debug statements here
23705 }
23706         // struct LDKSignature ChannelAnnouncement_get_bitcoin_signature_1(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
23707 /* @internal */
23708 export function ChannelAnnouncement_get_bitcoin_signature_1(this_ptr: number): number {
23709         if(!isWasmInitialized) {
23710                 throw new Error("initializeWasm() must be awaited first!");
23711         }
23712         const nativeResponseValue = wasm.TS_ChannelAnnouncement_get_bitcoin_signature_1(this_ptr);
23713         return nativeResponseValue;
23714 }
23715         // void ChannelAnnouncement_set_bitcoin_signature_1(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKSignature val);
23716 /* @internal */
23717 export function ChannelAnnouncement_set_bitcoin_signature_1(this_ptr: number, val: number): void {
23718         if(!isWasmInitialized) {
23719                 throw new Error("initializeWasm() must be awaited first!");
23720         }
23721         const nativeResponseValue = wasm.TS_ChannelAnnouncement_set_bitcoin_signature_1(this_ptr, val);
23722         // debug statements here
23723 }
23724         // struct LDKSignature ChannelAnnouncement_get_bitcoin_signature_2(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
23725 /* @internal */
23726 export function ChannelAnnouncement_get_bitcoin_signature_2(this_ptr: number): number {
23727         if(!isWasmInitialized) {
23728                 throw new Error("initializeWasm() must be awaited first!");
23729         }
23730         const nativeResponseValue = wasm.TS_ChannelAnnouncement_get_bitcoin_signature_2(this_ptr);
23731         return nativeResponseValue;
23732 }
23733         // void ChannelAnnouncement_set_bitcoin_signature_2(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKSignature val);
23734 /* @internal */
23735 export function ChannelAnnouncement_set_bitcoin_signature_2(this_ptr: number, val: number): void {
23736         if(!isWasmInitialized) {
23737                 throw new Error("initializeWasm() must be awaited first!");
23738         }
23739         const nativeResponseValue = wasm.TS_ChannelAnnouncement_set_bitcoin_signature_2(this_ptr, val);
23740         // debug statements here
23741 }
23742         // struct LDKUnsignedChannelAnnouncement ChannelAnnouncement_get_contents(const struct LDKChannelAnnouncement *NONNULL_PTR this_ptr);
23743 /* @internal */
23744 export function ChannelAnnouncement_get_contents(this_ptr: number): number {
23745         if(!isWasmInitialized) {
23746                 throw new Error("initializeWasm() must be awaited first!");
23747         }
23748         const nativeResponseValue = wasm.TS_ChannelAnnouncement_get_contents(this_ptr);
23749         return nativeResponseValue;
23750 }
23751         // void ChannelAnnouncement_set_contents(struct LDKChannelAnnouncement *NONNULL_PTR this_ptr, struct LDKUnsignedChannelAnnouncement val);
23752 /* @internal */
23753 export function ChannelAnnouncement_set_contents(this_ptr: number, val: number): void {
23754         if(!isWasmInitialized) {
23755                 throw new Error("initializeWasm() must be awaited first!");
23756         }
23757         const nativeResponseValue = wasm.TS_ChannelAnnouncement_set_contents(this_ptr, val);
23758         // debug statements here
23759 }
23760         // MUST_USE_RES struct LDKChannelAnnouncement ChannelAnnouncement_new(struct LDKSignature node_signature_1_arg, struct LDKSignature node_signature_2_arg, struct LDKSignature bitcoin_signature_1_arg, struct LDKSignature bitcoin_signature_2_arg, struct LDKUnsignedChannelAnnouncement contents_arg);
23761 /* @internal */
23762 export function ChannelAnnouncement_new(node_signature_1_arg: number, node_signature_2_arg: number, bitcoin_signature_1_arg: number, bitcoin_signature_2_arg: number, contents_arg: number): number {
23763         if(!isWasmInitialized) {
23764                 throw new Error("initializeWasm() must be awaited first!");
23765         }
23766         const nativeResponseValue = wasm.TS_ChannelAnnouncement_new(node_signature_1_arg, node_signature_2_arg, bitcoin_signature_1_arg, bitcoin_signature_2_arg, contents_arg);
23767         return nativeResponseValue;
23768 }
23769         // uintptr_t ChannelAnnouncement_clone_ptr(LDKChannelAnnouncement *NONNULL_PTR arg);
23770 /* @internal */
23771 export function ChannelAnnouncement_clone_ptr(arg: number): number {
23772         if(!isWasmInitialized) {
23773                 throw new Error("initializeWasm() must be awaited first!");
23774         }
23775         const nativeResponseValue = wasm.TS_ChannelAnnouncement_clone_ptr(arg);
23776         return nativeResponseValue;
23777 }
23778         // struct LDKChannelAnnouncement ChannelAnnouncement_clone(const struct LDKChannelAnnouncement *NONNULL_PTR orig);
23779 /* @internal */
23780 export function ChannelAnnouncement_clone(orig: number): number {
23781         if(!isWasmInitialized) {
23782                 throw new Error("initializeWasm() must be awaited first!");
23783         }
23784         const nativeResponseValue = wasm.TS_ChannelAnnouncement_clone(orig);
23785         return nativeResponseValue;
23786 }
23787         // void UnsignedChannelUpdate_free(struct LDKUnsignedChannelUpdate this_obj);
23788 /* @internal */
23789 export function UnsignedChannelUpdate_free(this_obj: number): void {
23790         if(!isWasmInitialized) {
23791                 throw new Error("initializeWasm() must be awaited first!");
23792         }
23793         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_free(this_obj);
23794         // debug statements here
23795 }
23796         // const uint8_t (*UnsignedChannelUpdate_get_chain_hash(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr))[32];
23797 /* @internal */
23798 export function UnsignedChannelUpdate_get_chain_hash(this_ptr: number): number {
23799         if(!isWasmInitialized) {
23800                 throw new Error("initializeWasm() must be awaited first!");
23801         }
23802         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_chain_hash(this_ptr);
23803         return nativeResponseValue;
23804 }
23805         // void UnsignedChannelUpdate_set_chain_hash(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
23806 /* @internal */
23807 export function UnsignedChannelUpdate_set_chain_hash(this_ptr: number, val: number): void {
23808         if(!isWasmInitialized) {
23809                 throw new Error("initializeWasm() must be awaited first!");
23810         }
23811         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_chain_hash(this_ptr, val);
23812         // debug statements here
23813 }
23814         // uint64_t UnsignedChannelUpdate_get_short_channel_id(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23815 /* @internal */
23816 export function UnsignedChannelUpdate_get_short_channel_id(this_ptr: number): bigint {
23817         if(!isWasmInitialized) {
23818                 throw new Error("initializeWasm() must be awaited first!");
23819         }
23820         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_short_channel_id(this_ptr);
23821         return nativeResponseValue;
23822 }
23823         // void UnsignedChannelUpdate_set_short_channel_id(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
23824 /* @internal */
23825 export function UnsignedChannelUpdate_set_short_channel_id(this_ptr: number, val: bigint): void {
23826         if(!isWasmInitialized) {
23827                 throw new Error("initializeWasm() must be awaited first!");
23828         }
23829         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_short_channel_id(this_ptr, val);
23830         // debug statements here
23831 }
23832         // uint32_t UnsignedChannelUpdate_get_timestamp(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23833 /* @internal */
23834 export function UnsignedChannelUpdate_get_timestamp(this_ptr: number): number {
23835         if(!isWasmInitialized) {
23836                 throw new Error("initializeWasm() must be awaited first!");
23837         }
23838         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_timestamp(this_ptr);
23839         return nativeResponseValue;
23840 }
23841         // void UnsignedChannelUpdate_set_timestamp(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
23842 /* @internal */
23843 export function UnsignedChannelUpdate_set_timestamp(this_ptr: number, val: number): void {
23844         if(!isWasmInitialized) {
23845                 throw new Error("initializeWasm() must be awaited first!");
23846         }
23847         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_timestamp(this_ptr, val);
23848         // debug statements here
23849 }
23850         // uint8_t UnsignedChannelUpdate_get_flags(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23851 /* @internal */
23852 export function UnsignedChannelUpdate_get_flags(this_ptr: number): number {
23853         if(!isWasmInitialized) {
23854                 throw new Error("initializeWasm() must be awaited first!");
23855         }
23856         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_flags(this_ptr);
23857         return nativeResponseValue;
23858 }
23859         // void UnsignedChannelUpdate_set_flags(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint8_t val);
23860 /* @internal */
23861 export function UnsignedChannelUpdate_set_flags(this_ptr: number, val: number): void {
23862         if(!isWasmInitialized) {
23863                 throw new Error("initializeWasm() must be awaited first!");
23864         }
23865         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_flags(this_ptr, val);
23866         // debug statements here
23867 }
23868         // uint16_t UnsignedChannelUpdate_get_cltv_expiry_delta(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23869 /* @internal */
23870 export function UnsignedChannelUpdate_get_cltv_expiry_delta(this_ptr: number): number {
23871         if(!isWasmInitialized) {
23872                 throw new Error("initializeWasm() must be awaited first!");
23873         }
23874         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_cltv_expiry_delta(this_ptr);
23875         return nativeResponseValue;
23876 }
23877         // void UnsignedChannelUpdate_set_cltv_expiry_delta(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint16_t val);
23878 /* @internal */
23879 export function UnsignedChannelUpdate_set_cltv_expiry_delta(this_ptr: number, val: number): void {
23880         if(!isWasmInitialized) {
23881                 throw new Error("initializeWasm() must be awaited first!");
23882         }
23883         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_cltv_expiry_delta(this_ptr, val);
23884         // debug statements here
23885 }
23886         // uint64_t UnsignedChannelUpdate_get_htlc_minimum_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23887 /* @internal */
23888 export function UnsignedChannelUpdate_get_htlc_minimum_msat(this_ptr: number): bigint {
23889         if(!isWasmInitialized) {
23890                 throw new Error("initializeWasm() must be awaited first!");
23891         }
23892         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_htlc_minimum_msat(this_ptr);
23893         return nativeResponseValue;
23894 }
23895         // void UnsignedChannelUpdate_set_htlc_minimum_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
23896 /* @internal */
23897 export function UnsignedChannelUpdate_set_htlc_minimum_msat(this_ptr: number, val: bigint): void {
23898         if(!isWasmInitialized) {
23899                 throw new Error("initializeWasm() must be awaited first!");
23900         }
23901         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_htlc_minimum_msat(this_ptr, val);
23902         // debug statements here
23903 }
23904         // uint64_t UnsignedChannelUpdate_get_htlc_maximum_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23905 /* @internal */
23906 export function UnsignedChannelUpdate_get_htlc_maximum_msat(this_ptr: number): bigint {
23907         if(!isWasmInitialized) {
23908                 throw new Error("initializeWasm() must be awaited first!");
23909         }
23910         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_htlc_maximum_msat(this_ptr);
23911         return nativeResponseValue;
23912 }
23913         // void UnsignedChannelUpdate_set_htlc_maximum_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint64_t val);
23914 /* @internal */
23915 export function UnsignedChannelUpdate_set_htlc_maximum_msat(this_ptr: number, val: bigint): void {
23916         if(!isWasmInitialized) {
23917                 throw new Error("initializeWasm() must be awaited first!");
23918         }
23919         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_htlc_maximum_msat(this_ptr, val);
23920         // debug statements here
23921 }
23922         // uint32_t UnsignedChannelUpdate_get_fee_base_msat(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23923 /* @internal */
23924 export function UnsignedChannelUpdate_get_fee_base_msat(this_ptr: number): number {
23925         if(!isWasmInitialized) {
23926                 throw new Error("initializeWasm() must be awaited first!");
23927         }
23928         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_fee_base_msat(this_ptr);
23929         return nativeResponseValue;
23930 }
23931         // void UnsignedChannelUpdate_set_fee_base_msat(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
23932 /* @internal */
23933 export function UnsignedChannelUpdate_set_fee_base_msat(this_ptr: number, val: number): void {
23934         if(!isWasmInitialized) {
23935                 throw new Error("initializeWasm() must be awaited first!");
23936         }
23937         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_fee_base_msat(this_ptr, val);
23938         // debug statements here
23939 }
23940         // uint32_t UnsignedChannelUpdate_get_fee_proportional_millionths(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23941 /* @internal */
23942 export function UnsignedChannelUpdate_get_fee_proportional_millionths(this_ptr: number): number {
23943         if(!isWasmInitialized) {
23944                 throw new Error("initializeWasm() must be awaited first!");
23945         }
23946         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_fee_proportional_millionths(this_ptr);
23947         return nativeResponseValue;
23948 }
23949         // void UnsignedChannelUpdate_set_fee_proportional_millionths(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, uint32_t val);
23950 /* @internal */
23951 export function UnsignedChannelUpdate_set_fee_proportional_millionths(this_ptr: number, val: number): void {
23952         if(!isWasmInitialized) {
23953                 throw new Error("initializeWasm() must be awaited first!");
23954         }
23955         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_fee_proportional_millionths(this_ptr, val);
23956         // debug statements here
23957 }
23958         // struct LDKCVec_u8Z UnsignedChannelUpdate_get_excess_data(const struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr);
23959 /* @internal */
23960 export function UnsignedChannelUpdate_get_excess_data(this_ptr: number): number {
23961         if(!isWasmInitialized) {
23962                 throw new Error("initializeWasm() must be awaited first!");
23963         }
23964         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_get_excess_data(this_ptr);
23965         return nativeResponseValue;
23966 }
23967         // void UnsignedChannelUpdate_set_excess_data(struct LDKUnsignedChannelUpdate *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
23968 /* @internal */
23969 export function UnsignedChannelUpdate_set_excess_data(this_ptr: number, val: number): void {
23970         if(!isWasmInitialized) {
23971                 throw new Error("initializeWasm() must be awaited first!");
23972         }
23973         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_set_excess_data(this_ptr, val);
23974         // debug statements here
23975 }
23976         // MUST_USE_RES struct LDKUnsignedChannelUpdate UnsignedChannelUpdate_new(struct LDKThirtyTwoBytes chain_hash_arg, uint64_t short_channel_id_arg, uint32_t timestamp_arg, uint8_t flags_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg, uint64_t htlc_maximum_msat_arg, uint32_t fee_base_msat_arg, uint32_t fee_proportional_millionths_arg, struct LDKCVec_u8Z excess_data_arg);
23977 /* @internal */
23978 export function UnsignedChannelUpdate_new(chain_hash_arg: number, short_channel_id_arg: bigint, timestamp_arg: number, flags_arg: number, cltv_expiry_delta_arg: number, htlc_minimum_msat_arg: bigint, htlc_maximum_msat_arg: bigint, fee_base_msat_arg: number, fee_proportional_millionths_arg: number, excess_data_arg: number): number {
23979         if(!isWasmInitialized) {
23980                 throw new Error("initializeWasm() must be awaited first!");
23981         }
23982         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_new(chain_hash_arg, short_channel_id_arg, timestamp_arg, flags_arg, cltv_expiry_delta_arg, htlc_minimum_msat_arg, htlc_maximum_msat_arg, fee_base_msat_arg, fee_proportional_millionths_arg, excess_data_arg);
23983         return nativeResponseValue;
23984 }
23985         // uintptr_t UnsignedChannelUpdate_clone_ptr(LDKUnsignedChannelUpdate *NONNULL_PTR arg);
23986 /* @internal */
23987 export function UnsignedChannelUpdate_clone_ptr(arg: number): number {
23988         if(!isWasmInitialized) {
23989                 throw new Error("initializeWasm() must be awaited first!");
23990         }
23991         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_clone_ptr(arg);
23992         return nativeResponseValue;
23993 }
23994         // struct LDKUnsignedChannelUpdate UnsignedChannelUpdate_clone(const struct LDKUnsignedChannelUpdate *NONNULL_PTR orig);
23995 /* @internal */
23996 export function UnsignedChannelUpdate_clone(orig: number): number {
23997         if(!isWasmInitialized) {
23998                 throw new Error("initializeWasm() must be awaited first!");
23999         }
24000         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_clone(orig);
24001         return nativeResponseValue;
24002 }
24003         // void ChannelUpdate_free(struct LDKChannelUpdate this_obj);
24004 /* @internal */
24005 export function ChannelUpdate_free(this_obj: number): void {
24006         if(!isWasmInitialized) {
24007                 throw new Error("initializeWasm() must be awaited first!");
24008         }
24009         const nativeResponseValue = wasm.TS_ChannelUpdate_free(this_obj);
24010         // debug statements here
24011 }
24012         // struct LDKSignature ChannelUpdate_get_signature(const struct LDKChannelUpdate *NONNULL_PTR this_ptr);
24013 /* @internal */
24014 export function ChannelUpdate_get_signature(this_ptr: number): number {
24015         if(!isWasmInitialized) {
24016                 throw new Error("initializeWasm() must be awaited first!");
24017         }
24018         const nativeResponseValue = wasm.TS_ChannelUpdate_get_signature(this_ptr);
24019         return nativeResponseValue;
24020 }
24021         // void ChannelUpdate_set_signature(struct LDKChannelUpdate *NONNULL_PTR this_ptr, struct LDKSignature val);
24022 /* @internal */
24023 export function ChannelUpdate_set_signature(this_ptr: number, val: number): void {
24024         if(!isWasmInitialized) {
24025                 throw new Error("initializeWasm() must be awaited first!");
24026         }
24027         const nativeResponseValue = wasm.TS_ChannelUpdate_set_signature(this_ptr, val);
24028         // debug statements here
24029 }
24030         // struct LDKUnsignedChannelUpdate ChannelUpdate_get_contents(const struct LDKChannelUpdate *NONNULL_PTR this_ptr);
24031 /* @internal */
24032 export function ChannelUpdate_get_contents(this_ptr: number): number {
24033         if(!isWasmInitialized) {
24034                 throw new Error("initializeWasm() must be awaited first!");
24035         }
24036         const nativeResponseValue = wasm.TS_ChannelUpdate_get_contents(this_ptr);
24037         return nativeResponseValue;
24038 }
24039         // void ChannelUpdate_set_contents(struct LDKChannelUpdate *NONNULL_PTR this_ptr, struct LDKUnsignedChannelUpdate val);
24040 /* @internal */
24041 export function ChannelUpdate_set_contents(this_ptr: number, val: number): void {
24042         if(!isWasmInitialized) {
24043                 throw new Error("initializeWasm() must be awaited first!");
24044         }
24045         const nativeResponseValue = wasm.TS_ChannelUpdate_set_contents(this_ptr, val);
24046         // debug statements here
24047 }
24048         // MUST_USE_RES struct LDKChannelUpdate ChannelUpdate_new(struct LDKSignature signature_arg, struct LDKUnsignedChannelUpdate contents_arg);
24049 /* @internal */
24050 export function ChannelUpdate_new(signature_arg: number, contents_arg: number): number {
24051         if(!isWasmInitialized) {
24052                 throw new Error("initializeWasm() must be awaited first!");
24053         }
24054         const nativeResponseValue = wasm.TS_ChannelUpdate_new(signature_arg, contents_arg);
24055         return nativeResponseValue;
24056 }
24057         // uintptr_t ChannelUpdate_clone_ptr(LDKChannelUpdate *NONNULL_PTR arg);
24058 /* @internal */
24059 export function ChannelUpdate_clone_ptr(arg: number): number {
24060         if(!isWasmInitialized) {
24061                 throw new Error("initializeWasm() must be awaited first!");
24062         }
24063         const nativeResponseValue = wasm.TS_ChannelUpdate_clone_ptr(arg);
24064         return nativeResponseValue;
24065 }
24066         // struct LDKChannelUpdate ChannelUpdate_clone(const struct LDKChannelUpdate *NONNULL_PTR orig);
24067 /* @internal */
24068 export function ChannelUpdate_clone(orig: number): number {
24069         if(!isWasmInitialized) {
24070                 throw new Error("initializeWasm() must be awaited first!");
24071         }
24072         const nativeResponseValue = wasm.TS_ChannelUpdate_clone(orig);
24073         return nativeResponseValue;
24074 }
24075         // void QueryChannelRange_free(struct LDKQueryChannelRange this_obj);
24076 /* @internal */
24077 export function QueryChannelRange_free(this_obj: number): void {
24078         if(!isWasmInitialized) {
24079                 throw new Error("initializeWasm() must be awaited first!");
24080         }
24081         const nativeResponseValue = wasm.TS_QueryChannelRange_free(this_obj);
24082         // debug statements here
24083 }
24084         // const uint8_t (*QueryChannelRange_get_chain_hash(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr))[32];
24085 /* @internal */
24086 export function QueryChannelRange_get_chain_hash(this_ptr: number): number {
24087         if(!isWasmInitialized) {
24088                 throw new Error("initializeWasm() must be awaited first!");
24089         }
24090         const nativeResponseValue = wasm.TS_QueryChannelRange_get_chain_hash(this_ptr);
24091         return nativeResponseValue;
24092 }
24093         // void QueryChannelRange_set_chain_hash(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
24094 /* @internal */
24095 export function QueryChannelRange_set_chain_hash(this_ptr: number, val: number): void {
24096         if(!isWasmInitialized) {
24097                 throw new Error("initializeWasm() must be awaited first!");
24098         }
24099         const nativeResponseValue = wasm.TS_QueryChannelRange_set_chain_hash(this_ptr, val);
24100         // debug statements here
24101 }
24102         // uint32_t QueryChannelRange_get_first_blocknum(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr);
24103 /* @internal */
24104 export function QueryChannelRange_get_first_blocknum(this_ptr: number): number {
24105         if(!isWasmInitialized) {
24106                 throw new Error("initializeWasm() must be awaited first!");
24107         }
24108         const nativeResponseValue = wasm.TS_QueryChannelRange_get_first_blocknum(this_ptr);
24109         return nativeResponseValue;
24110 }
24111         // void QueryChannelRange_set_first_blocknum(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, uint32_t val);
24112 /* @internal */
24113 export function QueryChannelRange_set_first_blocknum(this_ptr: number, val: number): void {
24114         if(!isWasmInitialized) {
24115                 throw new Error("initializeWasm() must be awaited first!");
24116         }
24117         const nativeResponseValue = wasm.TS_QueryChannelRange_set_first_blocknum(this_ptr, val);
24118         // debug statements here
24119 }
24120         // uint32_t QueryChannelRange_get_number_of_blocks(const struct LDKQueryChannelRange *NONNULL_PTR this_ptr);
24121 /* @internal */
24122 export function QueryChannelRange_get_number_of_blocks(this_ptr: number): number {
24123         if(!isWasmInitialized) {
24124                 throw new Error("initializeWasm() must be awaited first!");
24125         }
24126         const nativeResponseValue = wasm.TS_QueryChannelRange_get_number_of_blocks(this_ptr);
24127         return nativeResponseValue;
24128 }
24129         // void QueryChannelRange_set_number_of_blocks(struct LDKQueryChannelRange *NONNULL_PTR this_ptr, uint32_t val);
24130 /* @internal */
24131 export function QueryChannelRange_set_number_of_blocks(this_ptr: number, val: number): void {
24132         if(!isWasmInitialized) {
24133                 throw new Error("initializeWasm() must be awaited first!");
24134         }
24135         const nativeResponseValue = wasm.TS_QueryChannelRange_set_number_of_blocks(this_ptr, val);
24136         // debug statements here
24137 }
24138         // MUST_USE_RES struct LDKQueryChannelRange QueryChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg);
24139 /* @internal */
24140 export function QueryChannelRange_new(chain_hash_arg: number, first_blocknum_arg: number, number_of_blocks_arg: number): number {
24141         if(!isWasmInitialized) {
24142                 throw new Error("initializeWasm() must be awaited first!");
24143         }
24144         const nativeResponseValue = wasm.TS_QueryChannelRange_new(chain_hash_arg, first_blocknum_arg, number_of_blocks_arg);
24145         return nativeResponseValue;
24146 }
24147         // uintptr_t QueryChannelRange_clone_ptr(LDKQueryChannelRange *NONNULL_PTR arg);
24148 /* @internal */
24149 export function QueryChannelRange_clone_ptr(arg: number): number {
24150         if(!isWasmInitialized) {
24151                 throw new Error("initializeWasm() must be awaited first!");
24152         }
24153         const nativeResponseValue = wasm.TS_QueryChannelRange_clone_ptr(arg);
24154         return nativeResponseValue;
24155 }
24156         // struct LDKQueryChannelRange QueryChannelRange_clone(const struct LDKQueryChannelRange *NONNULL_PTR orig);
24157 /* @internal */
24158 export function QueryChannelRange_clone(orig: number): number {
24159         if(!isWasmInitialized) {
24160                 throw new Error("initializeWasm() must be awaited first!");
24161         }
24162         const nativeResponseValue = wasm.TS_QueryChannelRange_clone(orig);
24163         return nativeResponseValue;
24164 }
24165         // void ReplyChannelRange_free(struct LDKReplyChannelRange this_obj);
24166 /* @internal */
24167 export function ReplyChannelRange_free(this_obj: number): void {
24168         if(!isWasmInitialized) {
24169                 throw new Error("initializeWasm() must be awaited first!");
24170         }
24171         const nativeResponseValue = wasm.TS_ReplyChannelRange_free(this_obj);
24172         // debug statements here
24173 }
24174         // const uint8_t (*ReplyChannelRange_get_chain_hash(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr))[32];
24175 /* @internal */
24176 export function ReplyChannelRange_get_chain_hash(this_ptr: number): number {
24177         if(!isWasmInitialized) {
24178                 throw new Error("initializeWasm() must be awaited first!");
24179         }
24180         const nativeResponseValue = wasm.TS_ReplyChannelRange_get_chain_hash(this_ptr);
24181         return nativeResponseValue;
24182 }
24183         // void ReplyChannelRange_set_chain_hash(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
24184 /* @internal */
24185 export function ReplyChannelRange_set_chain_hash(this_ptr: number, val: number): void {
24186         if(!isWasmInitialized) {
24187                 throw new Error("initializeWasm() must be awaited first!");
24188         }
24189         const nativeResponseValue = wasm.TS_ReplyChannelRange_set_chain_hash(this_ptr, val);
24190         // debug statements here
24191 }
24192         // uint32_t ReplyChannelRange_get_first_blocknum(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
24193 /* @internal */
24194 export function ReplyChannelRange_get_first_blocknum(this_ptr: number): number {
24195         if(!isWasmInitialized) {
24196                 throw new Error("initializeWasm() must be awaited first!");
24197         }
24198         const nativeResponseValue = wasm.TS_ReplyChannelRange_get_first_blocknum(this_ptr);
24199         return nativeResponseValue;
24200 }
24201         // void ReplyChannelRange_set_first_blocknum(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, uint32_t val);
24202 /* @internal */
24203 export function ReplyChannelRange_set_first_blocknum(this_ptr: number, val: number): void {
24204         if(!isWasmInitialized) {
24205                 throw new Error("initializeWasm() must be awaited first!");
24206         }
24207         const nativeResponseValue = wasm.TS_ReplyChannelRange_set_first_blocknum(this_ptr, val);
24208         // debug statements here
24209 }
24210         // uint32_t ReplyChannelRange_get_number_of_blocks(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
24211 /* @internal */
24212 export function ReplyChannelRange_get_number_of_blocks(this_ptr: number): number {
24213         if(!isWasmInitialized) {
24214                 throw new Error("initializeWasm() must be awaited first!");
24215         }
24216         const nativeResponseValue = wasm.TS_ReplyChannelRange_get_number_of_blocks(this_ptr);
24217         return nativeResponseValue;
24218 }
24219         // void ReplyChannelRange_set_number_of_blocks(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, uint32_t val);
24220 /* @internal */
24221 export function ReplyChannelRange_set_number_of_blocks(this_ptr: number, val: number): void {
24222         if(!isWasmInitialized) {
24223                 throw new Error("initializeWasm() must be awaited first!");
24224         }
24225         const nativeResponseValue = wasm.TS_ReplyChannelRange_set_number_of_blocks(this_ptr, val);
24226         // debug statements here
24227 }
24228         // bool ReplyChannelRange_get_sync_complete(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
24229 /* @internal */
24230 export function ReplyChannelRange_get_sync_complete(this_ptr: number): boolean {
24231         if(!isWasmInitialized) {
24232                 throw new Error("initializeWasm() must be awaited first!");
24233         }
24234         const nativeResponseValue = wasm.TS_ReplyChannelRange_get_sync_complete(this_ptr);
24235         return nativeResponseValue;
24236 }
24237         // void ReplyChannelRange_set_sync_complete(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, bool val);
24238 /* @internal */
24239 export function ReplyChannelRange_set_sync_complete(this_ptr: number, val: boolean): void {
24240         if(!isWasmInitialized) {
24241                 throw new Error("initializeWasm() must be awaited first!");
24242         }
24243         const nativeResponseValue = wasm.TS_ReplyChannelRange_set_sync_complete(this_ptr, val);
24244         // debug statements here
24245 }
24246         // struct LDKCVec_u64Z ReplyChannelRange_get_short_channel_ids(const struct LDKReplyChannelRange *NONNULL_PTR this_ptr);
24247 /* @internal */
24248 export function ReplyChannelRange_get_short_channel_ids(this_ptr: number): number {
24249         if(!isWasmInitialized) {
24250                 throw new Error("initializeWasm() must be awaited first!");
24251         }
24252         const nativeResponseValue = wasm.TS_ReplyChannelRange_get_short_channel_ids(this_ptr);
24253         return nativeResponseValue;
24254 }
24255         // void ReplyChannelRange_set_short_channel_ids(struct LDKReplyChannelRange *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
24256 /* @internal */
24257 export function ReplyChannelRange_set_short_channel_ids(this_ptr: number, val: number): void {
24258         if(!isWasmInitialized) {
24259                 throw new Error("initializeWasm() must be awaited first!");
24260         }
24261         const nativeResponseValue = wasm.TS_ReplyChannelRange_set_short_channel_ids(this_ptr, val);
24262         // debug statements here
24263 }
24264         // MUST_USE_RES struct LDKReplyChannelRange ReplyChannelRange_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_blocknum_arg, uint32_t number_of_blocks_arg, bool sync_complete_arg, struct LDKCVec_u64Z short_channel_ids_arg);
24265 /* @internal */
24266 export function ReplyChannelRange_new(chain_hash_arg: number, first_blocknum_arg: number, number_of_blocks_arg: number, sync_complete_arg: boolean, short_channel_ids_arg: number): number {
24267         if(!isWasmInitialized) {
24268                 throw new Error("initializeWasm() must be awaited first!");
24269         }
24270         const nativeResponseValue = wasm.TS_ReplyChannelRange_new(chain_hash_arg, first_blocknum_arg, number_of_blocks_arg, sync_complete_arg, short_channel_ids_arg);
24271         return nativeResponseValue;
24272 }
24273         // uintptr_t ReplyChannelRange_clone_ptr(LDKReplyChannelRange *NONNULL_PTR arg);
24274 /* @internal */
24275 export function ReplyChannelRange_clone_ptr(arg: number): number {
24276         if(!isWasmInitialized) {
24277                 throw new Error("initializeWasm() must be awaited first!");
24278         }
24279         const nativeResponseValue = wasm.TS_ReplyChannelRange_clone_ptr(arg);
24280         return nativeResponseValue;
24281 }
24282         // struct LDKReplyChannelRange ReplyChannelRange_clone(const struct LDKReplyChannelRange *NONNULL_PTR orig);
24283 /* @internal */
24284 export function ReplyChannelRange_clone(orig: number): number {
24285         if(!isWasmInitialized) {
24286                 throw new Error("initializeWasm() must be awaited first!");
24287         }
24288         const nativeResponseValue = wasm.TS_ReplyChannelRange_clone(orig);
24289         return nativeResponseValue;
24290 }
24291         // void QueryShortChannelIds_free(struct LDKQueryShortChannelIds this_obj);
24292 /* @internal */
24293 export function QueryShortChannelIds_free(this_obj: number): void {
24294         if(!isWasmInitialized) {
24295                 throw new Error("initializeWasm() must be awaited first!");
24296         }
24297         const nativeResponseValue = wasm.TS_QueryShortChannelIds_free(this_obj);
24298         // debug statements here
24299 }
24300         // const uint8_t (*QueryShortChannelIds_get_chain_hash(const struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr))[32];
24301 /* @internal */
24302 export function QueryShortChannelIds_get_chain_hash(this_ptr: number): number {
24303         if(!isWasmInitialized) {
24304                 throw new Error("initializeWasm() must be awaited first!");
24305         }
24306         const nativeResponseValue = wasm.TS_QueryShortChannelIds_get_chain_hash(this_ptr);
24307         return nativeResponseValue;
24308 }
24309         // void QueryShortChannelIds_set_chain_hash(struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
24310 /* @internal */
24311 export function QueryShortChannelIds_set_chain_hash(this_ptr: number, val: number): void {
24312         if(!isWasmInitialized) {
24313                 throw new Error("initializeWasm() must be awaited first!");
24314         }
24315         const nativeResponseValue = wasm.TS_QueryShortChannelIds_set_chain_hash(this_ptr, val);
24316         // debug statements here
24317 }
24318         // struct LDKCVec_u64Z QueryShortChannelIds_get_short_channel_ids(const struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr);
24319 /* @internal */
24320 export function QueryShortChannelIds_get_short_channel_ids(this_ptr: number): number {
24321         if(!isWasmInitialized) {
24322                 throw new Error("initializeWasm() must be awaited first!");
24323         }
24324         const nativeResponseValue = wasm.TS_QueryShortChannelIds_get_short_channel_ids(this_ptr);
24325         return nativeResponseValue;
24326 }
24327         // void QueryShortChannelIds_set_short_channel_ids(struct LDKQueryShortChannelIds *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
24328 /* @internal */
24329 export function QueryShortChannelIds_set_short_channel_ids(this_ptr: number, val: number): void {
24330         if(!isWasmInitialized) {
24331                 throw new Error("initializeWasm() must be awaited first!");
24332         }
24333         const nativeResponseValue = wasm.TS_QueryShortChannelIds_set_short_channel_ids(this_ptr, val);
24334         // debug statements here
24335 }
24336         // MUST_USE_RES struct LDKQueryShortChannelIds QueryShortChannelIds_new(struct LDKThirtyTwoBytes chain_hash_arg, struct LDKCVec_u64Z short_channel_ids_arg);
24337 /* @internal */
24338 export function QueryShortChannelIds_new(chain_hash_arg: number, short_channel_ids_arg: number): number {
24339         if(!isWasmInitialized) {
24340                 throw new Error("initializeWasm() must be awaited first!");
24341         }
24342         const nativeResponseValue = wasm.TS_QueryShortChannelIds_new(chain_hash_arg, short_channel_ids_arg);
24343         return nativeResponseValue;
24344 }
24345         // uintptr_t QueryShortChannelIds_clone_ptr(LDKQueryShortChannelIds *NONNULL_PTR arg);
24346 /* @internal */
24347 export function QueryShortChannelIds_clone_ptr(arg: number): number {
24348         if(!isWasmInitialized) {
24349                 throw new Error("initializeWasm() must be awaited first!");
24350         }
24351         const nativeResponseValue = wasm.TS_QueryShortChannelIds_clone_ptr(arg);
24352         return nativeResponseValue;
24353 }
24354         // struct LDKQueryShortChannelIds QueryShortChannelIds_clone(const struct LDKQueryShortChannelIds *NONNULL_PTR orig);
24355 /* @internal */
24356 export function QueryShortChannelIds_clone(orig: number): number {
24357         if(!isWasmInitialized) {
24358                 throw new Error("initializeWasm() must be awaited first!");
24359         }
24360         const nativeResponseValue = wasm.TS_QueryShortChannelIds_clone(orig);
24361         return nativeResponseValue;
24362 }
24363         // void ReplyShortChannelIdsEnd_free(struct LDKReplyShortChannelIdsEnd this_obj);
24364 /* @internal */
24365 export function ReplyShortChannelIdsEnd_free(this_obj: number): void {
24366         if(!isWasmInitialized) {
24367                 throw new Error("initializeWasm() must be awaited first!");
24368         }
24369         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_free(this_obj);
24370         // debug statements here
24371 }
24372         // const uint8_t (*ReplyShortChannelIdsEnd_get_chain_hash(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr))[32];
24373 /* @internal */
24374 export function ReplyShortChannelIdsEnd_get_chain_hash(this_ptr: number): number {
24375         if(!isWasmInitialized) {
24376                 throw new Error("initializeWasm() must be awaited first!");
24377         }
24378         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_get_chain_hash(this_ptr);
24379         return nativeResponseValue;
24380 }
24381         // void ReplyShortChannelIdsEnd_set_chain_hash(struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
24382 /* @internal */
24383 export function ReplyShortChannelIdsEnd_set_chain_hash(this_ptr: number, val: number): void {
24384         if(!isWasmInitialized) {
24385                 throw new Error("initializeWasm() must be awaited first!");
24386         }
24387         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_set_chain_hash(this_ptr, val);
24388         // debug statements here
24389 }
24390         // bool ReplyShortChannelIdsEnd_get_full_information(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr);
24391 /* @internal */
24392 export function ReplyShortChannelIdsEnd_get_full_information(this_ptr: number): boolean {
24393         if(!isWasmInitialized) {
24394                 throw new Error("initializeWasm() must be awaited first!");
24395         }
24396         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_get_full_information(this_ptr);
24397         return nativeResponseValue;
24398 }
24399         // void ReplyShortChannelIdsEnd_set_full_information(struct LDKReplyShortChannelIdsEnd *NONNULL_PTR this_ptr, bool val);
24400 /* @internal */
24401 export function ReplyShortChannelIdsEnd_set_full_information(this_ptr: number, val: boolean): void {
24402         if(!isWasmInitialized) {
24403                 throw new Error("initializeWasm() must be awaited first!");
24404         }
24405         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_set_full_information(this_ptr, val);
24406         // debug statements here
24407 }
24408         // MUST_USE_RES struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_new(struct LDKThirtyTwoBytes chain_hash_arg, bool full_information_arg);
24409 /* @internal */
24410 export function ReplyShortChannelIdsEnd_new(chain_hash_arg: number, full_information_arg: boolean): number {
24411         if(!isWasmInitialized) {
24412                 throw new Error("initializeWasm() must be awaited first!");
24413         }
24414         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_new(chain_hash_arg, full_information_arg);
24415         return nativeResponseValue;
24416 }
24417         // uintptr_t ReplyShortChannelIdsEnd_clone_ptr(LDKReplyShortChannelIdsEnd *NONNULL_PTR arg);
24418 /* @internal */
24419 export function ReplyShortChannelIdsEnd_clone_ptr(arg: number): number {
24420         if(!isWasmInitialized) {
24421                 throw new Error("initializeWasm() must be awaited first!");
24422         }
24423         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_clone_ptr(arg);
24424         return nativeResponseValue;
24425 }
24426         // struct LDKReplyShortChannelIdsEnd ReplyShortChannelIdsEnd_clone(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR orig);
24427 /* @internal */
24428 export function ReplyShortChannelIdsEnd_clone(orig: number): number {
24429         if(!isWasmInitialized) {
24430                 throw new Error("initializeWasm() must be awaited first!");
24431         }
24432         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_clone(orig);
24433         return nativeResponseValue;
24434 }
24435         // void GossipTimestampFilter_free(struct LDKGossipTimestampFilter this_obj);
24436 /* @internal */
24437 export function GossipTimestampFilter_free(this_obj: number): void {
24438         if(!isWasmInitialized) {
24439                 throw new Error("initializeWasm() must be awaited first!");
24440         }
24441         const nativeResponseValue = wasm.TS_GossipTimestampFilter_free(this_obj);
24442         // debug statements here
24443 }
24444         // const uint8_t (*GossipTimestampFilter_get_chain_hash(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr))[32];
24445 /* @internal */
24446 export function GossipTimestampFilter_get_chain_hash(this_ptr: number): number {
24447         if(!isWasmInitialized) {
24448                 throw new Error("initializeWasm() must be awaited first!");
24449         }
24450         const nativeResponseValue = wasm.TS_GossipTimestampFilter_get_chain_hash(this_ptr);
24451         return nativeResponseValue;
24452 }
24453         // void GossipTimestampFilter_set_chain_hash(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
24454 /* @internal */
24455 export function GossipTimestampFilter_set_chain_hash(this_ptr: number, val: number): void {
24456         if(!isWasmInitialized) {
24457                 throw new Error("initializeWasm() must be awaited first!");
24458         }
24459         const nativeResponseValue = wasm.TS_GossipTimestampFilter_set_chain_hash(this_ptr, val);
24460         // debug statements here
24461 }
24462         // uint32_t GossipTimestampFilter_get_first_timestamp(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr);
24463 /* @internal */
24464 export function GossipTimestampFilter_get_first_timestamp(this_ptr: number): number {
24465         if(!isWasmInitialized) {
24466                 throw new Error("initializeWasm() must be awaited first!");
24467         }
24468         const nativeResponseValue = wasm.TS_GossipTimestampFilter_get_first_timestamp(this_ptr);
24469         return nativeResponseValue;
24470 }
24471         // void GossipTimestampFilter_set_first_timestamp(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, uint32_t val);
24472 /* @internal */
24473 export function GossipTimestampFilter_set_first_timestamp(this_ptr: number, val: number): void {
24474         if(!isWasmInitialized) {
24475                 throw new Error("initializeWasm() must be awaited first!");
24476         }
24477         const nativeResponseValue = wasm.TS_GossipTimestampFilter_set_first_timestamp(this_ptr, val);
24478         // debug statements here
24479 }
24480         // uint32_t GossipTimestampFilter_get_timestamp_range(const struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr);
24481 /* @internal */
24482 export function GossipTimestampFilter_get_timestamp_range(this_ptr: number): number {
24483         if(!isWasmInitialized) {
24484                 throw new Error("initializeWasm() must be awaited first!");
24485         }
24486         const nativeResponseValue = wasm.TS_GossipTimestampFilter_get_timestamp_range(this_ptr);
24487         return nativeResponseValue;
24488 }
24489         // void GossipTimestampFilter_set_timestamp_range(struct LDKGossipTimestampFilter *NONNULL_PTR this_ptr, uint32_t val);
24490 /* @internal */
24491 export function GossipTimestampFilter_set_timestamp_range(this_ptr: number, val: number): void {
24492         if(!isWasmInitialized) {
24493                 throw new Error("initializeWasm() must be awaited first!");
24494         }
24495         const nativeResponseValue = wasm.TS_GossipTimestampFilter_set_timestamp_range(this_ptr, val);
24496         // debug statements here
24497 }
24498         // MUST_USE_RES struct LDKGossipTimestampFilter GossipTimestampFilter_new(struct LDKThirtyTwoBytes chain_hash_arg, uint32_t first_timestamp_arg, uint32_t timestamp_range_arg);
24499 /* @internal */
24500 export function GossipTimestampFilter_new(chain_hash_arg: number, first_timestamp_arg: number, timestamp_range_arg: number): number {
24501         if(!isWasmInitialized) {
24502                 throw new Error("initializeWasm() must be awaited first!");
24503         }
24504         const nativeResponseValue = wasm.TS_GossipTimestampFilter_new(chain_hash_arg, first_timestamp_arg, timestamp_range_arg);
24505         return nativeResponseValue;
24506 }
24507         // uintptr_t GossipTimestampFilter_clone_ptr(LDKGossipTimestampFilter *NONNULL_PTR arg);
24508 /* @internal */
24509 export function GossipTimestampFilter_clone_ptr(arg: number): number {
24510         if(!isWasmInitialized) {
24511                 throw new Error("initializeWasm() must be awaited first!");
24512         }
24513         const nativeResponseValue = wasm.TS_GossipTimestampFilter_clone_ptr(arg);
24514         return nativeResponseValue;
24515 }
24516         // struct LDKGossipTimestampFilter GossipTimestampFilter_clone(const struct LDKGossipTimestampFilter *NONNULL_PTR orig);
24517 /* @internal */
24518 export function GossipTimestampFilter_clone(orig: number): number {
24519         if(!isWasmInitialized) {
24520                 throw new Error("initializeWasm() must be awaited first!");
24521         }
24522         const nativeResponseValue = wasm.TS_GossipTimestampFilter_clone(orig);
24523         return nativeResponseValue;
24524 }
24525         // void ErrorAction_free(struct LDKErrorAction this_ptr);
24526 /* @internal */
24527 export function ErrorAction_free(this_ptr: number): void {
24528         if(!isWasmInitialized) {
24529                 throw new Error("initializeWasm() must be awaited first!");
24530         }
24531         const nativeResponseValue = wasm.TS_ErrorAction_free(this_ptr);
24532         // debug statements here
24533 }
24534         // uintptr_t ErrorAction_clone_ptr(LDKErrorAction *NONNULL_PTR arg);
24535 /* @internal */
24536 export function ErrorAction_clone_ptr(arg: number): number {
24537         if(!isWasmInitialized) {
24538                 throw new Error("initializeWasm() must be awaited first!");
24539         }
24540         const nativeResponseValue = wasm.TS_ErrorAction_clone_ptr(arg);
24541         return nativeResponseValue;
24542 }
24543         // struct LDKErrorAction ErrorAction_clone(const struct LDKErrorAction *NONNULL_PTR orig);
24544 /* @internal */
24545 export function ErrorAction_clone(orig: number): number {
24546         if(!isWasmInitialized) {
24547                 throw new Error("initializeWasm() must be awaited first!");
24548         }
24549         const nativeResponseValue = wasm.TS_ErrorAction_clone(orig);
24550         return nativeResponseValue;
24551 }
24552         // struct LDKErrorAction ErrorAction_disconnect_peer(struct LDKErrorMessage msg);
24553 /* @internal */
24554 export function ErrorAction_disconnect_peer(msg: number): number {
24555         if(!isWasmInitialized) {
24556                 throw new Error("initializeWasm() must be awaited first!");
24557         }
24558         const nativeResponseValue = wasm.TS_ErrorAction_disconnect_peer(msg);
24559         return nativeResponseValue;
24560 }
24561         // struct LDKErrorAction ErrorAction_ignore_error(void);
24562 /* @internal */
24563 export function ErrorAction_ignore_error(): number {
24564         if(!isWasmInitialized) {
24565                 throw new Error("initializeWasm() must be awaited first!");
24566         }
24567         const nativeResponseValue = wasm.TS_ErrorAction_ignore_error();
24568         return nativeResponseValue;
24569 }
24570         // struct LDKErrorAction ErrorAction_ignore_and_log(enum LDKLevel a);
24571 /* @internal */
24572 export function ErrorAction_ignore_and_log(a: Level): number {
24573         if(!isWasmInitialized) {
24574                 throw new Error("initializeWasm() must be awaited first!");
24575         }
24576         const nativeResponseValue = wasm.TS_ErrorAction_ignore_and_log(a);
24577         return nativeResponseValue;
24578 }
24579         // struct LDKErrorAction ErrorAction_ignore_duplicate_gossip(void);
24580 /* @internal */
24581 export function ErrorAction_ignore_duplicate_gossip(): number {
24582         if(!isWasmInitialized) {
24583                 throw new Error("initializeWasm() must be awaited first!");
24584         }
24585         const nativeResponseValue = wasm.TS_ErrorAction_ignore_duplicate_gossip();
24586         return nativeResponseValue;
24587 }
24588         // struct LDKErrorAction ErrorAction_send_error_message(struct LDKErrorMessage msg);
24589 /* @internal */
24590 export function ErrorAction_send_error_message(msg: number): number {
24591         if(!isWasmInitialized) {
24592                 throw new Error("initializeWasm() must be awaited first!");
24593         }
24594         const nativeResponseValue = wasm.TS_ErrorAction_send_error_message(msg);
24595         return nativeResponseValue;
24596 }
24597         // struct LDKErrorAction ErrorAction_send_warning_message(struct LDKWarningMessage msg, enum LDKLevel log_level);
24598 /* @internal */
24599 export function ErrorAction_send_warning_message(msg: number, log_level: Level): number {
24600         if(!isWasmInitialized) {
24601                 throw new Error("initializeWasm() must be awaited first!");
24602         }
24603         const nativeResponseValue = wasm.TS_ErrorAction_send_warning_message(msg, log_level);
24604         return nativeResponseValue;
24605 }
24606         // void LightningError_free(struct LDKLightningError this_obj);
24607 /* @internal */
24608 export function LightningError_free(this_obj: number): void {
24609         if(!isWasmInitialized) {
24610                 throw new Error("initializeWasm() must be awaited first!");
24611         }
24612         const nativeResponseValue = wasm.TS_LightningError_free(this_obj);
24613         // debug statements here
24614 }
24615         // struct LDKStr LightningError_get_err(const struct LDKLightningError *NONNULL_PTR this_ptr);
24616 /* @internal */
24617 export function LightningError_get_err(this_ptr: number): number {
24618         if(!isWasmInitialized) {
24619                 throw new Error("initializeWasm() must be awaited first!");
24620         }
24621         const nativeResponseValue = wasm.TS_LightningError_get_err(this_ptr);
24622         return nativeResponseValue;
24623 }
24624         // void LightningError_set_err(struct LDKLightningError *NONNULL_PTR this_ptr, struct LDKStr val);
24625 /* @internal */
24626 export function LightningError_set_err(this_ptr: number, val: number): void {
24627         if(!isWasmInitialized) {
24628                 throw new Error("initializeWasm() must be awaited first!");
24629         }
24630         const nativeResponseValue = wasm.TS_LightningError_set_err(this_ptr, val);
24631         // debug statements here
24632 }
24633         // struct LDKErrorAction LightningError_get_action(const struct LDKLightningError *NONNULL_PTR this_ptr);
24634 /* @internal */
24635 export function LightningError_get_action(this_ptr: number): number {
24636         if(!isWasmInitialized) {
24637                 throw new Error("initializeWasm() must be awaited first!");
24638         }
24639         const nativeResponseValue = wasm.TS_LightningError_get_action(this_ptr);
24640         return nativeResponseValue;
24641 }
24642         // void LightningError_set_action(struct LDKLightningError *NONNULL_PTR this_ptr, struct LDKErrorAction val);
24643 /* @internal */
24644 export function LightningError_set_action(this_ptr: number, val: number): void {
24645         if(!isWasmInitialized) {
24646                 throw new Error("initializeWasm() must be awaited first!");
24647         }
24648         const nativeResponseValue = wasm.TS_LightningError_set_action(this_ptr, val);
24649         // debug statements here
24650 }
24651         // MUST_USE_RES struct LDKLightningError LightningError_new(struct LDKStr err_arg, struct LDKErrorAction action_arg);
24652 /* @internal */
24653 export function LightningError_new(err_arg: number, action_arg: number): number {
24654         if(!isWasmInitialized) {
24655                 throw new Error("initializeWasm() must be awaited first!");
24656         }
24657         const nativeResponseValue = wasm.TS_LightningError_new(err_arg, action_arg);
24658         return nativeResponseValue;
24659 }
24660         // uintptr_t LightningError_clone_ptr(LDKLightningError *NONNULL_PTR arg);
24661 /* @internal */
24662 export function LightningError_clone_ptr(arg: number): number {
24663         if(!isWasmInitialized) {
24664                 throw new Error("initializeWasm() must be awaited first!");
24665         }
24666         const nativeResponseValue = wasm.TS_LightningError_clone_ptr(arg);
24667         return nativeResponseValue;
24668 }
24669         // struct LDKLightningError LightningError_clone(const struct LDKLightningError *NONNULL_PTR orig);
24670 /* @internal */
24671 export function LightningError_clone(orig: number): number {
24672         if(!isWasmInitialized) {
24673                 throw new Error("initializeWasm() must be awaited first!");
24674         }
24675         const nativeResponseValue = wasm.TS_LightningError_clone(orig);
24676         return nativeResponseValue;
24677 }
24678         // void CommitmentUpdate_free(struct LDKCommitmentUpdate this_obj);
24679 /* @internal */
24680 export function CommitmentUpdate_free(this_obj: number): void {
24681         if(!isWasmInitialized) {
24682                 throw new Error("initializeWasm() must be awaited first!");
24683         }
24684         const nativeResponseValue = wasm.TS_CommitmentUpdate_free(this_obj);
24685         // debug statements here
24686 }
24687         // struct LDKCVec_UpdateAddHTLCZ CommitmentUpdate_get_update_add_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24688 /* @internal */
24689 export function CommitmentUpdate_get_update_add_htlcs(this_ptr: number): number {
24690         if(!isWasmInitialized) {
24691                 throw new Error("initializeWasm() must be awaited first!");
24692         }
24693         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_update_add_htlcs(this_ptr);
24694         return nativeResponseValue;
24695 }
24696         // void CommitmentUpdate_set_update_add_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateAddHTLCZ val);
24697 /* @internal */
24698 export function CommitmentUpdate_set_update_add_htlcs(this_ptr: number, val: number): void {
24699         if(!isWasmInitialized) {
24700                 throw new Error("initializeWasm() must be awaited first!");
24701         }
24702         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_update_add_htlcs(this_ptr, val);
24703         // debug statements here
24704 }
24705         // struct LDKCVec_UpdateFulfillHTLCZ CommitmentUpdate_get_update_fulfill_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24706 /* @internal */
24707 export function CommitmentUpdate_get_update_fulfill_htlcs(this_ptr: number): number {
24708         if(!isWasmInitialized) {
24709                 throw new Error("initializeWasm() must be awaited first!");
24710         }
24711         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_update_fulfill_htlcs(this_ptr);
24712         return nativeResponseValue;
24713 }
24714         // void CommitmentUpdate_set_update_fulfill_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFulfillHTLCZ val);
24715 /* @internal */
24716 export function CommitmentUpdate_set_update_fulfill_htlcs(this_ptr: number, val: number): void {
24717         if(!isWasmInitialized) {
24718                 throw new Error("initializeWasm() must be awaited first!");
24719         }
24720         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_update_fulfill_htlcs(this_ptr, val);
24721         // debug statements here
24722 }
24723         // struct LDKCVec_UpdateFailHTLCZ CommitmentUpdate_get_update_fail_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24724 /* @internal */
24725 export function CommitmentUpdate_get_update_fail_htlcs(this_ptr: number): number {
24726         if(!isWasmInitialized) {
24727                 throw new Error("initializeWasm() must be awaited first!");
24728         }
24729         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_update_fail_htlcs(this_ptr);
24730         return nativeResponseValue;
24731 }
24732         // void CommitmentUpdate_set_update_fail_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFailHTLCZ val);
24733 /* @internal */
24734 export function CommitmentUpdate_set_update_fail_htlcs(this_ptr: number, val: number): void {
24735         if(!isWasmInitialized) {
24736                 throw new Error("initializeWasm() must be awaited first!");
24737         }
24738         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_update_fail_htlcs(this_ptr, val);
24739         // debug statements here
24740 }
24741         // struct LDKCVec_UpdateFailMalformedHTLCZ CommitmentUpdate_get_update_fail_malformed_htlcs(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24742 /* @internal */
24743 export function CommitmentUpdate_get_update_fail_malformed_htlcs(this_ptr: number): number {
24744         if(!isWasmInitialized) {
24745                 throw new Error("initializeWasm() must be awaited first!");
24746         }
24747         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_update_fail_malformed_htlcs(this_ptr);
24748         return nativeResponseValue;
24749 }
24750         // void CommitmentUpdate_set_update_fail_malformed_htlcs(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCVec_UpdateFailMalformedHTLCZ val);
24751 /* @internal */
24752 export function CommitmentUpdate_set_update_fail_malformed_htlcs(this_ptr: number, val: number): void {
24753         if(!isWasmInitialized) {
24754                 throw new Error("initializeWasm() must be awaited first!");
24755         }
24756         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_update_fail_malformed_htlcs(this_ptr, val);
24757         // debug statements here
24758 }
24759         // struct LDKUpdateFee CommitmentUpdate_get_update_fee(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24760 /* @internal */
24761 export function CommitmentUpdate_get_update_fee(this_ptr: number): number {
24762         if(!isWasmInitialized) {
24763                 throw new Error("initializeWasm() must be awaited first!");
24764         }
24765         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_update_fee(this_ptr);
24766         return nativeResponseValue;
24767 }
24768         // void CommitmentUpdate_set_update_fee(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKUpdateFee val);
24769 /* @internal */
24770 export function CommitmentUpdate_set_update_fee(this_ptr: number, val: number): void {
24771         if(!isWasmInitialized) {
24772                 throw new Error("initializeWasm() must be awaited first!");
24773         }
24774         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_update_fee(this_ptr, val);
24775         // debug statements here
24776 }
24777         // struct LDKCommitmentSigned CommitmentUpdate_get_commitment_signed(const struct LDKCommitmentUpdate *NONNULL_PTR this_ptr);
24778 /* @internal */
24779 export function CommitmentUpdate_get_commitment_signed(this_ptr: number): number {
24780         if(!isWasmInitialized) {
24781                 throw new Error("initializeWasm() must be awaited first!");
24782         }
24783         const nativeResponseValue = wasm.TS_CommitmentUpdate_get_commitment_signed(this_ptr);
24784         return nativeResponseValue;
24785 }
24786         // void CommitmentUpdate_set_commitment_signed(struct LDKCommitmentUpdate *NONNULL_PTR this_ptr, struct LDKCommitmentSigned val);
24787 /* @internal */
24788 export function CommitmentUpdate_set_commitment_signed(this_ptr: number, val: number): void {
24789         if(!isWasmInitialized) {
24790                 throw new Error("initializeWasm() must be awaited first!");
24791         }
24792         const nativeResponseValue = wasm.TS_CommitmentUpdate_set_commitment_signed(this_ptr, val);
24793         // debug statements here
24794 }
24795         // MUST_USE_RES struct LDKCommitmentUpdate CommitmentUpdate_new(struct LDKCVec_UpdateAddHTLCZ update_add_htlcs_arg, struct LDKCVec_UpdateFulfillHTLCZ update_fulfill_htlcs_arg, struct LDKCVec_UpdateFailHTLCZ update_fail_htlcs_arg, struct LDKCVec_UpdateFailMalformedHTLCZ update_fail_malformed_htlcs_arg, struct LDKUpdateFee update_fee_arg, struct LDKCommitmentSigned commitment_signed_arg);
24796 /* @internal */
24797 export function CommitmentUpdate_new(update_add_htlcs_arg: number, update_fulfill_htlcs_arg: number, update_fail_htlcs_arg: number, update_fail_malformed_htlcs_arg: number, update_fee_arg: number, commitment_signed_arg: number): number {
24798         if(!isWasmInitialized) {
24799                 throw new Error("initializeWasm() must be awaited first!");
24800         }
24801         const nativeResponseValue = wasm.TS_CommitmentUpdate_new(update_add_htlcs_arg, update_fulfill_htlcs_arg, update_fail_htlcs_arg, update_fail_malformed_htlcs_arg, update_fee_arg, commitment_signed_arg);
24802         return nativeResponseValue;
24803 }
24804         // uintptr_t CommitmentUpdate_clone_ptr(LDKCommitmentUpdate *NONNULL_PTR arg);
24805 /* @internal */
24806 export function CommitmentUpdate_clone_ptr(arg: number): number {
24807         if(!isWasmInitialized) {
24808                 throw new Error("initializeWasm() must be awaited first!");
24809         }
24810         const nativeResponseValue = wasm.TS_CommitmentUpdate_clone_ptr(arg);
24811         return nativeResponseValue;
24812 }
24813         // struct LDKCommitmentUpdate CommitmentUpdate_clone(const struct LDKCommitmentUpdate *NONNULL_PTR orig);
24814 /* @internal */
24815 export function CommitmentUpdate_clone(orig: number): number {
24816         if(!isWasmInitialized) {
24817                 throw new Error("initializeWasm() must be awaited first!");
24818         }
24819         const nativeResponseValue = wasm.TS_CommitmentUpdate_clone(orig);
24820         return nativeResponseValue;
24821 }
24822         // void ChannelMessageHandler_free(struct LDKChannelMessageHandler this_ptr);
24823 /* @internal */
24824 export function ChannelMessageHandler_free(this_ptr: number): void {
24825         if(!isWasmInitialized) {
24826                 throw new Error("initializeWasm() must be awaited first!");
24827         }
24828         const nativeResponseValue = wasm.TS_ChannelMessageHandler_free(this_ptr);
24829         // debug statements here
24830 }
24831         // void RoutingMessageHandler_free(struct LDKRoutingMessageHandler this_ptr);
24832 /* @internal */
24833 export function RoutingMessageHandler_free(this_ptr: number): void {
24834         if(!isWasmInitialized) {
24835                 throw new Error("initializeWasm() must be awaited first!");
24836         }
24837         const nativeResponseValue = wasm.TS_RoutingMessageHandler_free(this_ptr);
24838         // debug statements here
24839 }
24840         // struct LDKCVec_u8Z AcceptChannel_write(const struct LDKAcceptChannel *NONNULL_PTR obj);
24841 /* @internal */
24842 export function AcceptChannel_write(obj: number): number {
24843         if(!isWasmInitialized) {
24844                 throw new Error("initializeWasm() must be awaited first!");
24845         }
24846         const nativeResponseValue = wasm.TS_AcceptChannel_write(obj);
24847         return nativeResponseValue;
24848 }
24849         // struct LDKCResult_AcceptChannelDecodeErrorZ AcceptChannel_read(struct LDKu8slice ser);
24850 /* @internal */
24851 export function AcceptChannel_read(ser: number): number {
24852         if(!isWasmInitialized) {
24853                 throw new Error("initializeWasm() must be awaited first!");
24854         }
24855         const nativeResponseValue = wasm.TS_AcceptChannel_read(ser);
24856         return nativeResponseValue;
24857 }
24858         // struct LDKCVec_u8Z AnnouncementSignatures_write(const struct LDKAnnouncementSignatures *NONNULL_PTR obj);
24859 /* @internal */
24860 export function AnnouncementSignatures_write(obj: number): number {
24861         if(!isWasmInitialized) {
24862                 throw new Error("initializeWasm() must be awaited first!");
24863         }
24864         const nativeResponseValue = wasm.TS_AnnouncementSignatures_write(obj);
24865         return nativeResponseValue;
24866 }
24867         // struct LDKCResult_AnnouncementSignaturesDecodeErrorZ AnnouncementSignatures_read(struct LDKu8slice ser);
24868 /* @internal */
24869 export function AnnouncementSignatures_read(ser: number): number {
24870         if(!isWasmInitialized) {
24871                 throw new Error("initializeWasm() must be awaited first!");
24872         }
24873         const nativeResponseValue = wasm.TS_AnnouncementSignatures_read(ser);
24874         return nativeResponseValue;
24875 }
24876         // struct LDKCVec_u8Z ChannelReestablish_write(const struct LDKChannelReestablish *NONNULL_PTR obj);
24877 /* @internal */
24878 export function ChannelReestablish_write(obj: number): number {
24879         if(!isWasmInitialized) {
24880                 throw new Error("initializeWasm() must be awaited first!");
24881         }
24882         const nativeResponseValue = wasm.TS_ChannelReestablish_write(obj);
24883         return nativeResponseValue;
24884 }
24885         // struct LDKCResult_ChannelReestablishDecodeErrorZ ChannelReestablish_read(struct LDKu8slice ser);
24886 /* @internal */
24887 export function ChannelReestablish_read(ser: number): number {
24888         if(!isWasmInitialized) {
24889                 throw new Error("initializeWasm() must be awaited first!");
24890         }
24891         const nativeResponseValue = wasm.TS_ChannelReestablish_read(ser);
24892         return nativeResponseValue;
24893 }
24894         // struct LDKCVec_u8Z ClosingSigned_write(const struct LDKClosingSigned *NONNULL_PTR obj);
24895 /* @internal */
24896 export function ClosingSigned_write(obj: number): number {
24897         if(!isWasmInitialized) {
24898                 throw new Error("initializeWasm() must be awaited first!");
24899         }
24900         const nativeResponseValue = wasm.TS_ClosingSigned_write(obj);
24901         return nativeResponseValue;
24902 }
24903         // struct LDKCResult_ClosingSignedDecodeErrorZ ClosingSigned_read(struct LDKu8slice ser);
24904 /* @internal */
24905 export function ClosingSigned_read(ser: number): number {
24906         if(!isWasmInitialized) {
24907                 throw new Error("initializeWasm() must be awaited first!");
24908         }
24909         const nativeResponseValue = wasm.TS_ClosingSigned_read(ser);
24910         return nativeResponseValue;
24911 }
24912         // struct LDKCVec_u8Z ClosingSignedFeeRange_write(const struct LDKClosingSignedFeeRange *NONNULL_PTR obj);
24913 /* @internal */
24914 export function ClosingSignedFeeRange_write(obj: number): number {
24915         if(!isWasmInitialized) {
24916                 throw new Error("initializeWasm() must be awaited first!");
24917         }
24918         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_write(obj);
24919         return nativeResponseValue;
24920 }
24921         // struct LDKCResult_ClosingSignedFeeRangeDecodeErrorZ ClosingSignedFeeRange_read(struct LDKu8slice ser);
24922 /* @internal */
24923 export function ClosingSignedFeeRange_read(ser: number): number {
24924         if(!isWasmInitialized) {
24925                 throw new Error("initializeWasm() must be awaited first!");
24926         }
24927         const nativeResponseValue = wasm.TS_ClosingSignedFeeRange_read(ser);
24928         return nativeResponseValue;
24929 }
24930         // struct LDKCVec_u8Z CommitmentSigned_write(const struct LDKCommitmentSigned *NONNULL_PTR obj);
24931 /* @internal */
24932 export function CommitmentSigned_write(obj: number): number {
24933         if(!isWasmInitialized) {
24934                 throw new Error("initializeWasm() must be awaited first!");
24935         }
24936         const nativeResponseValue = wasm.TS_CommitmentSigned_write(obj);
24937         return nativeResponseValue;
24938 }
24939         // struct LDKCResult_CommitmentSignedDecodeErrorZ CommitmentSigned_read(struct LDKu8slice ser);
24940 /* @internal */
24941 export function CommitmentSigned_read(ser: number): number {
24942         if(!isWasmInitialized) {
24943                 throw new Error("initializeWasm() must be awaited first!");
24944         }
24945         const nativeResponseValue = wasm.TS_CommitmentSigned_read(ser);
24946         return nativeResponseValue;
24947 }
24948         // struct LDKCVec_u8Z FundingCreated_write(const struct LDKFundingCreated *NONNULL_PTR obj);
24949 /* @internal */
24950 export function FundingCreated_write(obj: number): number {
24951         if(!isWasmInitialized) {
24952                 throw new Error("initializeWasm() must be awaited first!");
24953         }
24954         const nativeResponseValue = wasm.TS_FundingCreated_write(obj);
24955         return nativeResponseValue;
24956 }
24957         // struct LDKCResult_FundingCreatedDecodeErrorZ FundingCreated_read(struct LDKu8slice ser);
24958 /* @internal */
24959 export function FundingCreated_read(ser: number): number {
24960         if(!isWasmInitialized) {
24961                 throw new Error("initializeWasm() must be awaited first!");
24962         }
24963         const nativeResponseValue = wasm.TS_FundingCreated_read(ser);
24964         return nativeResponseValue;
24965 }
24966         // struct LDKCVec_u8Z FundingSigned_write(const struct LDKFundingSigned *NONNULL_PTR obj);
24967 /* @internal */
24968 export function FundingSigned_write(obj: number): number {
24969         if(!isWasmInitialized) {
24970                 throw new Error("initializeWasm() must be awaited first!");
24971         }
24972         const nativeResponseValue = wasm.TS_FundingSigned_write(obj);
24973         return nativeResponseValue;
24974 }
24975         // struct LDKCResult_FundingSignedDecodeErrorZ FundingSigned_read(struct LDKu8slice ser);
24976 /* @internal */
24977 export function FundingSigned_read(ser: number): number {
24978         if(!isWasmInitialized) {
24979                 throw new Error("initializeWasm() must be awaited first!");
24980         }
24981         const nativeResponseValue = wasm.TS_FundingSigned_read(ser);
24982         return nativeResponseValue;
24983 }
24984         // struct LDKCVec_u8Z ChannelReady_write(const struct LDKChannelReady *NONNULL_PTR obj);
24985 /* @internal */
24986 export function ChannelReady_write(obj: number): number {
24987         if(!isWasmInitialized) {
24988                 throw new Error("initializeWasm() must be awaited first!");
24989         }
24990         const nativeResponseValue = wasm.TS_ChannelReady_write(obj);
24991         return nativeResponseValue;
24992 }
24993         // struct LDKCResult_ChannelReadyDecodeErrorZ ChannelReady_read(struct LDKu8slice ser);
24994 /* @internal */
24995 export function ChannelReady_read(ser: number): number {
24996         if(!isWasmInitialized) {
24997                 throw new Error("initializeWasm() must be awaited first!");
24998         }
24999         const nativeResponseValue = wasm.TS_ChannelReady_read(ser);
25000         return nativeResponseValue;
25001 }
25002         // struct LDKCVec_u8Z Init_write(const struct LDKInit *NONNULL_PTR obj);
25003 /* @internal */
25004 export function Init_write(obj: number): number {
25005         if(!isWasmInitialized) {
25006                 throw new Error("initializeWasm() must be awaited first!");
25007         }
25008         const nativeResponseValue = wasm.TS_Init_write(obj);
25009         return nativeResponseValue;
25010 }
25011         // struct LDKCResult_InitDecodeErrorZ Init_read(struct LDKu8slice ser);
25012 /* @internal */
25013 export function Init_read(ser: number): number {
25014         if(!isWasmInitialized) {
25015                 throw new Error("initializeWasm() must be awaited first!");
25016         }
25017         const nativeResponseValue = wasm.TS_Init_read(ser);
25018         return nativeResponseValue;
25019 }
25020         // struct LDKCVec_u8Z OpenChannel_write(const struct LDKOpenChannel *NONNULL_PTR obj);
25021 /* @internal */
25022 export function OpenChannel_write(obj: number): number {
25023         if(!isWasmInitialized) {
25024                 throw new Error("initializeWasm() must be awaited first!");
25025         }
25026         const nativeResponseValue = wasm.TS_OpenChannel_write(obj);
25027         return nativeResponseValue;
25028 }
25029         // struct LDKCResult_OpenChannelDecodeErrorZ OpenChannel_read(struct LDKu8slice ser);
25030 /* @internal */
25031 export function OpenChannel_read(ser: number): number {
25032         if(!isWasmInitialized) {
25033                 throw new Error("initializeWasm() must be awaited first!");
25034         }
25035         const nativeResponseValue = wasm.TS_OpenChannel_read(ser);
25036         return nativeResponseValue;
25037 }
25038         // struct LDKCVec_u8Z RevokeAndACK_write(const struct LDKRevokeAndACK *NONNULL_PTR obj);
25039 /* @internal */
25040 export function RevokeAndACK_write(obj: number): number {
25041         if(!isWasmInitialized) {
25042                 throw new Error("initializeWasm() must be awaited first!");
25043         }
25044         const nativeResponseValue = wasm.TS_RevokeAndACK_write(obj);
25045         return nativeResponseValue;
25046 }
25047         // struct LDKCResult_RevokeAndACKDecodeErrorZ RevokeAndACK_read(struct LDKu8slice ser);
25048 /* @internal */
25049 export function RevokeAndACK_read(ser: number): number {
25050         if(!isWasmInitialized) {
25051                 throw new Error("initializeWasm() must be awaited first!");
25052         }
25053         const nativeResponseValue = wasm.TS_RevokeAndACK_read(ser);
25054         return nativeResponseValue;
25055 }
25056         // struct LDKCVec_u8Z Shutdown_write(const struct LDKShutdown *NONNULL_PTR obj);
25057 /* @internal */
25058 export function Shutdown_write(obj: number): number {
25059         if(!isWasmInitialized) {
25060                 throw new Error("initializeWasm() must be awaited first!");
25061         }
25062         const nativeResponseValue = wasm.TS_Shutdown_write(obj);
25063         return nativeResponseValue;
25064 }
25065         // struct LDKCResult_ShutdownDecodeErrorZ Shutdown_read(struct LDKu8slice ser);
25066 /* @internal */
25067 export function Shutdown_read(ser: number): number {
25068         if(!isWasmInitialized) {
25069                 throw new Error("initializeWasm() must be awaited first!");
25070         }
25071         const nativeResponseValue = wasm.TS_Shutdown_read(ser);
25072         return nativeResponseValue;
25073 }
25074         // struct LDKCVec_u8Z UpdateFailHTLC_write(const struct LDKUpdateFailHTLC *NONNULL_PTR obj);
25075 /* @internal */
25076 export function UpdateFailHTLC_write(obj: number): number {
25077         if(!isWasmInitialized) {
25078                 throw new Error("initializeWasm() must be awaited first!");
25079         }
25080         const nativeResponseValue = wasm.TS_UpdateFailHTLC_write(obj);
25081         return nativeResponseValue;
25082 }
25083         // struct LDKCResult_UpdateFailHTLCDecodeErrorZ UpdateFailHTLC_read(struct LDKu8slice ser);
25084 /* @internal */
25085 export function UpdateFailHTLC_read(ser: number): number {
25086         if(!isWasmInitialized) {
25087                 throw new Error("initializeWasm() must be awaited first!");
25088         }
25089         const nativeResponseValue = wasm.TS_UpdateFailHTLC_read(ser);
25090         return nativeResponseValue;
25091 }
25092         // struct LDKCVec_u8Z UpdateFailMalformedHTLC_write(const struct LDKUpdateFailMalformedHTLC *NONNULL_PTR obj);
25093 /* @internal */
25094 export function UpdateFailMalformedHTLC_write(obj: number): number {
25095         if(!isWasmInitialized) {
25096                 throw new Error("initializeWasm() must be awaited first!");
25097         }
25098         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_write(obj);
25099         return nativeResponseValue;
25100 }
25101         // struct LDKCResult_UpdateFailMalformedHTLCDecodeErrorZ UpdateFailMalformedHTLC_read(struct LDKu8slice ser);
25102 /* @internal */
25103 export function UpdateFailMalformedHTLC_read(ser: number): number {
25104         if(!isWasmInitialized) {
25105                 throw new Error("initializeWasm() must be awaited first!");
25106         }
25107         const nativeResponseValue = wasm.TS_UpdateFailMalformedHTLC_read(ser);
25108         return nativeResponseValue;
25109 }
25110         // struct LDKCVec_u8Z UpdateFee_write(const struct LDKUpdateFee *NONNULL_PTR obj);
25111 /* @internal */
25112 export function UpdateFee_write(obj: number): number {
25113         if(!isWasmInitialized) {
25114                 throw new Error("initializeWasm() must be awaited first!");
25115         }
25116         const nativeResponseValue = wasm.TS_UpdateFee_write(obj);
25117         return nativeResponseValue;
25118 }
25119         // struct LDKCResult_UpdateFeeDecodeErrorZ UpdateFee_read(struct LDKu8slice ser);
25120 /* @internal */
25121 export function UpdateFee_read(ser: number): number {
25122         if(!isWasmInitialized) {
25123                 throw new Error("initializeWasm() must be awaited first!");
25124         }
25125         const nativeResponseValue = wasm.TS_UpdateFee_read(ser);
25126         return nativeResponseValue;
25127 }
25128         // struct LDKCVec_u8Z UpdateFulfillHTLC_write(const struct LDKUpdateFulfillHTLC *NONNULL_PTR obj);
25129 /* @internal */
25130 export function UpdateFulfillHTLC_write(obj: number): number {
25131         if(!isWasmInitialized) {
25132                 throw new Error("initializeWasm() must be awaited first!");
25133         }
25134         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_write(obj);
25135         return nativeResponseValue;
25136 }
25137         // struct LDKCResult_UpdateFulfillHTLCDecodeErrorZ UpdateFulfillHTLC_read(struct LDKu8slice ser);
25138 /* @internal */
25139 export function UpdateFulfillHTLC_read(ser: number): number {
25140         if(!isWasmInitialized) {
25141                 throw new Error("initializeWasm() must be awaited first!");
25142         }
25143         const nativeResponseValue = wasm.TS_UpdateFulfillHTLC_read(ser);
25144         return nativeResponseValue;
25145 }
25146         // struct LDKCVec_u8Z UpdateAddHTLC_write(const struct LDKUpdateAddHTLC *NONNULL_PTR obj);
25147 /* @internal */
25148 export function UpdateAddHTLC_write(obj: number): number {
25149         if(!isWasmInitialized) {
25150                 throw new Error("initializeWasm() must be awaited first!");
25151         }
25152         const nativeResponseValue = wasm.TS_UpdateAddHTLC_write(obj);
25153         return nativeResponseValue;
25154 }
25155         // struct LDKCResult_UpdateAddHTLCDecodeErrorZ UpdateAddHTLC_read(struct LDKu8slice ser);
25156 /* @internal */
25157 export function UpdateAddHTLC_read(ser: number): number {
25158         if(!isWasmInitialized) {
25159                 throw new Error("initializeWasm() must be awaited first!");
25160         }
25161         const nativeResponseValue = wasm.TS_UpdateAddHTLC_read(ser);
25162         return nativeResponseValue;
25163 }
25164         // struct LDKCVec_u8Z Ping_write(const struct LDKPing *NONNULL_PTR obj);
25165 /* @internal */
25166 export function Ping_write(obj: number): number {
25167         if(!isWasmInitialized) {
25168                 throw new Error("initializeWasm() must be awaited first!");
25169         }
25170         const nativeResponseValue = wasm.TS_Ping_write(obj);
25171         return nativeResponseValue;
25172 }
25173         // struct LDKCResult_PingDecodeErrorZ Ping_read(struct LDKu8slice ser);
25174 /* @internal */
25175 export function Ping_read(ser: number): number {
25176         if(!isWasmInitialized) {
25177                 throw new Error("initializeWasm() must be awaited first!");
25178         }
25179         const nativeResponseValue = wasm.TS_Ping_read(ser);
25180         return nativeResponseValue;
25181 }
25182         // struct LDKCVec_u8Z Pong_write(const struct LDKPong *NONNULL_PTR obj);
25183 /* @internal */
25184 export function Pong_write(obj: number): number {
25185         if(!isWasmInitialized) {
25186                 throw new Error("initializeWasm() must be awaited first!");
25187         }
25188         const nativeResponseValue = wasm.TS_Pong_write(obj);
25189         return nativeResponseValue;
25190 }
25191         // struct LDKCResult_PongDecodeErrorZ Pong_read(struct LDKu8slice ser);
25192 /* @internal */
25193 export function Pong_read(ser: number): number {
25194         if(!isWasmInitialized) {
25195                 throw new Error("initializeWasm() must be awaited first!");
25196         }
25197         const nativeResponseValue = wasm.TS_Pong_read(ser);
25198         return nativeResponseValue;
25199 }
25200         // struct LDKCVec_u8Z UnsignedChannelAnnouncement_write(const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR obj);
25201 /* @internal */
25202 export function UnsignedChannelAnnouncement_write(obj: number): number {
25203         if(!isWasmInitialized) {
25204                 throw new Error("initializeWasm() must be awaited first!");
25205         }
25206         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_write(obj);
25207         return nativeResponseValue;
25208 }
25209         // struct LDKCResult_UnsignedChannelAnnouncementDecodeErrorZ UnsignedChannelAnnouncement_read(struct LDKu8slice ser);
25210 /* @internal */
25211 export function UnsignedChannelAnnouncement_read(ser: number): number {
25212         if(!isWasmInitialized) {
25213                 throw new Error("initializeWasm() must be awaited first!");
25214         }
25215         const nativeResponseValue = wasm.TS_UnsignedChannelAnnouncement_read(ser);
25216         return nativeResponseValue;
25217 }
25218         // struct LDKCVec_u8Z ChannelAnnouncement_write(const struct LDKChannelAnnouncement *NONNULL_PTR obj);
25219 /* @internal */
25220 export function ChannelAnnouncement_write(obj: number): number {
25221         if(!isWasmInitialized) {
25222                 throw new Error("initializeWasm() must be awaited first!");
25223         }
25224         const nativeResponseValue = wasm.TS_ChannelAnnouncement_write(obj);
25225         return nativeResponseValue;
25226 }
25227         // struct LDKCResult_ChannelAnnouncementDecodeErrorZ ChannelAnnouncement_read(struct LDKu8slice ser);
25228 /* @internal */
25229 export function ChannelAnnouncement_read(ser: number): number {
25230         if(!isWasmInitialized) {
25231                 throw new Error("initializeWasm() must be awaited first!");
25232         }
25233         const nativeResponseValue = wasm.TS_ChannelAnnouncement_read(ser);
25234         return nativeResponseValue;
25235 }
25236         // struct LDKCVec_u8Z UnsignedChannelUpdate_write(const struct LDKUnsignedChannelUpdate *NONNULL_PTR obj);
25237 /* @internal */
25238 export function UnsignedChannelUpdate_write(obj: number): number {
25239         if(!isWasmInitialized) {
25240                 throw new Error("initializeWasm() must be awaited first!");
25241         }
25242         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_write(obj);
25243         return nativeResponseValue;
25244 }
25245         // struct LDKCResult_UnsignedChannelUpdateDecodeErrorZ UnsignedChannelUpdate_read(struct LDKu8slice ser);
25246 /* @internal */
25247 export function UnsignedChannelUpdate_read(ser: number): number {
25248         if(!isWasmInitialized) {
25249                 throw new Error("initializeWasm() must be awaited first!");
25250         }
25251         const nativeResponseValue = wasm.TS_UnsignedChannelUpdate_read(ser);
25252         return nativeResponseValue;
25253 }
25254         // struct LDKCVec_u8Z ChannelUpdate_write(const struct LDKChannelUpdate *NONNULL_PTR obj);
25255 /* @internal */
25256 export function ChannelUpdate_write(obj: number): number {
25257         if(!isWasmInitialized) {
25258                 throw new Error("initializeWasm() must be awaited first!");
25259         }
25260         const nativeResponseValue = wasm.TS_ChannelUpdate_write(obj);
25261         return nativeResponseValue;
25262 }
25263         // struct LDKCResult_ChannelUpdateDecodeErrorZ ChannelUpdate_read(struct LDKu8slice ser);
25264 /* @internal */
25265 export function ChannelUpdate_read(ser: number): number {
25266         if(!isWasmInitialized) {
25267                 throw new Error("initializeWasm() must be awaited first!");
25268         }
25269         const nativeResponseValue = wasm.TS_ChannelUpdate_read(ser);
25270         return nativeResponseValue;
25271 }
25272         // struct LDKCVec_u8Z ErrorMessage_write(const struct LDKErrorMessage *NONNULL_PTR obj);
25273 /* @internal */
25274 export function ErrorMessage_write(obj: number): number {
25275         if(!isWasmInitialized) {
25276                 throw new Error("initializeWasm() must be awaited first!");
25277         }
25278         const nativeResponseValue = wasm.TS_ErrorMessage_write(obj);
25279         return nativeResponseValue;
25280 }
25281         // struct LDKCResult_ErrorMessageDecodeErrorZ ErrorMessage_read(struct LDKu8slice ser);
25282 /* @internal */
25283 export function ErrorMessage_read(ser: number): number {
25284         if(!isWasmInitialized) {
25285                 throw new Error("initializeWasm() must be awaited first!");
25286         }
25287         const nativeResponseValue = wasm.TS_ErrorMessage_read(ser);
25288         return nativeResponseValue;
25289 }
25290         // struct LDKCVec_u8Z WarningMessage_write(const struct LDKWarningMessage *NONNULL_PTR obj);
25291 /* @internal */
25292 export function WarningMessage_write(obj: number): number {
25293         if(!isWasmInitialized) {
25294                 throw new Error("initializeWasm() must be awaited first!");
25295         }
25296         const nativeResponseValue = wasm.TS_WarningMessage_write(obj);
25297         return nativeResponseValue;
25298 }
25299         // struct LDKCResult_WarningMessageDecodeErrorZ WarningMessage_read(struct LDKu8slice ser);
25300 /* @internal */
25301 export function WarningMessage_read(ser: number): number {
25302         if(!isWasmInitialized) {
25303                 throw new Error("initializeWasm() must be awaited first!");
25304         }
25305         const nativeResponseValue = wasm.TS_WarningMessage_read(ser);
25306         return nativeResponseValue;
25307 }
25308         // struct LDKCVec_u8Z UnsignedNodeAnnouncement_write(const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR obj);
25309 /* @internal */
25310 export function UnsignedNodeAnnouncement_write(obj: number): number {
25311         if(!isWasmInitialized) {
25312                 throw new Error("initializeWasm() must be awaited first!");
25313         }
25314         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_write(obj);
25315         return nativeResponseValue;
25316 }
25317         // struct LDKCResult_UnsignedNodeAnnouncementDecodeErrorZ UnsignedNodeAnnouncement_read(struct LDKu8slice ser);
25318 /* @internal */
25319 export function UnsignedNodeAnnouncement_read(ser: number): number {
25320         if(!isWasmInitialized) {
25321                 throw new Error("initializeWasm() must be awaited first!");
25322         }
25323         const nativeResponseValue = wasm.TS_UnsignedNodeAnnouncement_read(ser);
25324         return nativeResponseValue;
25325 }
25326         // struct LDKCVec_u8Z NodeAnnouncement_write(const struct LDKNodeAnnouncement *NONNULL_PTR obj);
25327 /* @internal */
25328 export function NodeAnnouncement_write(obj: number): number {
25329         if(!isWasmInitialized) {
25330                 throw new Error("initializeWasm() must be awaited first!");
25331         }
25332         const nativeResponseValue = wasm.TS_NodeAnnouncement_write(obj);
25333         return nativeResponseValue;
25334 }
25335         // struct LDKCResult_NodeAnnouncementDecodeErrorZ NodeAnnouncement_read(struct LDKu8slice ser);
25336 /* @internal */
25337 export function NodeAnnouncement_read(ser: number): number {
25338         if(!isWasmInitialized) {
25339                 throw new Error("initializeWasm() must be awaited first!");
25340         }
25341         const nativeResponseValue = wasm.TS_NodeAnnouncement_read(ser);
25342         return nativeResponseValue;
25343 }
25344         // struct LDKCResult_QueryShortChannelIdsDecodeErrorZ QueryShortChannelIds_read(struct LDKu8slice ser);
25345 /* @internal */
25346 export function QueryShortChannelIds_read(ser: number): number {
25347         if(!isWasmInitialized) {
25348                 throw new Error("initializeWasm() must be awaited first!");
25349         }
25350         const nativeResponseValue = wasm.TS_QueryShortChannelIds_read(ser);
25351         return nativeResponseValue;
25352 }
25353         // struct LDKCVec_u8Z QueryShortChannelIds_write(const struct LDKQueryShortChannelIds *NONNULL_PTR obj);
25354 /* @internal */
25355 export function QueryShortChannelIds_write(obj: number): number {
25356         if(!isWasmInitialized) {
25357                 throw new Error("initializeWasm() must be awaited first!");
25358         }
25359         const nativeResponseValue = wasm.TS_QueryShortChannelIds_write(obj);
25360         return nativeResponseValue;
25361 }
25362         // struct LDKCVec_u8Z ReplyShortChannelIdsEnd_write(const struct LDKReplyShortChannelIdsEnd *NONNULL_PTR obj);
25363 /* @internal */
25364 export function ReplyShortChannelIdsEnd_write(obj: number): number {
25365         if(!isWasmInitialized) {
25366                 throw new Error("initializeWasm() must be awaited first!");
25367         }
25368         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_write(obj);
25369         return nativeResponseValue;
25370 }
25371         // struct LDKCResult_ReplyShortChannelIdsEndDecodeErrorZ ReplyShortChannelIdsEnd_read(struct LDKu8slice ser);
25372 /* @internal */
25373 export function ReplyShortChannelIdsEnd_read(ser: number): number {
25374         if(!isWasmInitialized) {
25375                 throw new Error("initializeWasm() must be awaited first!");
25376         }
25377         const nativeResponseValue = wasm.TS_ReplyShortChannelIdsEnd_read(ser);
25378         return nativeResponseValue;
25379 }
25380         // MUST_USE_RES uint32_t QueryChannelRange_end_blocknum(const struct LDKQueryChannelRange *NONNULL_PTR this_arg);
25381 /* @internal */
25382 export function QueryChannelRange_end_blocknum(this_arg: number): number {
25383         if(!isWasmInitialized) {
25384                 throw new Error("initializeWasm() must be awaited first!");
25385         }
25386         const nativeResponseValue = wasm.TS_QueryChannelRange_end_blocknum(this_arg);
25387         return nativeResponseValue;
25388 }
25389         // struct LDKCVec_u8Z QueryChannelRange_write(const struct LDKQueryChannelRange *NONNULL_PTR obj);
25390 /* @internal */
25391 export function QueryChannelRange_write(obj: number): number {
25392         if(!isWasmInitialized) {
25393                 throw new Error("initializeWasm() must be awaited first!");
25394         }
25395         const nativeResponseValue = wasm.TS_QueryChannelRange_write(obj);
25396         return nativeResponseValue;
25397 }
25398         // struct LDKCResult_QueryChannelRangeDecodeErrorZ QueryChannelRange_read(struct LDKu8slice ser);
25399 /* @internal */
25400 export function QueryChannelRange_read(ser: number): number {
25401         if(!isWasmInitialized) {
25402                 throw new Error("initializeWasm() must be awaited first!");
25403         }
25404         const nativeResponseValue = wasm.TS_QueryChannelRange_read(ser);
25405         return nativeResponseValue;
25406 }
25407         // struct LDKCResult_ReplyChannelRangeDecodeErrorZ ReplyChannelRange_read(struct LDKu8slice ser);
25408 /* @internal */
25409 export function ReplyChannelRange_read(ser: number): number {
25410         if(!isWasmInitialized) {
25411                 throw new Error("initializeWasm() must be awaited first!");
25412         }
25413         const nativeResponseValue = wasm.TS_ReplyChannelRange_read(ser);
25414         return nativeResponseValue;
25415 }
25416         // struct LDKCVec_u8Z ReplyChannelRange_write(const struct LDKReplyChannelRange *NONNULL_PTR obj);
25417 /* @internal */
25418 export function ReplyChannelRange_write(obj: number): number {
25419         if(!isWasmInitialized) {
25420                 throw new Error("initializeWasm() must be awaited first!");
25421         }
25422         const nativeResponseValue = wasm.TS_ReplyChannelRange_write(obj);
25423         return nativeResponseValue;
25424 }
25425         // struct LDKCVec_u8Z GossipTimestampFilter_write(const struct LDKGossipTimestampFilter *NONNULL_PTR obj);
25426 /* @internal */
25427 export function GossipTimestampFilter_write(obj: number): number {
25428         if(!isWasmInitialized) {
25429                 throw new Error("initializeWasm() must be awaited first!");
25430         }
25431         const nativeResponseValue = wasm.TS_GossipTimestampFilter_write(obj);
25432         return nativeResponseValue;
25433 }
25434         // struct LDKCResult_GossipTimestampFilterDecodeErrorZ GossipTimestampFilter_read(struct LDKu8slice ser);
25435 /* @internal */
25436 export function GossipTimestampFilter_read(ser: number): number {
25437         if(!isWasmInitialized) {
25438                 throw new Error("initializeWasm() must be awaited first!");
25439         }
25440         const nativeResponseValue = wasm.TS_GossipTimestampFilter_read(ser);
25441         return nativeResponseValue;
25442 }
25443         // void CustomMessageHandler_free(struct LDKCustomMessageHandler this_ptr);
25444 /* @internal */
25445 export function CustomMessageHandler_free(this_ptr: number): void {
25446         if(!isWasmInitialized) {
25447                 throw new Error("initializeWasm() must be awaited first!");
25448         }
25449         const nativeResponseValue = wasm.TS_CustomMessageHandler_free(this_ptr);
25450         // debug statements here
25451 }
25452         // void IgnoringMessageHandler_free(struct LDKIgnoringMessageHandler this_obj);
25453 /* @internal */
25454 export function IgnoringMessageHandler_free(this_obj: number): void {
25455         if(!isWasmInitialized) {
25456                 throw new Error("initializeWasm() must be awaited first!");
25457         }
25458         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_free(this_obj);
25459         // debug statements here
25460 }
25461         // MUST_USE_RES struct LDKIgnoringMessageHandler IgnoringMessageHandler_new(void);
25462 /* @internal */
25463 export function IgnoringMessageHandler_new(): number {
25464         if(!isWasmInitialized) {
25465                 throw new Error("initializeWasm() must be awaited first!");
25466         }
25467         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_new();
25468         return nativeResponseValue;
25469 }
25470         // struct LDKMessageSendEventsProvider IgnoringMessageHandler_as_MessageSendEventsProvider(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
25471 /* @internal */
25472 export function IgnoringMessageHandler_as_MessageSendEventsProvider(this_arg: number): number {
25473         if(!isWasmInitialized) {
25474                 throw new Error("initializeWasm() must be awaited first!");
25475         }
25476         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_as_MessageSendEventsProvider(this_arg);
25477         return nativeResponseValue;
25478 }
25479         // struct LDKRoutingMessageHandler IgnoringMessageHandler_as_RoutingMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
25480 /* @internal */
25481 export function IgnoringMessageHandler_as_RoutingMessageHandler(this_arg: number): number {
25482         if(!isWasmInitialized) {
25483                 throw new Error("initializeWasm() must be awaited first!");
25484         }
25485         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_as_RoutingMessageHandler(this_arg);
25486         return nativeResponseValue;
25487 }
25488         // struct LDKCustomMessageReader IgnoringMessageHandler_as_CustomMessageReader(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
25489 /* @internal */
25490 export function IgnoringMessageHandler_as_CustomMessageReader(this_arg: number): number {
25491         if(!isWasmInitialized) {
25492                 throw new Error("initializeWasm() must be awaited first!");
25493         }
25494         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_as_CustomMessageReader(this_arg);
25495         return nativeResponseValue;
25496 }
25497         // struct LDKCustomMessageHandler IgnoringMessageHandler_as_CustomMessageHandler(const struct LDKIgnoringMessageHandler *NONNULL_PTR this_arg);
25498 /* @internal */
25499 export function IgnoringMessageHandler_as_CustomMessageHandler(this_arg: number): number {
25500         if(!isWasmInitialized) {
25501                 throw new Error("initializeWasm() must be awaited first!");
25502         }
25503         const nativeResponseValue = wasm.TS_IgnoringMessageHandler_as_CustomMessageHandler(this_arg);
25504         return nativeResponseValue;
25505 }
25506         // void ErroringMessageHandler_free(struct LDKErroringMessageHandler this_obj);
25507 /* @internal */
25508 export function ErroringMessageHandler_free(this_obj: number): void {
25509         if(!isWasmInitialized) {
25510                 throw new Error("initializeWasm() must be awaited first!");
25511         }
25512         const nativeResponseValue = wasm.TS_ErroringMessageHandler_free(this_obj);
25513         // debug statements here
25514 }
25515         // MUST_USE_RES struct LDKErroringMessageHandler ErroringMessageHandler_new(void);
25516 /* @internal */
25517 export function ErroringMessageHandler_new(): number {
25518         if(!isWasmInitialized) {
25519                 throw new Error("initializeWasm() must be awaited first!");
25520         }
25521         const nativeResponseValue = wasm.TS_ErroringMessageHandler_new();
25522         return nativeResponseValue;
25523 }
25524         // struct LDKMessageSendEventsProvider ErroringMessageHandler_as_MessageSendEventsProvider(const struct LDKErroringMessageHandler *NONNULL_PTR this_arg);
25525 /* @internal */
25526 export function ErroringMessageHandler_as_MessageSendEventsProvider(this_arg: number): number {
25527         if(!isWasmInitialized) {
25528                 throw new Error("initializeWasm() must be awaited first!");
25529         }
25530         const nativeResponseValue = wasm.TS_ErroringMessageHandler_as_MessageSendEventsProvider(this_arg);
25531         return nativeResponseValue;
25532 }
25533         // struct LDKChannelMessageHandler ErroringMessageHandler_as_ChannelMessageHandler(const struct LDKErroringMessageHandler *NONNULL_PTR this_arg);
25534 /* @internal */
25535 export function ErroringMessageHandler_as_ChannelMessageHandler(this_arg: number): number {
25536         if(!isWasmInitialized) {
25537                 throw new Error("initializeWasm() must be awaited first!");
25538         }
25539         const nativeResponseValue = wasm.TS_ErroringMessageHandler_as_ChannelMessageHandler(this_arg);
25540         return nativeResponseValue;
25541 }
25542         // void MessageHandler_free(struct LDKMessageHandler this_obj);
25543 /* @internal */
25544 export function MessageHandler_free(this_obj: number): void {
25545         if(!isWasmInitialized) {
25546                 throw new Error("initializeWasm() must be awaited first!");
25547         }
25548         const nativeResponseValue = wasm.TS_MessageHandler_free(this_obj);
25549         // debug statements here
25550 }
25551         // const struct LDKChannelMessageHandler *MessageHandler_get_chan_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
25552 /* @internal */
25553 export function MessageHandler_get_chan_handler(this_ptr: number): number {
25554         if(!isWasmInitialized) {
25555                 throw new Error("initializeWasm() must be awaited first!");
25556         }
25557         const nativeResponseValue = wasm.TS_MessageHandler_get_chan_handler(this_ptr);
25558         return nativeResponseValue;
25559 }
25560         // void MessageHandler_set_chan_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKChannelMessageHandler val);
25561 /* @internal */
25562 export function MessageHandler_set_chan_handler(this_ptr: number, val: number): void {
25563         if(!isWasmInitialized) {
25564                 throw new Error("initializeWasm() must be awaited first!");
25565         }
25566         const nativeResponseValue = wasm.TS_MessageHandler_set_chan_handler(this_ptr, val);
25567         // debug statements here
25568 }
25569         // const struct LDKRoutingMessageHandler *MessageHandler_get_route_handler(const struct LDKMessageHandler *NONNULL_PTR this_ptr);
25570 /* @internal */
25571 export function MessageHandler_get_route_handler(this_ptr: number): number {
25572         if(!isWasmInitialized) {
25573                 throw new Error("initializeWasm() must be awaited first!");
25574         }
25575         const nativeResponseValue = wasm.TS_MessageHandler_get_route_handler(this_ptr);
25576         return nativeResponseValue;
25577 }
25578         // void MessageHandler_set_route_handler(struct LDKMessageHandler *NONNULL_PTR this_ptr, struct LDKRoutingMessageHandler val);
25579 /* @internal */
25580 export function MessageHandler_set_route_handler(this_ptr: number, val: number): void {
25581         if(!isWasmInitialized) {
25582                 throw new Error("initializeWasm() must be awaited first!");
25583         }
25584         const nativeResponseValue = wasm.TS_MessageHandler_set_route_handler(this_ptr, val);
25585         // debug statements here
25586 }
25587         // MUST_USE_RES struct LDKMessageHandler MessageHandler_new(struct LDKChannelMessageHandler chan_handler_arg, struct LDKRoutingMessageHandler route_handler_arg);
25588 /* @internal */
25589 export function MessageHandler_new(chan_handler_arg: number, route_handler_arg: number): number {
25590         if(!isWasmInitialized) {
25591                 throw new Error("initializeWasm() must be awaited first!");
25592         }
25593         const nativeResponseValue = wasm.TS_MessageHandler_new(chan_handler_arg, route_handler_arg);
25594         return nativeResponseValue;
25595 }
25596         // uintptr_t SocketDescriptor_clone_ptr(LDKSocketDescriptor *NONNULL_PTR arg);
25597 /* @internal */
25598 export function SocketDescriptor_clone_ptr(arg: number): number {
25599         if(!isWasmInitialized) {
25600                 throw new Error("initializeWasm() must be awaited first!");
25601         }
25602         const nativeResponseValue = wasm.TS_SocketDescriptor_clone_ptr(arg);
25603         return nativeResponseValue;
25604 }
25605         // struct LDKSocketDescriptor SocketDescriptor_clone(const struct LDKSocketDescriptor *NONNULL_PTR orig);
25606 /* @internal */
25607 export function SocketDescriptor_clone(orig: number): number {
25608         if(!isWasmInitialized) {
25609                 throw new Error("initializeWasm() must be awaited first!");
25610         }
25611         const nativeResponseValue = wasm.TS_SocketDescriptor_clone(orig);
25612         return nativeResponseValue;
25613 }
25614         // void SocketDescriptor_free(struct LDKSocketDescriptor this_ptr);
25615 /* @internal */
25616 export function SocketDescriptor_free(this_ptr: number): void {
25617         if(!isWasmInitialized) {
25618                 throw new Error("initializeWasm() must be awaited first!");
25619         }
25620         const nativeResponseValue = wasm.TS_SocketDescriptor_free(this_ptr);
25621         // debug statements here
25622 }
25623         // void PeerHandleError_free(struct LDKPeerHandleError this_obj);
25624 /* @internal */
25625 export function PeerHandleError_free(this_obj: number): void {
25626         if(!isWasmInitialized) {
25627                 throw new Error("initializeWasm() must be awaited first!");
25628         }
25629         const nativeResponseValue = wasm.TS_PeerHandleError_free(this_obj);
25630         // debug statements here
25631 }
25632         // bool PeerHandleError_get_no_connection_possible(const struct LDKPeerHandleError *NONNULL_PTR this_ptr);
25633 /* @internal */
25634 export function PeerHandleError_get_no_connection_possible(this_ptr: number): boolean {
25635         if(!isWasmInitialized) {
25636                 throw new Error("initializeWasm() must be awaited first!");
25637         }
25638         const nativeResponseValue = wasm.TS_PeerHandleError_get_no_connection_possible(this_ptr);
25639         return nativeResponseValue;
25640 }
25641         // void PeerHandleError_set_no_connection_possible(struct LDKPeerHandleError *NONNULL_PTR this_ptr, bool val);
25642 /* @internal */
25643 export function PeerHandleError_set_no_connection_possible(this_ptr: number, val: boolean): void {
25644         if(!isWasmInitialized) {
25645                 throw new Error("initializeWasm() must be awaited first!");
25646         }
25647         const nativeResponseValue = wasm.TS_PeerHandleError_set_no_connection_possible(this_ptr, val);
25648         // debug statements here
25649 }
25650         // MUST_USE_RES struct LDKPeerHandleError PeerHandleError_new(bool no_connection_possible_arg);
25651 /* @internal */
25652 export function PeerHandleError_new(no_connection_possible_arg: boolean): number {
25653         if(!isWasmInitialized) {
25654                 throw new Error("initializeWasm() must be awaited first!");
25655         }
25656         const nativeResponseValue = wasm.TS_PeerHandleError_new(no_connection_possible_arg);
25657         return nativeResponseValue;
25658 }
25659         // uintptr_t PeerHandleError_clone_ptr(LDKPeerHandleError *NONNULL_PTR arg);
25660 /* @internal */
25661 export function PeerHandleError_clone_ptr(arg: number): number {
25662         if(!isWasmInitialized) {
25663                 throw new Error("initializeWasm() must be awaited first!");
25664         }
25665         const nativeResponseValue = wasm.TS_PeerHandleError_clone_ptr(arg);
25666         return nativeResponseValue;
25667 }
25668         // struct LDKPeerHandleError PeerHandleError_clone(const struct LDKPeerHandleError *NONNULL_PTR orig);
25669 /* @internal */
25670 export function PeerHandleError_clone(orig: number): number {
25671         if(!isWasmInitialized) {
25672                 throw new Error("initializeWasm() must be awaited first!");
25673         }
25674         const nativeResponseValue = wasm.TS_PeerHandleError_clone(orig);
25675         return nativeResponseValue;
25676 }
25677         // void PeerManager_free(struct LDKPeerManager this_obj);
25678 /* @internal */
25679 export function PeerManager_free(this_obj: number): void {
25680         if(!isWasmInitialized) {
25681                 throw new Error("initializeWasm() must be awaited first!");
25682         }
25683         const nativeResponseValue = wasm.TS_PeerManager_free(this_obj);
25684         // debug statements here
25685 }
25686         // MUST_USE_RES struct LDKPeerManager PeerManager_new(struct LDKMessageHandler message_handler, struct LDKSecretKey our_node_secret, const uint8_t (*ephemeral_random_data)[32], struct LDKLogger logger, struct LDKCustomMessageHandler custom_message_handler);
25687 /* @internal */
25688 export function PeerManager_new(message_handler: number, our_node_secret: number, ephemeral_random_data: number, logger: number, custom_message_handler: number): number {
25689         if(!isWasmInitialized) {
25690                 throw new Error("initializeWasm() must be awaited first!");
25691         }
25692         const nativeResponseValue = wasm.TS_PeerManager_new(message_handler, our_node_secret, ephemeral_random_data, logger, custom_message_handler);
25693         return nativeResponseValue;
25694 }
25695         // MUST_USE_RES struct LDKCVec_PublicKeyZ PeerManager_get_peer_node_ids(const struct LDKPeerManager *NONNULL_PTR this_arg);
25696 /* @internal */
25697 export function PeerManager_get_peer_node_ids(this_arg: number): number {
25698         if(!isWasmInitialized) {
25699                 throw new Error("initializeWasm() must be awaited first!");
25700         }
25701         const nativeResponseValue = wasm.TS_PeerManager_get_peer_node_ids(this_arg);
25702         return nativeResponseValue;
25703 }
25704         // MUST_USE_RES struct LDKCResult_CVec_u8ZPeerHandleErrorZ PeerManager_new_outbound_connection(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKPublicKey their_node_id, struct LDKSocketDescriptor descriptor, struct LDKCOption_NetAddressZ remote_network_address);
25705 /* @internal */
25706 export function PeerManager_new_outbound_connection(this_arg: number, their_node_id: number, descriptor: number, remote_network_address: number): number {
25707         if(!isWasmInitialized) {
25708                 throw new Error("initializeWasm() must be awaited first!");
25709         }
25710         const nativeResponseValue = wasm.TS_PeerManager_new_outbound_connection(this_arg, their_node_id, descriptor, remote_network_address);
25711         return nativeResponseValue;
25712 }
25713         // MUST_USE_RES struct LDKCResult_NonePeerHandleErrorZ PeerManager_new_inbound_connection(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor descriptor, struct LDKCOption_NetAddressZ remote_network_address);
25714 /* @internal */
25715 export function PeerManager_new_inbound_connection(this_arg: number, descriptor: number, remote_network_address: number): number {
25716         if(!isWasmInitialized) {
25717                 throw new Error("initializeWasm() must be awaited first!");
25718         }
25719         const nativeResponseValue = wasm.TS_PeerManager_new_inbound_connection(this_arg, descriptor, remote_network_address);
25720         return nativeResponseValue;
25721 }
25722         // MUST_USE_RES struct LDKCResult_NonePeerHandleErrorZ PeerManager_write_buffer_space_avail(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor *NONNULL_PTR descriptor);
25723 /* @internal */
25724 export function PeerManager_write_buffer_space_avail(this_arg: number, descriptor: number): number {
25725         if(!isWasmInitialized) {
25726                 throw new Error("initializeWasm() must be awaited first!");
25727         }
25728         const nativeResponseValue = wasm.TS_PeerManager_write_buffer_space_avail(this_arg, descriptor);
25729         return nativeResponseValue;
25730 }
25731         // MUST_USE_RES struct LDKCResult_boolPeerHandleErrorZ PeerManager_read_event(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKSocketDescriptor *NONNULL_PTR peer_descriptor, struct LDKu8slice data);
25732 /* @internal */
25733 export function PeerManager_read_event(this_arg: number, peer_descriptor: number, data: number): number {
25734         if(!isWasmInitialized) {
25735                 throw new Error("initializeWasm() must be awaited first!");
25736         }
25737         const nativeResponseValue = wasm.TS_PeerManager_read_event(this_arg, peer_descriptor, data);
25738         return nativeResponseValue;
25739 }
25740         // void PeerManager_process_events(const struct LDKPeerManager *NONNULL_PTR this_arg);
25741 /* @internal */
25742 export function PeerManager_process_events(this_arg: number): void {
25743         if(!isWasmInitialized) {
25744                 throw new Error("initializeWasm() must be awaited first!");
25745         }
25746         const nativeResponseValue = wasm.TS_PeerManager_process_events(this_arg);
25747         // debug statements here
25748 }
25749         // void PeerManager_socket_disconnected(const struct LDKPeerManager *NONNULL_PTR this_arg, const struct LDKSocketDescriptor *NONNULL_PTR descriptor);
25750 /* @internal */
25751 export function PeerManager_socket_disconnected(this_arg: number, descriptor: number): void {
25752         if(!isWasmInitialized) {
25753                 throw new Error("initializeWasm() must be awaited first!");
25754         }
25755         const nativeResponseValue = wasm.TS_PeerManager_socket_disconnected(this_arg, descriptor);
25756         // debug statements here
25757 }
25758         // void PeerManager_disconnect_by_node_id(const struct LDKPeerManager *NONNULL_PTR this_arg, struct LDKPublicKey node_id, bool no_connection_possible);
25759 /* @internal */
25760 export function PeerManager_disconnect_by_node_id(this_arg: number, node_id: number, no_connection_possible: boolean): void {
25761         if(!isWasmInitialized) {
25762                 throw new Error("initializeWasm() must be awaited first!");
25763         }
25764         const nativeResponseValue = wasm.TS_PeerManager_disconnect_by_node_id(this_arg, node_id, no_connection_possible);
25765         // debug statements here
25766 }
25767         // void PeerManager_disconnect_all_peers(const struct LDKPeerManager *NONNULL_PTR this_arg);
25768 /* @internal */
25769 export function PeerManager_disconnect_all_peers(this_arg: number): void {
25770         if(!isWasmInitialized) {
25771                 throw new Error("initializeWasm() must be awaited first!");
25772         }
25773         const nativeResponseValue = wasm.TS_PeerManager_disconnect_all_peers(this_arg);
25774         // debug statements here
25775 }
25776         // void PeerManager_timer_tick_occurred(const struct LDKPeerManager *NONNULL_PTR this_arg);
25777 /* @internal */
25778 export function PeerManager_timer_tick_occurred(this_arg: number): void {
25779         if(!isWasmInitialized) {
25780                 throw new Error("initializeWasm() must be awaited first!");
25781         }
25782         const nativeResponseValue = wasm.TS_PeerManager_timer_tick_occurred(this_arg);
25783         // debug statements here
25784 }
25785         // uint64_t htlc_success_tx_weight(bool opt_anchors);
25786 /* @internal */
25787 export function htlc_success_tx_weight(opt_anchors: boolean): bigint {
25788         if(!isWasmInitialized) {
25789                 throw new Error("initializeWasm() must be awaited first!");
25790         }
25791         const nativeResponseValue = wasm.TS_htlc_success_tx_weight(opt_anchors);
25792         return nativeResponseValue;
25793 }
25794         // uint64_t htlc_timeout_tx_weight(bool opt_anchors);
25795 /* @internal */
25796 export function htlc_timeout_tx_weight(opt_anchors: boolean): bigint {
25797         if(!isWasmInitialized) {
25798                 throw new Error("initializeWasm() must be awaited first!");
25799         }
25800         const nativeResponseValue = wasm.TS_htlc_timeout_tx_weight(opt_anchors);
25801         return nativeResponseValue;
25802 }
25803         // struct LDKThirtyTwoBytes build_commitment_secret(const uint8_t (*commitment_seed)[32], uint64_t idx);
25804 /* @internal */
25805 export function build_commitment_secret(commitment_seed: number, idx: bigint): number {
25806         if(!isWasmInitialized) {
25807                 throw new Error("initializeWasm() must be awaited first!");
25808         }
25809         const nativeResponseValue = wasm.TS_build_commitment_secret(commitment_seed, idx);
25810         return nativeResponseValue;
25811 }
25812         // struct LDKTransaction build_closing_transaction(uint64_t to_holder_value_sat, uint64_t to_counterparty_value_sat, struct LDKCVec_u8Z to_holder_script, struct LDKCVec_u8Z to_counterparty_script, struct LDKOutPoint funding_outpoint);
25813 /* @internal */
25814 export function build_closing_transaction(to_holder_value_sat: bigint, to_counterparty_value_sat: bigint, to_holder_script: number, to_counterparty_script: number, funding_outpoint: number): number {
25815         if(!isWasmInitialized) {
25816                 throw new Error("initializeWasm() must be awaited first!");
25817         }
25818         const nativeResponseValue = wasm.TS_build_closing_transaction(to_holder_value_sat, to_counterparty_value_sat, to_holder_script, to_counterparty_script, funding_outpoint);
25819         return nativeResponseValue;
25820 }
25821         // void CounterpartyCommitmentSecrets_free(struct LDKCounterpartyCommitmentSecrets this_obj);
25822 /* @internal */
25823 export function CounterpartyCommitmentSecrets_free(this_obj: number): void {
25824         if(!isWasmInitialized) {
25825                 throw new Error("initializeWasm() must be awaited first!");
25826         }
25827         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_free(this_obj);
25828         // debug statements here
25829 }
25830         // uintptr_t CounterpartyCommitmentSecrets_clone_ptr(LDKCounterpartyCommitmentSecrets *NONNULL_PTR arg);
25831 /* @internal */
25832 export function CounterpartyCommitmentSecrets_clone_ptr(arg: number): number {
25833         if(!isWasmInitialized) {
25834                 throw new Error("initializeWasm() must be awaited first!");
25835         }
25836         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_clone_ptr(arg);
25837         return nativeResponseValue;
25838 }
25839         // struct LDKCounterpartyCommitmentSecrets CounterpartyCommitmentSecrets_clone(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR orig);
25840 /* @internal */
25841 export function CounterpartyCommitmentSecrets_clone(orig: number): number {
25842         if(!isWasmInitialized) {
25843                 throw new Error("initializeWasm() must be awaited first!");
25844         }
25845         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_clone(orig);
25846         return nativeResponseValue;
25847 }
25848         // MUST_USE_RES struct LDKCounterpartyCommitmentSecrets CounterpartyCommitmentSecrets_new(void);
25849 /* @internal */
25850 export function CounterpartyCommitmentSecrets_new(): number {
25851         if(!isWasmInitialized) {
25852                 throw new Error("initializeWasm() must be awaited first!");
25853         }
25854         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_new();
25855         return nativeResponseValue;
25856 }
25857         // MUST_USE_RES uint64_t CounterpartyCommitmentSecrets_get_min_seen_secret(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg);
25858 /* @internal */
25859 export function CounterpartyCommitmentSecrets_get_min_seen_secret(this_arg: number): bigint {
25860         if(!isWasmInitialized) {
25861                 throw new Error("initializeWasm() must be awaited first!");
25862         }
25863         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_get_min_seen_secret(this_arg);
25864         return nativeResponseValue;
25865 }
25866         // MUST_USE_RES struct LDKCResult_NoneNoneZ CounterpartyCommitmentSecrets_provide_secret(struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg, uint64_t idx, struct LDKThirtyTwoBytes secret);
25867 /* @internal */
25868 export function CounterpartyCommitmentSecrets_provide_secret(this_arg: number, idx: bigint, secret: number): number {
25869         if(!isWasmInitialized) {
25870                 throw new Error("initializeWasm() must be awaited first!");
25871         }
25872         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_provide_secret(this_arg, idx, secret);
25873         return nativeResponseValue;
25874 }
25875         // MUST_USE_RES struct LDKThirtyTwoBytes CounterpartyCommitmentSecrets_get_secret(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR this_arg, uint64_t idx);
25876 /* @internal */
25877 export function CounterpartyCommitmentSecrets_get_secret(this_arg: number, idx: bigint): number {
25878         if(!isWasmInitialized) {
25879                 throw new Error("initializeWasm() must be awaited first!");
25880         }
25881         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_get_secret(this_arg, idx);
25882         return nativeResponseValue;
25883 }
25884         // struct LDKCVec_u8Z CounterpartyCommitmentSecrets_write(const struct LDKCounterpartyCommitmentSecrets *NONNULL_PTR obj);
25885 /* @internal */
25886 export function CounterpartyCommitmentSecrets_write(obj: number): number {
25887         if(!isWasmInitialized) {
25888                 throw new Error("initializeWasm() must be awaited first!");
25889         }
25890         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_write(obj);
25891         return nativeResponseValue;
25892 }
25893         // struct LDKCResult_CounterpartyCommitmentSecretsDecodeErrorZ CounterpartyCommitmentSecrets_read(struct LDKu8slice ser);
25894 /* @internal */
25895 export function CounterpartyCommitmentSecrets_read(ser: number): number {
25896         if(!isWasmInitialized) {
25897                 throw new Error("initializeWasm() must be awaited first!");
25898         }
25899         const nativeResponseValue = wasm.TS_CounterpartyCommitmentSecrets_read(ser);
25900         return nativeResponseValue;
25901 }
25902         // struct LDKCResult_SecretKeyErrorZ derive_private_key(struct LDKPublicKey per_commitment_point, const uint8_t (*base_secret)[32]);
25903 /* @internal */
25904 export function derive_private_key(per_commitment_point: number, base_secret: number): number {
25905         if(!isWasmInitialized) {
25906                 throw new Error("initializeWasm() must be awaited first!");
25907         }
25908         const nativeResponseValue = wasm.TS_derive_private_key(per_commitment_point, base_secret);
25909         return nativeResponseValue;
25910 }
25911         // struct LDKCResult_PublicKeyErrorZ derive_public_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey base_point);
25912 /* @internal */
25913 export function derive_public_key(per_commitment_point: number, base_point: number): number {
25914         if(!isWasmInitialized) {
25915                 throw new Error("initializeWasm() must be awaited first!");
25916         }
25917         const nativeResponseValue = wasm.TS_derive_public_key(per_commitment_point, base_point);
25918         return nativeResponseValue;
25919 }
25920         // struct LDKCResult_SecretKeyErrorZ derive_private_revocation_key(const uint8_t (*per_commitment_secret)[32], const uint8_t (*countersignatory_revocation_base_secret)[32]);
25921 /* @internal */
25922 export function derive_private_revocation_key(per_commitment_secret: number, countersignatory_revocation_base_secret: number): number {
25923         if(!isWasmInitialized) {
25924                 throw new Error("initializeWasm() must be awaited first!");
25925         }
25926         const nativeResponseValue = wasm.TS_derive_private_revocation_key(per_commitment_secret, countersignatory_revocation_base_secret);
25927         return nativeResponseValue;
25928 }
25929         // struct LDKCResult_PublicKeyErrorZ derive_public_revocation_key(struct LDKPublicKey per_commitment_point, struct LDKPublicKey countersignatory_revocation_base_point);
25930 /* @internal */
25931 export function derive_public_revocation_key(per_commitment_point: number, countersignatory_revocation_base_point: number): number {
25932         if(!isWasmInitialized) {
25933                 throw new Error("initializeWasm() must be awaited first!");
25934         }
25935         const nativeResponseValue = wasm.TS_derive_public_revocation_key(per_commitment_point, countersignatory_revocation_base_point);
25936         return nativeResponseValue;
25937 }
25938         // void TxCreationKeys_free(struct LDKTxCreationKeys this_obj);
25939 /* @internal */
25940 export function TxCreationKeys_free(this_obj: number): void {
25941         if(!isWasmInitialized) {
25942                 throw new Error("initializeWasm() must be awaited first!");
25943         }
25944         const nativeResponseValue = wasm.TS_TxCreationKeys_free(this_obj);
25945         // debug statements here
25946 }
25947         // struct LDKPublicKey TxCreationKeys_get_per_commitment_point(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
25948 /* @internal */
25949 export function TxCreationKeys_get_per_commitment_point(this_ptr: number): number {
25950         if(!isWasmInitialized) {
25951                 throw new Error("initializeWasm() must be awaited first!");
25952         }
25953         const nativeResponseValue = wasm.TS_TxCreationKeys_get_per_commitment_point(this_ptr);
25954         return nativeResponseValue;
25955 }
25956         // void TxCreationKeys_set_per_commitment_point(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
25957 /* @internal */
25958 export function TxCreationKeys_set_per_commitment_point(this_ptr: number, val: number): void {
25959         if(!isWasmInitialized) {
25960                 throw new Error("initializeWasm() must be awaited first!");
25961         }
25962         const nativeResponseValue = wasm.TS_TxCreationKeys_set_per_commitment_point(this_ptr, val);
25963         // debug statements here
25964 }
25965         // struct LDKPublicKey TxCreationKeys_get_revocation_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
25966 /* @internal */
25967 export function TxCreationKeys_get_revocation_key(this_ptr: number): number {
25968         if(!isWasmInitialized) {
25969                 throw new Error("initializeWasm() must be awaited first!");
25970         }
25971         const nativeResponseValue = wasm.TS_TxCreationKeys_get_revocation_key(this_ptr);
25972         return nativeResponseValue;
25973 }
25974         // void TxCreationKeys_set_revocation_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
25975 /* @internal */
25976 export function TxCreationKeys_set_revocation_key(this_ptr: number, val: number): void {
25977         if(!isWasmInitialized) {
25978                 throw new Error("initializeWasm() must be awaited first!");
25979         }
25980         const nativeResponseValue = wasm.TS_TxCreationKeys_set_revocation_key(this_ptr, val);
25981         // debug statements here
25982 }
25983         // struct LDKPublicKey TxCreationKeys_get_broadcaster_htlc_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
25984 /* @internal */
25985 export function TxCreationKeys_get_broadcaster_htlc_key(this_ptr: number): number {
25986         if(!isWasmInitialized) {
25987                 throw new Error("initializeWasm() must be awaited first!");
25988         }
25989         const nativeResponseValue = wasm.TS_TxCreationKeys_get_broadcaster_htlc_key(this_ptr);
25990         return nativeResponseValue;
25991 }
25992         // void TxCreationKeys_set_broadcaster_htlc_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
25993 /* @internal */
25994 export function TxCreationKeys_set_broadcaster_htlc_key(this_ptr: number, val: number): void {
25995         if(!isWasmInitialized) {
25996                 throw new Error("initializeWasm() must be awaited first!");
25997         }
25998         const nativeResponseValue = wasm.TS_TxCreationKeys_set_broadcaster_htlc_key(this_ptr, val);
25999         // debug statements here
26000 }
26001         // struct LDKPublicKey TxCreationKeys_get_countersignatory_htlc_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
26002 /* @internal */
26003 export function TxCreationKeys_get_countersignatory_htlc_key(this_ptr: number): number {
26004         if(!isWasmInitialized) {
26005                 throw new Error("initializeWasm() must be awaited first!");
26006         }
26007         const nativeResponseValue = wasm.TS_TxCreationKeys_get_countersignatory_htlc_key(this_ptr);
26008         return nativeResponseValue;
26009 }
26010         // void TxCreationKeys_set_countersignatory_htlc_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26011 /* @internal */
26012 export function TxCreationKeys_set_countersignatory_htlc_key(this_ptr: number, val: number): void {
26013         if(!isWasmInitialized) {
26014                 throw new Error("initializeWasm() must be awaited first!");
26015         }
26016         const nativeResponseValue = wasm.TS_TxCreationKeys_set_countersignatory_htlc_key(this_ptr, val);
26017         // debug statements here
26018 }
26019         // struct LDKPublicKey TxCreationKeys_get_broadcaster_delayed_payment_key(const struct LDKTxCreationKeys *NONNULL_PTR this_ptr);
26020 /* @internal */
26021 export function TxCreationKeys_get_broadcaster_delayed_payment_key(this_ptr: number): number {
26022         if(!isWasmInitialized) {
26023                 throw new Error("initializeWasm() must be awaited first!");
26024         }
26025         const nativeResponseValue = wasm.TS_TxCreationKeys_get_broadcaster_delayed_payment_key(this_ptr);
26026         return nativeResponseValue;
26027 }
26028         // void TxCreationKeys_set_broadcaster_delayed_payment_key(struct LDKTxCreationKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26029 /* @internal */
26030 export function TxCreationKeys_set_broadcaster_delayed_payment_key(this_ptr: number, val: number): void {
26031         if(!isWasmInitialized) {
26032                 throw new Error("initializeWasm() must be awaited first!");
26033         }
26034         const nativeResponseValue = wasm.TS_TxCreationKeys_set_broadcaster_delayed_payment_key(this_ptr, val);
26035         // debug statements here
26036 }
26037         // MUST_USE_RES struct LDKTxCreationKeys TxCreationKeys_new(struct LDKPublicKey per_commitment_point_arg, struct LDKPublicKey revocation_key_arg, struct LDKPublicKey broadcaster_htlc_key_arg, struct LDKPublicKey countersignatory_htlc_key_arg, struct LDKPublicKey broadcaster_delayed_payment_key_arg);
26038 /* @internal */
26039 export function TxCreationKeys_new(per_commitment_point_arg: number, revocation_key_arg: number, broadcaster_htlc_key_arg: number, countersignatory_htlc_key_arg: number, broadcaster_delayed_payment_key_arg: number): number {
26040         if(!isWasmInitialized) {
26041                 throw new Error("initializeWasm() must be awaited first!");
26042         }
26043         const nativeResponseValue = wasm.TS_TxCreationKeys_new(per_commitment_point_arg, revocation_key_arg, broadcaster_htlc_key_arg, countersignatory_htlc_key_arg, broadcaster_delayed_payment_key_arg);
26044         return nativeResponseValue;
26045 }
26046         // uintptr_t TxCreationKeys_clone_ptr(LDKTxCreationKeys *NONNULL_PTR arg);
26047 /* @internal */
26048 export function TxCreationKeys_clone_ptr(arg: number): number {
26049         if(!isWasmInitialized) {
26050                 throw new Error("initializeWasm() must be awaited first!");
26051         }
26052         const nativeResponseValue = wasm.TS_TxCreationKeys_clone_ptr(arg);
26053         return nativeResponseValue;
26054 }
26055         // struct LDKTxCreationKeys TxCreationKeys_clone(const struct LDKTxCreationKeys *NONNULL_PTR orig);
26056 /* @internal */
26057 export function TxCreationKeys_clone(orig: number): number {
26058         if(!isWasmInitialized) {
26059                 throw new Error("initializeWasm() must be awaited first!");
26060         }
26061         const nativeResponseValue = wasm.TS_TxCreationKeys_clone(orig);
26062         return nativeResponseValue;
26063 }
26064         // struct LDKCVec_u8Z TxCreationKeys_write(const struct LDKTxCreationKeys *NONNULL_PTR obj);
26065 /* @internal */
26066 export function TxCreationKeys_write(obj: number): number {
26067         if(!isWasmInitialized) {
26068                 throw new Error("initializeWasm() must be awaited first!");
26069         }
26070         const nativeResponseValue = wasm.TS_TxCreationKeys_write(obj);
26071         return nativeResponseValue;
26072 }
26073         // struct LDKCResult_TxCreationKeysDecodeErrorZ TxCreationKeys_read(struct LDKu8slice ser);
26074 /* @internal */
26075 export function TxCreationKeys_read(ser: number): number {
26076         if(!isWasmInitialized) {
26077                 throw new Error("initializeWasm() must be awaited first!");
26078         }
26079         const nativeResponseValue = wasm.TS_TxCreationKeys_read(ser);
26080         return nativeResponseValue;
26081 }
26082         // void ChannelPublicKeys_free(struct LDKChannelPublicKeys this_obj);
26083 /* @internal */
26084 export function ChannelPublicKeys_free(this_obj: number): void {
26085         if(!isWasmInitialized) {
26086                 throw new Error("initializeWasm() must be awaited first!");
26087         }
26088         const nativeResponseValue = wasm.TS_ChannelPublicKeys_free(this_obj);
26089         // debug statements here
26090 }
26091         // struct LDKPublicKey ChannelPublicKeys_get_funding_pubkey(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
26092 /* @internal */
26093 export function ChannelPublicKeys_get_funding_pubkey(this_ptr: number): number {
26094         if(!isWasmInitialized) {
26095                 throw new Error("initializeWasm() must be awaited first!");
26096         }
26097         const nativeResponseValue = wasm.TS_ChannelPublicKeys_get_funding_pubkey(this_ptr);
26098         return nativeResponseValue;
26099 }
26100         // void ChannelPublicKeys_set_funding_pubkey(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26101 /* @internal */
26102 export function ChannelPublicKeys_set_funding_pubkey(this_ptr: number, val: number): void {
26103         if(!isWasmInitialized) {
26104                 throw new Error("initializeWasm() must be awaited first!");
26105         }
26106         const nativeResponseValue = wasm.TS_ChannelPublicKeys_set_funding_pubkey(this_ptr, val);
26107         // debug statements here
26108 }
26109         // struct LDKPublicKey ChannelPublicKeys_get_revocation_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
26110 /* @internal */
26111 export function ChannelPublicKeys_get_revocation_basepoint(this_ptr: number): number {
26112         if(!isWasmInitialized) {
26113                 throw new Error("initializeWasm() must be awaited first!");
26114         }
26115         const nativeResponseValue = wasm.TS_ChannelPublicKeys_get_revocation_basepoint(this_ptr);
26116         return nativeResponseValue;
26117 }
26118         // void ChannelPublicKeys_set_revocation_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26119 /* @internal */
26120 export function ChannelPublicKeys_set_revocation_basepoint(this_ptr: number, val: number): void {
26121         if(!isWasmInitialized) {
26122                 throw new Error("initializeWasm() must be awaited first!");
26123         }
26124         const nativeResponseValue = wasm.TS_ChannelPublicKeys_set_revocation_basepoint(this_ptr, val);
26125         // debug statements here
26126 }
26127         // struct LDKPublicKey ChannelPublicKeys_get_payment_point(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
26128 /* @internal */
26129 export function ChannelPublicKeys_get_payment_point(this_ptr: number): number {
26130         if(!isWasmInitialized) {
26131                 throw new Error("initializeWasm() must be awaited first!");
26132         }
26133         const nativeResponseValue = wasm.TS_ChannelPublicKeys_get_payment_point(this_ptr);
26134         return nativeResponseValue;
26135 }
26136         // void ChannelPublicKeys_set_payment_point(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26137 /* @internal */
26138 export function ChannelPublicKeys_set_payment_point(this_ptr: number, val: number): void {
26139         if(!isWasmInitialized) {
26140                 throw new Error("initializeWasm() must be awaited first!");
26141         }
26142         const nativeResponseValue = wasm.TS_ChannelPublicKeys_set_payment_point(this_ptr, val);
26143         // debug statements here
26144 }
26145         // struct LDKPublicKey ChannelPublicKeys_get_delayed_payment_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
26146 /* @internal */
26147 export function ChannelPublicKeys_get_delayed_payment_basepoint(this_ptr: number): number {
26148         if(!isWasmInitialized) {
26149                 throw new Error("initializeWasm() must be awaited first!");
26150         }
26151         const nativeResponseValue = wasm.TS_ChannelPublicKeys_get_delayed_payment_basepoint(this_ptr);
26152         return nativeResponseValue;
26153 }
26154         // void ChannelPublicKeys_set_delayed_payment_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26155 /* @internal */
26156 export function ChannelPublicKeys_set_delayed_payment_basepoint(this_ptr: number, val: number): void {
26157         if(!isWasmInitialized) {
26158                 throw new Error("initializeWasm() must be awaited first!");
26159         }
26160         const nativeResponseValue = wasm.TS_ChannelPublicKeys_set_delayed_payment_basepoint(this_ptr, val);
26161         // debug statements here
26162 }
26163         // struct LDKPublicKey ChannelPublicKeys_get_htlc_basepoint(const struct LDKChannelPublicKeys *NONNULL_PTR this_ptr);
26164 /* @internal */
26165 export function ChannelPublicKeys_get_htlc_basepoint(this_ptr: number): number {
26166         if(!isWasmInitialized) {
26167                 throw new Error("initializeWasm() must be awaited first!");
26168         }
26169         const nativeResponseValue = wasm.TS_ChannelPublicKeys_get_htlc_basepoint(this_ptr);
26170         return nativeResponseValue;
26171 }
26172         // void ChannelPublicKeys_set_htlc_basepoint(struct LDKChannelPublicKeys *NONNULL_PTR this_ptr, struct LDKPublicKey val);
26173 /* @internal */
26174 export function ChannelPublicKeys_set_htlc_basepoint(this_ptr: number, val: number): void {
26175         if(!isWasmInitialized) {
26176                 throw new Error("initializeWasm() must be awaited first!");
26177         }
26178         const nativeResponseValue = wasm.TS_ChannelPublicKeys_set_htlc_basepoint(this_ptr, val);
26179         // debug statements here
26180 }
26181         // MUST_USE_RES struct LDKChannelPublicKeys ChannelPublicKeys_new(struct LDKPublicKey funding_pubkey_arg, struct LDKPublicKey revocation_basepoint_arg, struct LDKPublicKey payment_point_arg, struct LDKPublicKey delayed_payment_basepoint_arg, struct LDKPublicKey htlc_basepoint_arg);
26182 /* @internal */
26183 export function ChannelPublicKeys_new(funding_pubkey_arg: number, revocation_basepoint_arg: number, payment_point_arg: number, delayed_payment_basepoint_arg: number, htlc_basepoint_arg: number): number {
26184         if(!isWasmInitialized) {
26185                 throw new Error("initializeWasm() must be awaited first!");
26186         }
26187         const nativeResponseValue = wasm.TS_ChannelPublicKeys_new(funding_pubkey_arg, revocation_basepoint_arg, payment_point_arg, delayed_payment_basepoint_arg, htlc_basepoint_arg);
26188         return nativeResponseValue;
26189 }
26190         // uintptr_t ChannelPublicKeys_clone_ptr(LDKChannelPublicKeys *NONNULL_PTR arg);
26191 /* @internal */
26192 export function ChannelPublicKeys_clone_ptr(arg: number): number {
26193         if(!isWasmInitialized) {
26194                 throw new Error("initializeWasm() must be awaited first!");
26195         }
26196         const nativeResponseValue = wasm.TS_ChannelPublicKeys_clone_ptr(arg);
26197         return nativeResponseValue;
26198 }
26199         // struct LDKChannelPublicKeys ChannelPublicKeys_clone(const struct LDKChannelPublicKeys *NONNULL_PTR orig);
26200 /* @internal */
26201 export function ChannelPublicKeys_clone(orig: number): number {
26202         if(!isWasmInitialized) {
26203                 throw new Error("initializeWasm() must be awaited first!");
26204         }
26205         const nativeResponseValue = wasm.TS_ChannelPublicKeys_clone(orig);
26206         return nativeResponseValue;
26207 }
26208         // struct LDKCVec_u8Z ChannelPublicKeys_write(const struct LDKChannelPublicKeys *NONNULL_PTR obj);
26209 /* @internal */
26210 export function ChannelPublicKeys_write(obj: number): number {
26211         if(!isWasmInitialized) {
26212                 throw new Error("initializeWasm() must be awaited first!");
26213         }
26214         const nativeResponseValue = wasm.TS_ChannelPublicKeys_write(obj);
26215         return nativeResponseValue;
26216 }
26217         // struct LDKCResult_ChannelPublicKeysDecodeErrorZ ChannelPublicKeys_read(struct LDKu8slice ser);
26218 /* @internal */
26219 export function ChannelPublicKeys_read(ser: number): number {
26220         if(!isWasmInitialized) {
26221                 throw new Error("initializeWasm() must be awaited first!");
26222         }
26223         const nativeResponseValue = wasm.TS_ChannelPublicKeys_read(ser);
26224         return nativeResponseValue;
26225 }
26226         // MUST_USE_RES struct LDKCResult_TxCreationKeysErrorZ TxCreationKeys_derive_new(struct LDKPublicKey per_commitment_point, struct LDKPublicKey broadcaster_delayed_payment_base, struct LDKPublicKey broadcaster_htlc_base, struct LDKPublicKey countersignatory_revocation_base, struct LDKPublicKey countersignatory_htlc_base);
26227 /* @internal */
26228 export function TxCreationKeys_derive_new(per_commitment_point: number, broadcaster_delayed_payment_base: number, broadcaster_htlc_base: number, countersignatory_revocation_base: number, countersignatory_htlc_base: number): number {
26229         if(!isWasmInitialized) {
26230                 throw new Error("initializeWasm() must be awaited first!");
26231         }
26232         const nativeResponseValue = wasm.TS_TxCreationKeys_derive_new(per_commitment_point, broadcaster_delayed_payment_base, broadcaster_htlc_base, countersignatory_revocation_base, countersignatory_htlc_base);
26233         return nativeResponseValue;
26234 }
26235         // MUST_USE_RES struct LDKCResult_TxCreationKeysErrorZ TxCreationKeys_from_channel_static_keys(struct LDKPublicKey per_commitment_point, const struct LDKChannelPublicKeys *NONNULL_PTR broadcaster_keys, const struct LDKChannelPublicKeys *NONNULL_PTR countersignatory_keys);
26236 /* @internal */
26237 export function TxCreationKeys_from_channel_static_keys(per_commitment_point: number, broadcaster_keys: number, countersignatory_keys: number): number {
26238         if(!isWasmInitialized) {
26239                 throw new Error("initializeWasm() must be awaited first!");
26240         }
26241         const nativeResponseValue = wasm.TS_TxCreationKeys_from_channel_static_keys(per_commitment_point, broadcaster_keys, countersignatory_keys);
26242         return nativeResponseValue;
26243 }
26244         // struct LDKCVec_u8Z get_revokeable_redeemscript(struct LDKPublicKey revocation_key, uint16_t contest_delay, struct LDKPublicKey broadcaster_delayed_payment_key);
26245 /* @internal */
26246 export function get_revokeable_redeemscript(revocation_key: number, contest_delay: number, broadcaster_delayed_payment_key: number): number {
26247         if(!isWasmInitialized) {
26248                 throw new Error("initializeWasm() must be awaited first!");
26249         }
26250         const nativeResponseValue = wasm.TS_get_revokeable_redeemscript(revocation_key, contest_delay, broadcaster_delayed_payment_key);
26251         return nativeResponseValue;
26252 }
26253         // void HTLCOutputInCommitment_free(struct LDKHTLCOutputInCommitment this_obj);
26254 /* @internal */
26255 export function HTLCOutputInCommitment_free(this_obj: number): void {
26256         if(!isWasmInitialized) {
26257                 throw new Error("initializeWasm() must be awaited first!");
26258         }
26259         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_free(this_obj);
26260         // debug statements here
26261 }
26262         // bool HTLCOutputInCommitment_get_offered(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
26263 /* @internal */
26264 export function HTLCOutputInCommitment_get_offered(this_ptr: number): boolean {
26265         if(!isWasmInitialized) {
26266                 throw new Error("initializeWasm() must be awaited first!");
26267         }
26268         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_get_offered(this_ptr);
26269         return nativeResponseValue;
26270 }
26271         // void HTLCOutputInCommitment_set_offered(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, bool val);
26272 /* @internal */
26273 export function HTLCOutputInCommitment_set_offered(this_ptr: number, val: boolean): void {
26274         if(!isWasmInitialized) {
26275                 throw new Error("initializeWasm() must be awaited first!");
26276         }
26277         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_set_offered(this_ptr, val);
26278         // debug statements here
26279 }
26280         // uint64_t HTLCOutputInCommitment_get_amount_msat(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
26281 /* @internal */
26282 export function HTLCOutputInCommitment_get_amount_msat(this_ptr: number): bigint {
26283         if(!isWasmInitialized) {
26284                 throw new Error("initializeWasm() must be awaited first!");
26285         }
26286         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_get_amount_msat(this_ptr);
26287         return nativeResponseValue;
26288 }
26289         // void HTLCOutputInCommitment_set_amount_msat(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, uint64_t val);
26290 /* @internal */
26291 export function HTLCOutputInCommitment_set_amount_msat(this_ptr: number, val: bigint): void {
26292         if(!isWasmInitialized) {
26293                 throw new Error("initializeWasm() must be awaited first!");
26294         }
26295         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_set_amount_msat(this_ptr, val);
26296         // debug statements here
26297 }
26298         // uint32_t HTLCOutputInCommitment_get_cltv_expiry(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
26299 /* @internal */
26300 export function HTLCOutputInCommitment_get_cltv_expiry(this_ptr: number): number {
26301         if(!isWasmInitialized) {
26302                 throw new Error("initializeWasm() must be awaited first!");
26303         }
26304         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_get_cltv_expiry(this_ptr);
26305         return nativeResponseValue;
26306 }
26307         // void HTLCOutputInCommitment_set_cltv_expiry(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, uint32_t val);
26308 /* @internal */
26309 export function HTLCOutputInCommitment_set_cltv_expiry(this_ptr: number, val: number): void {
26310         if(!isWasmInitialized) {
26311                 throw new Error("initializeWasm() must be awaited first!");
26312         }
26313         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_set_cltv_expiry(this_ptr, val);
26314         // debug statements here
26315 }
26316         // const uint8_t (*HTLCOutputInCommitment_get_payment_hash(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr))[32];
26317 /* @internal */
26318 export function HTLCOutputInCommitment_get_payment_hash(this_ptr: number): number {
26319         if(!isWasmInitialized) {
26320                 throw new Error("initializeWasm() must be awaited first!");
26321         }
26322         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_get_payment_hash(this_ptr);
26323         return nativeResponseValue;
26324 }
26325         // void HTLCOutputInCommitment_set_payment_hash(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
26326 /* @internal */
26327 export function HTLCOutputInCommitment_set_payment_hash(this_ptr: number, val: number): void {
26328         if(!isWasmInitialized) {
26329                 throw new Error("initializeWasm() must be awaited first!");
26330         }
26331         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_set_payment_hash(this_ptr, val);
26332         // debug statements here
26333 }
26334         // struct LDKCOption_u32Z HTLCOutputInCommitment_get_transaction_output_index(const struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr);
26335 /* @internal */
26336 export function HTLCOutputInCommitment_get_transaction_output_index(this_ptr: number): number {
26337         if(!isWasmInitialized) {
26338                 throw new Error("initializeWasm() must be awaited first!");
26339         }
26340         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_get_transaction_output_index(this_ptr);
26341         return nativeResponseValue;
26342 }
26343         // void HTLCOutputInCommitment_set_transaction_output_index(struct LDKHTLCOutputInCommitment *NONNULL_PTR this_ptr, struct LDKCOption_u32Z val);
26344 /* @internal */
26345 export function HTLCOutputInCommitment_set_transaction_output_index(this_ptr: number, val: number): void {
26346         if(!isWasmInitialized) {
26347                 throw new Error("initializeWasm() must be awaited first!");
26348         }
26349         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_set_transaction_output_index(this_ptr, val);
26350         // debug statements here
26351 }
26352         // MUST_USE_RES struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_new(bool offered_arg, uint64_t amount_msat_arg, uint32_t cltv_expiry_arg, struct LDKThirtyTwoBytes payment_hash_arg, struct LDKCOption_u32Z transaction_output_index_arg);
26353 /* @internal */
26354 export function HTLCOutputInCommitment_new(offered_arg: boolean, amount_msat_arg: bigint, cltv_expiry_arg: number, payment_hash_arg: number, transaction_output_index_arg: number): number {
26355         if(!isWasmInitialized) {
26356                 throw new Error("initializeWasm() must be awaited first!");
26357         }
26358         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_new(offered_arg, amount_msat_arg, cltv_expiry_arg, payment_hash_arg, transaction_output_index_arg);
26359         return nativeResponseValue;
26360 }
26361         // uintptr_t HTLCOutputInCommitment_clone_ptr(LDKHTLCOutputInCommitment *NONNULL_PTR arg);
26362 /* @internal */
26363 export function HTLCOutputInCommitment_clone_ptr(arg: number): number {
26364         if(!isWasmInitialized) {
26365                 throw new Error("initializeWasm() must be awaited first!");
26366         }
26367         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_clone_ptr(arg);
26368         return nativeResponseValue;
26369 }
26370         // struct LDKHTLCOutputInCommitment HTLCOutputInCommitment_clone(const struct LDKHTLCOutputInCommitment *NONNULL_PTR orig);
26371 /* @internal */
26372 export function HTLCOutputInCommitment_clone(orig: number): number {
26373         if(!isWasmInitialized) {
26374                 throw new Error("initializeWasm() must be awaited first!");
26375         }
26376         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_clone(orig);
26377         return nativeResponseValue;
26378 }
26379         // struct LDKCVec_u8Z HTLCOutputInCommitment_write(const struct LDKHTLCOutputInCommitment *NONNULL_PTR obj);
26380 /* @internal */
26381 export function HTLCOutputInCommitment_write(obj: number): number {
26382         if(!isWasmInitialized) {
26383                 throw new Error("initializeWasm() must be awaited first!");
26384         }
26385         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_write(obj);
26386         return nativeResponseValue;
26387 }
26388         // struct LDKCResult_HTLCOutputInCommitmentDecodeErrorZ HTLCOutputInCommitment_read(struct LDKu8slice ser);
26389 /* @internal */
26390 export function HTLCOutputInCommitment_read(ser: number): number {
26391         if(!isWasmInitialized) {
26392                 throw new Error("initializeWasm() must be awaited first!");
26393         }
26394         const nativeResponseValue = wasm.TS_HTLCOutputInCommitment_read(ser);
26395         return nativeResponseValue;
26396 }
26397         // struct LDKCVec_u8Z get_htlc_redeemscript(const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc, bool opt_anchors, const struct LDKTxCreationKeys *NONNULL_PTR keys);
26398 /* @internal */
26399 export function get_htlc_redeemscript(htlc: number, opt_anchors: boolean, keys: number): number {
26400         if(!isWasmInitialized) {
26401                 throw new Error("initializeWasm() must be awaited first!");
26402         }
26403         const nativeResponseValue = wasm.TS_get_htlc_redeemscript(htlc, opt_anchors, keys);
26404         return nativeResponseValue;
26405 }
26406         // struct LDKCVec_u8Z make_funding_redeemscript(struct LDKPublicKey broadcaster, struct LDKPublicKey countersignatory);
26407 /* @internal */
26408 export function make_funding_redeemscript(broadcaster: number, countersignatory: number): number {
26409         if(!isWasmInitialized) {
26410                 throw new Error("initializeWasm() must be awaited first!");
26411         }
26412         const nativeResponseValue = wasm.TS_make_funding_redeemscript(broadcaster, countersignatory);
26413         return nativeResponseValue;
26414 }
26415         // struct LDKTransaction build_htlc_transaction(const uint8_t (*commitment_txid)[32], uint32_t feerate_per_kw, uint16_t contest_delay, const struct LDKHTLCOutputInCommitment *NONNULL_PTR htlc, bool opt_anchors, struct LDKPublicKey broadcaster_delayed_payment_key, struct LDKPublicKey revocation_key);
26416 /* @internal */
26417 export function build_htlc_transaction(commitment_txid: number, feerate_per_kw: number, contest_delay: number, htlc: number, opt_anchors: boolean, broadcaster_delayed_payment_key: number, revocation_key: number): number {
26418         if(!isWasmInitialized) {
26419                 throw new Error("initializeWasm() must be awaited first!");
26420         }
26421         const nativeResponseValue = wasm.TS_build_htlc_transaction(commitment_txid, feerate_per_kw, contest_delay, htlc, opt_anchors, broadcaster_delayed_payment_key, revocation_key);
26422         return nativeResponseValue;
26423 }
26424         // struct LDKCVec_u8Z get_anchor_redeemscript(struct LDKPublicKey funding_pubkey);
26425 /* @internal */
26426 export function get_anchor_redeemscript(funding_pubkey: number): number {
26427         if(!isWasmInitialized) {
26428                 throw new Error("initializeWasm() must be awaited first!");
26429         }
26430         const nativeResponseValue = wasm.TS_get_anchor_redeemscript(funding_pubkey);
26431         return nativeResponseValue;
26432 }
26433         // void ChannelTransactionParameters_free(struct LDKChannelTransactionParameters this_obj);
26434 /* @internal */
26435 export function ChannelTransactionParameters_free(this_obj: number): void {
26436         if(!isWasmInitialized) {
26437                 throw new Error("initializeWasm() must be awaited first!");
26438         }
26439         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_free(this_obj);
26440         // debug statements here
26441 }
26442         // struct LDKChannelPublicKeys ChannelTransactionParameters_get_holder_pubkeys(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26443 /* @internal */
26444 export function ChannelTransactionParameters_get_holder_pubkeys(this_ptr: number): number {
26445         if(!isWasmInitialized) {
26446                 throw new Error("initializeWasm() must be awaited first!");
26447         }
26448         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_holder_pubkeys(this_ptr);
26449         return nativeResponseValue;
26450 }
26451         // void ChannelTransactionParameters_set_holder_pubkeys(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKChannelPublicKeys val);
26452 /* @internal */
26453 export function ChannelTransactionParameters_set_holder_pubkeys(this_ptr: number, val: number): void {
26454         if(!isWasmInitialized) {
26455                 throw new Error("initializeWasm() must be awaited first!");
26456         }
26457         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_holder_pubkeys(this_ptr, val);
26458         // debug statements here
26459 }
26460         // uint16_t ChannelTransactionParameters_get_holder_selected_contest_delay(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26461 /* @internal */
26462 export function ChannelTransactionParameters_get_holder_selected_contest_delay(this_ptr: number): number {
26463         if(!isWasmInitialized) {
26464                 throw new Error("initializeWasm() must be awaited first!");
26465         }
26466         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_holder_selected_contest_delay(this_ptr);
26467         return nativeResponseValue;
26468 }
26469         // void ChannelTransactionParameters_set_holder_selected_contest_delay(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, uint16_t val);
26470 /* @internal */
26471 export function ChannelTransactionParameters_set_holder_selected_contest_delay(this_ptr: number, val: number): void {
26472         if(!isWasmInitialized) {
26473                 throw new Error("initializeWasm() must be awaited first!");
26474         }
26475         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_holder_selected_contest_delay(this_ptr, val);
26476         // debug statements here
26477 }
26478         // bool ChannelTransactionParameters_get_is_outbound_from_holder(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26479 /* @internal */
26480 export function ChannelTransactionParameters_get_is_outbound_from_holder(this_ptr: number): boolean {
26481         if(!isWasmInitialized) {
26482                 throw new Error("initializeWasm() must be awaited first!");
26483         }
26484         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_is_outbound_from_holder(this_ptr);
26485         return nativeResponseValue;
26486 }
26487         // void ChannelTransactionParameters_set_is_outbound_from_holder(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, bool val);
26488 /* @internal */
26489 export function ChannelTransactionParameters_set_is_outbound_from_holder(this_ptr: number, val: boolean): void {
26490         if(!isWasmInitialized) {
26491                 throw new Error("initializeWasm() must be awaited first!");
26492         }
26493         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_is_outbound_from_holder(this_ptr, val);
26494         // debug statements here
26495 }
26496         // struct LDKCounterpartyChannelTransactionParameters ChannelTransactionParameters_get_counterparty_parameters(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26497 /* @internal */
26498 export function ChannelTransactionParameters_get_counterparty_parameters(this_ptr: number): number {
26499         if(!isWasmInitialized) {
26500                 throw new Error("initializeWasm() must be awaited first!");
26501         }
26502         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_counterparty_parameters(this_ptr);
26503         return nativeResponseValue;
26504 }
26505         // void ChannelTransactionParameters_set_counterparty_parameters(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKCounterpartyChannelTransactionParameters val);
26506 /* @internal */
26507 export function ChannelTransactionParameters_set_counterparty_parameters(this_ptr: number, val: number): void {
26508         if(!isWasmInitialized) {
26509                 throw new Error("initializeWasm() must be awaited first!");
26510         }
26511         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_counterparty_parameters(this_ptr, val);
26512         // debug statements here
26513 }
26514         // struct LDKOutPoint ChannelTransactionParameters_get_funding_outpoint(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26515 /* @internal */
26516 export function ChannelTransactionParameters_get_funding_outpoint(this_ptr: number): number {
26517         if(!isWasmInitialized) {
26518                 throw new Error("initializeWasm() must be awaited first!");
26519         }
26520         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_funding_outpoint(this_ptr);
26521         return nativeResponseValue;
26522 }
26523         // void ChannelTransactionParameters_set_funding_outpoint(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKOutPoint val);
26524 /* @internal */
26525 export function ChannelTransactionParameters_set_funding_outpoint(this_ptr: number, val: number): void {
26526         if(!isWasmInitialized) {
26527                 throw new Error("initializeWasm() must be awaited first!");
26528         }
26529         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_funding_outpoint(this_ptr, val);
26530         // debug statements here
26531 }
26532         // enum LDKCOption_NoneZ ChannelTransactionParameters_get_opt_anchors(const struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr);
26533 /* @internal */
26534 export function ChannelTransactionParameters_get_opt_anchors(this_ptr: number): COption_NoneZ {
26535         if(!isWasmInitialized) {
26536                 throw new Error("initializeWasm() must be awaited first!");
26537         }
26538         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_get_opt_anchors(this_ptr);
26539         return nativeResponseValue;
26540 }
26541         // void ChannelTransactionParameters_set_opt_anchors(struct LDKChannelTransactionParameters *NONNULL_PTR this_ptr, enum LDKCOption_NoneZ val);
26542 /* @internal */
26543 export function ChannelTransactionParameters_set_opt_anchors(this_ptr: number, val: COption_NoneZ): void {
26544         if(!isWasmInitialized) {
26545                 throw new Error("initializeWasm() must be awaited first!");
26546         }
26547         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_set_opt_anchors(this_ptr, val);
26548         // debug statements here
26549 }
26550         // MUST_USE_RES struct LDKChannelTransactionParameters ChannelTransactionParameters_new(struct LDKChannelPublicKeys holder_pubkeys_arg, uint16_t holder_selected_contest_delay_arg, bool is_outbound_from_holder_arg, struct LDKCounterpartyChannelTransactionParameters counterparty_parameters_arg, struct LDKOutPoint funding_outpoint_arg, enum LDKCOption_NoneZ opt_anchors_arg);
26551 /* @internal */
26552 export function ChannelTransactionParameters_new(holder_pubkeys_arg: number, holder_selected_contest_delay_arg: number, is_outbound_from_holder_arg: boolean, counterparty_parameters_arg: number, funding_outpoint_arg: number, opt_anchors_arg: COption_NoneZ): number {
26553         if(!isWasmInitialized) {
26554                 throw new Error("initializeWasm() must be awaited first!");
26555         }
26556         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_new(holder_pubkeys_arg, holder_selected_contest_delay_arg, is_outbound_from_holder_arg, counterparty_parameters_arg, funding_outpoint_arg, opt_anchors_arg);
26557         return nativeResponseValue;
26558 }
26559         // uintptr_t ChannelTransactionParameters_clone_ptr(LDKChannelTransactionParameters *NONNULL_PTR arg);
26560 /* @internal */
26561 export function ChannelTransactionParameters_clone_ptr(arg: number): number {
26562         if(!isWasmInitialized) {
26563                 throw new Error("initializeWasm() must be awaited first!");
26564         }
26565         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_clone_ptr(arg);
26566         return nativeResponseValue;
26567 }
26568         // struct LDKChannelTransactionParameters ChannelTransactionParameters_clone(const struct LDKChannelTransactionParameters *NONNULL_PTR orig);
26569 /* @internal */
26570 export function ChannelTransactionParameters_clone(orig: number): number {
26571         if(!isWasmInitialized) {
26572                 throw new Error("initializeWasm() must be awaited first!");
26573         }
26574         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_clone(orig);
26575         return nativeResponseValue;
26576 }
26577         // void CounterpartyChannelTransactionParameters_free(struct LDKCounterpartyChannelTransactionParameters this_obj);
26578 /* @internal */
26579 export function CounterpartyChannelTransactionParameters_free(this_obj: number): void {
26580         if(!isWasmInitialized) {
26581                 throw new Error("initializeWasm() must be awaited first!");
26582         }
26583         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_free(this_obj);
26584         // debug statements here
26585 }
26586         // struct LDKChannelPublicKeys CounterpartyChannelTransactionParameters_get_pubkeys(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr);
26587 /* @internal */
26588 export function CounterpartyChannelTransactionParameters_get_pubkeys(this_ptr: number): number {
26589         if(!isWasmInitialized) {
26590                 throw new Error("initializeWasm() must be awaited first!");
26591         }
26592         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_get_pubkeys(this_ptr);
26593         return nativeResponseValue;
26594 }
26595         // void CounterpartyChannelTransactionParameters_set_pubkeys(struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr, struct LDKChannelPublicKeys val);
26596 /* @internal */
26597 export function CounterpartyChannelTransactionParameters_set_pubkeys(this_ptr: number, val: number): void {
26598         if(!isWasmInitialized) {
26599                 throw new Error("initializeWasm() must be awaited first!");
26600         }
26601         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_set_pubkeys(this_ptr, val);
26602         // debug statements here
26603 }
26604         // uint16_t CounterpartyChannelTransactionParameters_get_selected_contest_delay(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr);
26605 /* @internal */
26606 export function CounterpartyChannelTransactionParameters_get_selected_contest_delay(this_ptr: number): number {
26607         if(!isWasmInitialized) {
26608                 throw new Error("initializeWasm() must be awaited first!");
26609         }
26610         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_get_selected_contest_delay(this_ptr);
26611         return nativeResponseValue;
26612 }
26613         // void CounterpartyChannelTransactionParameters_set_selected_contest_delay(struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR this_ptr, uint16_t val);
26614 /* @internal */
26615 export function CounterpartyChannelTransactionParameters_set_selected_contest_delay(this_ptr: number, val: number): void {
26616         if(!isWasmInitialized) {
26617                 throw new Error("initializeWasm() must be awaited first!");
26618         }
26619         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_set_selected_contest_delay(this_ptr, val);
26620         // debug statements here
26621 }
26622         // MUST_USE_RES struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_new(struct LDKChannelPublicKeys pubkeys_arg, uint16_t selected_contest_delay_arg);
26623 /* @internal */
26624 export function CounterpartyChannelTransactionParameters_new(pubkeys_arg: number, selected_contest_delay_arg: number): number {
26625         if(!isWasmInitialized) {
26626                 throw new Error("initializeWasm() must be awaited first!");
26627         }
26628         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_new(pubkeys_arg, selected_contest_delay_arg);
26629         return nativeResponseValue;
26630 }
26631         // uintptr_t CounterpartyChannelTransactionParameters_clone_ptr(LDKCounterpartyChannelTransactionParameters *NONNULL_PTR arg);
26632 /* @internal */
26633 export function CounterpartyChannelTransactionParameters_clone_ptr(arg: number): number {
26634         if(!isWasmInitialized) {
26635                 throw new Error("initializeWasm() must be awaited first!");
26636         }
26637         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_clone_ptr(arg);
26638         return nativeResponseValue;
26639 }
26640         // struct LDKCounterpartyChannelTransactionParameters CounterpartyChannelTransactionParameters_clone(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR orig);
26641 /* @internal */
26642 export function CounterpartyChannelTransactionParameters_clone(orig: number): number {
26643         if(!isWasmInitialized) {
26644                 throw new Error("initializeWasm() must be awaited first!");
26645         }
26646         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_clone(orig);
26647         return nativeResponseValue;
26648 }
26649         // MUST_USE_RES bool ChannelTransactionParameters_is_populated(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
26650 /* @internal */
26651 export function ChannelTransactionParameters_is_populated(this_arg: number): boolean {
26652         if(!isWasmInitialized) {
26653                 throw new Error("initializeWasm() must be awaited first!");
26654         }
26655         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_is_populated(this_arg);
26656         return nativeResponseValue;
26657 }
26658         // MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_holder_broadcastable(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
26659 /* @internal */
26660 export function ChannelTransactionParameters_as_holder_broadcastable(this_arg: number): number {
26661         if(!isWasmInitialized) {
26662                 throw new Error("initializeWasm() must be awaited first!");
26663         }
26664         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_as_holder_broadcastable(this_arg);
26665         return nativeResponseValue;
26666 }
26667         // MUST_USE_RES struct LDKDirectedChannelTransactionParameters ChannelTransactionParameters_as_counterparty_broadcastable(const struct LDKChannelTransactionParameters *NONNULL_PTR this_arg);
26668 /* @internal */
26669 export function ChannelTransactionParameters_as_counterparty_broadcastable(this_arg: number): number {
26670         if(!isWasmInitialized) {
26671                 throw new Error("initializeWasm() must be awaited first!");
26672         }
26673         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_as_counterparty_broadcastable(this_arg);
26674         return nativeResponseValue;
26675 }
26676         // struct LDKCVec_u8Z CounterpartyChannelTransactionParameters_write(const struct LDKCounterpartyChannelTransactionParameters *NONNULL_PTR obj);
26677 /* @internal */
26678 export function CounterpartyChannelTransactionParameters_write(obj: number): number {
26679         if(!isWasmInitialized) {
26680                 throw new Error("initializeWasm() must be awaited first!");
26681         }
26682         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_write(obj);
26683         return nativeResponseValue;
26684 }
26685         // struct LDKCResult_CounterpartyChannelTransactionParametersDecodeErrorZ CounterpartyChannelTransactionParameters_read(struct LDKu8slice ser);
26686 /* @internal */
26687 export function CounterpartyChannelTransactionParameters_read(ser: number): number {
26688         if(!isWasmInitialized) {
26689                 throw new Error("initializeWasm() must be awaited first!");
26690         }
26691         const nativeResponseValue = wasm.TS_CounterpartyChannelTransactionParameters_read(ser);
26692         return nativeResponseValue;
26693 }
26694         // struct LDKCVec_u8Z ChannelTransactionParameters_write(const struct LDKChannelTransactionParameters *NONNULL_PTR obj);
26695 /* @internal */
26696 export function ChannelTransactionParameters_write(obj: number): number {
26697         if(!isWasmInitialized) {
26698                 throw new Error("initializeWasm() must be awaited first!");
26699         }
26700         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_write(obj);
26701         return nativeResponseValue;
26702 }
26703         // struct LDKCResult_ChannelTransactionParametersDecodeErrorZ ChannelTransactionParameters_read(struct LDKu8slice ser);
26704 /* @internal */
26705 export function ChannelTransactionParameters_read(ser: number): number {
26706         if(!isWasmInitialized) {
26707                 throw new Error("initializeWasm() must be awaited first!");
26708         }
26709         const nativeResponseValue = wasm.TS_ChannelTransactionParameters_read(ser);
26710         return nativeResponseValue;
26711 }
26712         // void DirectedChannelTransactionParameters_free(struct LDKDirectedChannelTransactionParameters this_obj);
26713 /* @internal */
26714 export function DirectedChannelTransactionParameters_free(this_obj: number): void {
26715         if(!isWasmInitialized) {
26716                 throw new Error("initializeWasm() must be awaited first!");
26717         }
26718         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_free(this_obj);
26719         // debug statements here
26720 }
26721         // MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_broadcaster_pubkeys(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26722 /* @internal */
26723 export function DirectedChannelTransactionParameters_broadcaster_pubkeys(this_arg: number): number {
26724         if(!isWasmInitialized) {
26725                 throw new Error("initializeWasm() must be awaited first!");
26726         }
26727         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_broadcaster_pubkeys(this_arg);
26728         return nativeResponseValue;
26729 }
26730         // MUST_USE_RES struct LDKChannelPublicKeys DirectedChannelTransactionParameters_countersignatory_pubkeys(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26731 /* @internal */
26732 export function DirectedChannelTransactionParameters_countersignatory_pubkeys(this_arg: number): number {
26733         if(!isWasmInitialized) {
26734                 throw new Error("initializeWasm() must be awaited first!");
26735         }
26736         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_countersignatory_pubkeys(this_arg);
26737         return nativeResponseValue;
26738 }
26739         // MUST_USE_RES uint16_t DirectedChannelTransactionParameters_contest_delay(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26740 /* @internal */
26741 export function DirectedChannelTransactionParameters_contest_delay(this_arg: number): number {
26742         if(!isWasmInitialized) {
26743                 throw new Error("initializeWasm() must be awaited first!");
26744         }
26745         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_contest_delay(this_arg);
26746         return nativeResponseValue;
26747 }
26748         // MUST_USE_RES bool DirectedChannelTransactionParameters_is_outbound(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26749 /* @internal */
26750 export function DirectedChannelTransactionParameters_is_outbound(this_arg: number): boolean {
26751         if(!isWasmInitialized) {
26752                 throw new Error("initializeWasm() must be awaited first!");
26753         }
26754         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_is_outbound(this_arg);
26755         return nativeResponseValue;
26756 }
26757         // MUST_USE_RES struct LDKOutPoint DirectedChannelTransactionParameters_funding_outpoint(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26758 /* @internal */
26759 export function DirectedChannelTransactionParameters_funding_outpoint(this_arg: number): number {
26760         if(!isWasmInitialized) {
26761                 throw new Error("initializeWasm() must be awaited first!");
26762         }
26763         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_funding_outpoint(this_arg);
26764         return nativeResponseValue;
26765 }
26766         // MUST_USE_RES bool DirectedChannelTransactionParameters_opt_anchors(const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR this_arg);
26767 /* @internal */
26768 export function DirectedChannelTransactionParameters_opt_anchors(this_arg: number): boolean {
26769         if(!isWasmInitialized) {
26770                 throw new Error("initializeWasm() must be awaited first!");
26771         }
26772         const nativeResponseValue = wasm.TS_DirectedChannelTransactionParameters_opt_anchors(this_arg);
26773         return nativeResponseValue;
26774 }
26775         // void HolderCommitmentTransaction_free(struct LDKHolderCommitmentTransaction this_obj);
26776 /* @internal */
26777 export function HolderCommitmentTransaction_free(this_obj: number): void {
26778         if(!isWasmInitialized) {
26779                 throw new Error("initializeWasm() must be awaited first!");
26780         }
26781         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_free(this_obj);
26782         // debug statements here
26783 }
26784         // struct LDKSignature HolderCommitmentTransaction_get_counterparty_sig(const struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr);
26785 /* @internal */
26786 export function HolderCommitmentTransaction_get_counterparty_sig(this_ptr: number): number {
26787         if(!isWasmInitialized) {
26788                 throw new Error("initializeWasm() must be awaited first!");
26789         }
26790         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_get_counterparty_sig(this_ptr);
26791         return nativeResponseValue;
26792 }
26793         // void HolderCommitmentTransaction_set_counterparty_sig(struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKSignature val);
26794 /* @internal */
26795 export function HolderCommitmentTransaction_set_counterparty_sig(this_ptr: number, val: number): void {
26796         if(!isWasmInitialized) {
26797                 throw new Error("initializeWasm() must be awaited first!");
26798         }
26799         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_set_counterparty_sig(this_ptr, val);
26800         // debug statements here
26801 }
26802         // struct LDKCVec_SignatureZ HolderCommitmentTransaction_get_counterparty_htlc_sigs(const struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr);
26803 /* @internal */
26804 export function HolderCommitmentTransaction_get_counterparty_htlc_sigs(this_ptr: number): number {
26805         if(!isWasmInitialized) {
26806                 throw new Error("initializeWasm() must be awaited first!");
26807         }
26808         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_get_counterparty_htlc_sigs(this_ptr);
26809         return nativeResponseValue;
26810 }
26811         // void HolderCommitmentTransaction_set_counterparty_htlc_sigs(struct LDKHolderCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKCVec_SignatureZ val);
26812 /* @internal */
26813 export function HolderCommitmentTransaction_set_counterparty_htlc_sigs(this_ptr: number, val: number): void {
26814         if(!isWasmInitialized) {
26815                 throw new Error("initializeWasm() must be awaited first!");
26816         }
26817         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_set_counterparty_htlc_sigs(this_ptr, val);
26818         // debug statements here
26819 }
26820         // uintptr_t HolderCommitmentTransaction_clone_ptr(LDKHolderCommitmentTransaction *NONNULL_PTR arg);
26821 /* @internal */
26822 export function HolderCommitmentTransaction_clone_ptr(arg: number): number {
26823         if(!isWasmInitialized) {
26824                 throw new Error("initializeWasm() must be awaited first!");
26825         }
26826         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_clone_ptr(arg);
26827         return nativeResponseValue;
26828 }
26829         // struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_clone(const struct LDKHolderCommitmentTransaction *NONNULL_PTR orig);
26830 /* @internal */
26831 export function HolderCommitmentTransaction_clone(orig: number): number {
26832         if(!isWasmInitialized) {
26833                 throw new Error("initializeWasm() must be awaited first!");
26834         }
26835         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_clone(orig);
26836         return nativeResponseValue;
26837 }
26838         // struct LDKCVec_u8Z HolderCommitmentTransaction_write(const struct LDKHolderCommitmentTransaction *NONNULL_PTR obj);
26839 /* @internal */
26840 export function HolderCommitmentTransaction_write(obj: number): number {
26841         if(!isWasmInitialized) {
26842                 throw new Error("initializeWasm() must be awaited first!");
26843         }
26844         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_write(obj);
26845         return nativeResponseValue;
26846 }
26847         // struct LDKCResult_HolderCommitmentTransactionDecodeErrorZ HolderCommitmentTransaction_read(struct LDKu8slice ser);
26848 /* @internal */
26849 export function HolderCommitmentTransaction_read(ser: number): number {
26850         if(!isWasmInitialized) {
26851                 throw new Error("initializeWasm() must be awaited first!");
26852         }
26853         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_read(ser);
26854         return nativeResponseValue;
26855 }
26856         // MUST_USE_RES struct LDKHolderCommitmentTransaction HolderCommitmentTransaction_new(struct LDKCommitmentTransaction commitment_tx, struct LDKSignature counterparty_sig, struct LDKCVec_SignatureZ counterparty_htlc_sigs, struct LDKPublicKey holder_funding_key, struct LDKPublicKey counterparty_funding_key);
26857 /* @internal */
26858 export function HolderCommitmentTransaction_new(commitment_tx: number, counterparty_sig: number, counterparty_htlc_sigs: number, holder_funding_key: number, counterparty_funding_key: number): number {
26859         if(!isWasmInitialized) {
26860                 throw new Error("initializeWasm() must be awaited first!");
26861         }
26862         const nativeResponseValue = wasm.TS_HolderCommitmentTransaction_new(commitment_tx, counterparty_sig, counterparty_htlc_sigs, holder_funding_key, counterparty_funding_key);
26863         return nativeResponseValue;
26864 }
26865         // void BuiltCommitmentTransaction_free(struct LDKBuiltCommitmentTransaction this_obj);
26866 /* @internal */
26867 export function BuiltCommitmentTransaction_free(this_obj: number): void {
26868         if(!isWasmInitialized) {
26869                 throw new Error("initializeWasm() must be awaited first!");
26870         }
26871         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_free(this_obj);
26872         // debug statements here
26873 }
26874         // struct LDKTransaction BuiltCommitmentTransaction_get_transaction(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr);
26875 /* @internal */
26876 export function BuiltCommitmentTransaction_get_transaction(this_ptr: number): number {
26877         if(!isWasmInitialized) {
26878                 throw new Error("initializeWasm() must be awaited first!");
26879         }
26880         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_get_transaction(this_ptr);
26881         return nativeResponseValue;
26882 }
26883         // void BuiltCommitmentTransaction_set_transaction(struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKTransaction val);
26884 /* @internal */
26885 export function BuiltCommitmentTransaction_set_transaction(this_ptr: number, val: number): void {
26886         if(!isWasmInitialized) {
26887                 throw new Error("initializeWasm() must be awaited first!");
26888         }
26889         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_set_transaction(this_ptr, val);
26890         // debug statements here
26891 }
26892         // const uint8_t (*BuiltCommitmentTransaction_get_txid(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr))[32];
26893 /* @internal */
26894 export function BuiltCommitmentTransaction_get_txid(this_ptr: number): number {
26895         if(!isWasmInitialized) {
26896                 throw new Error("initializeWasm() must be awaited first!");
26897         }
26898         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_get_txid(this_ptr);
26899         return nativeResponseValue;
26900 }
26901         // void BuiltCommitmentTransaction_set_txid(struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
26902 /* @internal */
26903 export function BuiltCommitmentTransaction_set_txid(this_ptr: number, val: number): void {
26904         if(!isWasmInitialized) {
26905                 throw new Error("initializeWasm() must be awaited first!");
26906         }
26907         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_set_txid(this_ptr, val);
26908         // debug statements here
26909 }
26910         // MUST_USE_RES struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_new(struct LDKTransaction transaction_arg, struct LDKThirtyTwoBytes txid_arg);
26911 /* @internal */
26912 export function BuiltCommitmentTransaction_new(transaction_arg: number, txid_arg: number): number {
26913         if(!isWasmInitialized) {
26914                 throw new Error("initializeWasm() must be awaited first!");
26915         }
26916         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_new(transaction_arg, txid_arg);
26917         return nativeResponseValue;
26918 }
26919         // uintptr_t BuiltCommitmentTransaction_clone_ptr(LDKBuiltCommitmentTransaction *NONNULL_PTR arg);
26920 /* @internal */
26921 export function BuiltCommitmentTransaction_clone_ptr(arg: number): number {
26922         if(!isWasmInitialized) {
26923                 throw new Error("initializeWasm() must be awaited first!");
26924         }
26925         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_clone_ptr(arg);
26926         return nativeResponseValue;
26927 }
26928         // struct LDKBuiltCommitmentTransaction BuiltCommitmentTransaction_clone(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR orig);
26929 /* @internal */
26930 export function BuiltCommitmentTransaction_clone(orig: number): number {
26931         if(!isWasmInitialized) {
26932                 throw new Error("initializeWasm() must be awaited first!");
26933         }
26934         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_clone(orig);
26935         return nativeResponseValue;
26936 }
26937         // struct LDKCVec_u8Z BuiltCommitmentTransaction_write(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR obj);
26938 /* @internal */
26939 export function BuiltCommitmentTransaction_write(obj: number): number {
26940         if(!isWasmInitialized) {
26941                 throw new Error("initializeWasm() must be awaited first!");
26942         }
26943         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_write(obj);
26944         return nativeResponseValue;
26945 }
26946         // struct LDKCResult_BuiltCommitmentTransactionDecodeErrorZ BuiltCommitmentTransaction_read(struct LDKu8slice ser);
26947 /* @internal */
26948 export function BuiltCommitmentTransaction_read(ser: number): number {
26949         if(!isWasmInitialized) {
26950                 throw new Error("initializeWasm() must be awaited first!");
26951         }
26952         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_read(ser);
26953         return nativeResponseValue;
26954 }
26955         // MUST_USE_RES struct LDKThirtyTwoBytes BuiltCommitmentTransaction_get_sighash_all(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_arg, struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
26956 /* @internal */
26957 export function BuiltCommitmentTransaction_get_sighash_all(this_arg: number, funding_redeemscript: number, channel_value_satoshis: bigint): number {
26958         if(!isWasmInitialized) {
26959                 throw new Error("initializeWasm() must be awaited first!");
26960         }
26961         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_get_sighash_all(this_arg, funding_redeemscript, channel_value_satoshis);
26962         return nativeResponseValue;
26963 }
26964         // MUST_USE_RES struct LDKSignature BuiltCommitmentTransaction_sign(const struct LDKBuiltCommitmentTransaction *NONNULL_PTR this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
26965 /* @internal */
26966 export function BuiltCommitmentTransaction_sign(this_arg: number, funding_key: number, funding_redeemscript: number, channel_value_satoshis: bigint): number {
26967         if(!isWasmInitialized) {
26968                 throw new Error("initializeWasm() must be awaited first!");
26969         }
26970         const nativeResponseValue = wasm.TS_BuiltCommitmentTransaction_sign(this_arg, funding_key, funding_redeemscript, channel_value_satoshis);
26971         return nativeResponseValue;
26972 }
26973         // void ClosingTransaction_free(struct LDKClosingTransaction this_obj);
26974 /* @internal */
26975 export function ClosingTransaction_free(this_obj: number): void {
26976         if(!isWasmInitialized) {
26977                 throw new Error("initializeWasm() must be awaited first!");
26978         }
26979         const nativeResponseValue = wasm.TS_ClosingTransaction_free(this_obj);
26980         // debug statements here
26981 }
26982         // uintptr_t ClosingTransaction_clone_ptr(LDKClosingTransaction *NONNULL_PTR arg);
26983 /* @internal */
26984 export function ClosingTransaction_clone_ptr(arg: number): number {
26985         if(!isWasmInitialized) {
26986                 throw new Error("initializeWasm() must be awaited first!");
26987         }
26988         const nativeResponseValue = wasm.TS_ClosingTransaction_clone_ptr(arg);
26989         return nativeResponseValue;
26990 }
26991         // struct LDKClosingTransaction ClosingTransaction_clone(const struct LDKClosingTransaction *NONNULL_PTR orig);
26992 /* @internal */
26993 export function ClosingTransaction_clone(orig: number): number {
26994         if(!isWasmInitialized) {
26995                 throw new Error("initializeWasm() must be awaited first!");
26996         }
26997         const nativeResponseValue = wasm.TS_ClosingTransaction_clone(orig);
26998         return nativeResponseValue;
26999 }
27000         // uint64_t ClosingTransaction_hash(const struct LDKClosingTransaction *NONNULL_PTR o);
27001 /* @internal */
27002 export function ClosingTransaction_hash(o: number): bigint {
27003         if(!isWasmInitialized) {
27004                 throw new Error("initializeWasm() must be awaited first!");
27005         }
27006         const nativeResponseValue = wasm.TS_ClosingTransaction_hash(o);
27007         return nativeResponseValue;
27008 }
27009         // MUST_USE_RES struct LDKClosingTransaction ClosingTransaction_new(uint64_t to_holder_value_sat, uint64_t to_counterparty_value_sat, struct LDKCVec_u8Z to_holder_script, struct LDKCVec_u8Z to_counterparty_script, struct LDKOutPoint funding_outpoint);
27010 /* @internal */
27011 export function ClosingTransaction_new(to_holder_value_sat: bigint, to_counterparty_value_sat: bigint, to_holder_script: number, to_counterparty_script: number, funding_outpoint: number): number {
27012         if(!isWasmInitialized) {
27013                 throw new Error("initializeWasm() must be awaited first!");
27014         }
27015         const nativeResponseValue = wasm.TS_ClosingTransaction_new(to_holder_value_sat, to_counterparty_value_sat, to_holder_script, to_counterparty_script, funding_outpoint);
27016         return nativeResponseValue;
27017 }
27018         // MUST_USE_RES struct LDKTrustedClosingTransaction ClosingTransaction_trust(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
27019 /* @internal */
27020 export function ClosingTransaction_trust(this_arg: number): number {
27021         if(!isWasmInitialized) {
27022                 throw new Error("initializeWasm() must be awaited first!");
27023         }
27024         const nativeResponseValue = wasm.TS_ClosingTransaction_trust(this_arg);
27025         return nativeResponseValue;
27026 }
27027         // MUST_USE_RES struct LDKCResult_TrustedClosingTransactionNoneZ ClosingTransaction_verify(const struct LDKClosingTransaction *NONNULL_PTR this_arg, struct LDKOutPoint funding_outpoint);
27028 /* @internal */
27029 export function ClosingTransaction_verify(this_arg: number, funding_outpoint: number): number {
27030         if(!isWasmInitialized) {
27031                 throw new Error("initializeWasm() must be awaited first!");
27032         }
27033         const nativeResponseValue = wasm.TS_ClosingTransaction_verify(this_arg, funding_outpoint);
27034         return nativeResponseValue;
27035 }
27036         // MUST_USE_RES uint64_t ClosingTransaction_to_holder_value_sat(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
27037 /* @internal */
27038 export function ClosingTransaction_to_holder_value_sat(this_arg: number): bigint {
27039         if(!isWasmInitialized) {
27040                 throw new Error("initializeWasm() must be awaited first!");
27041         }
27042         const nativeResponseValue = wasm.TS_ClosingTransaction_to_holder_value_sat(this_arg);
27043         return nativeResponseValue;
27044 }
27045         // MUST_USE_RES uint64_t ClosingTransaction_to_counterparty_value_sat(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
27046 /* @internal */
27047 export function ClosingTransaction_to_counterparty_value_sat(this_arg: number): bigint {
27048         if(!isWasmInitialized) {
27049                 throw new Error("initializeWasm() must be awaited first!");
27050         }
27051         const nativeResponseValue = wasm.TS_ClosingTransaction_to_counterparty_value_sat(this_arg);
27052         return nativeResponseValue;
27053 }
27054         // MUST_USE_RES struct LDKu8slice ClosingTransaction_to_holder_script(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
27055 /* @internal */
27056 export function ClosingTransaction_to_holder_script(this_arg: number): number {
27057         if(!isWasmInitialized) {
27058                 throw new Error("initializeWasm() must be awaited first!");
27059         }
27060         const nativeResponseValue = wasm.TS_ClosingTransaction_to_holder_script(this_arg);
27061         return nativeResponseValue;
27062 }
27063         // MUST_USE_RES struct LDKu8slice ClosingTransaction_to_counterparty_script(const struct LDKClosingTransaction *NONNULL_PTR this_arg);
27064 /* @internal */
27065 export function ClosingTransaction_to_counterparty_script(this_arg: number): number {
27066         if(!isWasmInitialized) {
27067                 throw new Error("initializeWasm() must be awaited first!");
27068         }
27069         const nativeResponseValue = wasm.TS_ClosingTransaction_to_counterparty_script(this_arg);
27070         return nativeResponseValue;
27071 }
27072         // void TrustedClosingTransaction_free(struct LDKTrustedClosingTransaction this_obj);
27073 /* @internal */
27074 export function TrustedClosingTransaction_free(this_obj: number): void {
27075         if(!isWasmInitialized) {
27076                 throw new Error("initializeWasm() must be awaited first!");
27077         }
27078         const nativeResponseValue = wasm.TS_TrustedClosingTransaction_free(this_obj);
27079         // debug statements here
27080 }
27081         // MUST_USE_RES struct LDKTransaction TrustedClosingTransaction_built_transaction(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg);
27082 /* @internal */
27083 export function TrustedClosingTransaction_built_transaction(this_arg: number): number {
27084         if(!isWasmInitialized) {
27085                 throw new Error("initializeWasm() must be awaited first!");
27086         }
27087         const nativeResponseValue = wasm.TS_TrustedClosingTransaction_built_transaction(this_arg);
27088         return nativeResponseValue;
27089 }
27090         // MUST_USE_RES struct LDKThirtyTwoBytes TrustedClosingTransaction_get_sighash_all(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg, struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
27091 /* @internal */
27092 export function TrustedClosingTransaction_get_sighash_all(this_arg: number, funding_redeemscript: number, channel_value_satoshis: bigint): number {
27093         if(!isWasmInitialized) {
27094                 throw new Error("initializeWasm() must be awaited first!");
27095         }
27096         const nativeResponseValue = wasm.TS_TrustedClosingTransaction_get_sighash_all(this_arg, funding_redeemscript, channel_value_satoshis);
27097         return nativeResponseValue;
27098 }
27099         // MUST_USE_RES struct LDKSignature TrustedClosingTransaction_sign(const struct LDKTrustedClosingTransaction *NONNULL_PTR this_arg, const uint8_t (*funding_key)[32], struct LDKu8slice funding_redeemscript, uint64_t channel_value_satoshis);
27100 /* @internal */
27101 export function TrustedClosingTransaction_sign(this_arg: number, funding_key: number, funding_redeemscript: number, channel_value_satoshis: bigint): number {
27102         if(!isWasmInitialized) {
27103                 throw new Error("initializeWasm() must be awaited first!");
27104         }
27105         const nativeResponseValue = wasm.TS_TrustedClosingTransaction_sign(this_arg, funding_key, funding_redeemscript, channel_value_satoshis);
27106         return nativeResponseValue;
27107 }
27108         // void CommitmentTransaction_free(struct LDKCommitmentTransaction this_obj);
27109 /* @internal */
27110 export function CommitmentTransaction_free(this_obj: number): void {
27111         if(!isWasmInitialized) {
27112                 throw new Error("initializeWasm() must be awaited first!");
27113         }
27114         const nativeResponseValue = wasm.TS_CommitmentTransaction_free(this_obj);
27115         // debug statements here
27116 }
27117         // uintptr_t CommitmentTransaction_clone_ptr(LDKCommitmentTransaction *NONNULL_PTR arg);
27118 /* @internal */
27119 export function CommitmentTransaction_clone_ptr(arg: number): number {
27120         if(!isWasmInitialized) {
27121                 throw new Error("initializeWasm() must be awaited first!");
27122         }
27123         const nativeResponseValue = wasm.TS_CommitmentTransaction_clone_ptr(arg);
27124         return nativeResponseValue;
27125 }
27126         // struct LDKCommitmentTransaction CommitmentTransaction_clone(const struct LDKCommitmentTransaction *NONNULL_PTR orig);
27127 /* @internal */
27128 export function CommitmentTransaction_clone(orig: number): number {
27129         if(!isWasmInitialized) {
27130                 throw new Error("initializeWasm() must be awaited first!");
27131         }
27132         const nativeResponseValue = wasm.TS_CommitmentTransaction_clone(orig);
27133         return nativeResponseValue;
27134 }
27135         // struct LDKCVec_u8Z CommitmentTransaction_write(const struct LDKCommitmentTransaction *NONNULL_PTR obj);
27136 /* @internal */
27137 export function CommitmentTransaction_write(obj: number): number {
27138         if(!isWasmInitialized) {
27139                 throw new Error("initializeWasm() must be awaited first!");
27140         }
27141         const nativeResponseValue = wasm.TS_CommitmentTransaction_write(obj);
27142         return nativeResponseValue;
27143 }
27144         // struct LDKCResult_CommitmentTransactionDecodeErrorZ CommitmentTransaction_read(struct LDKu8slice ser);
27145 /* @internal */
27146 export function CommitmentTransaction_read(ser: number): number {
27147         if(!isWasmInitialized) {
27148                 throw new Error("initializeWasm() must be awaited first!");
27149         }
27150         const nativeResponseValue = wasm.TS_CommitmentTransaction_read(ser);
27151         return nativeResponseValue;
27152 }
27153         // MUST_USE_RES uint64_t CommitmentTransaction_commitment_number(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
27154 /* @internal */
27155 export function CommitmentTransaction_commitment_number(this_arg: number): bigint {
27156         if(!isWasmInitialized) {
27157                 throw new Error("initializeWasm() must be awaited first!");
27158         }
27159         const nativeResponseValue = wasm.TS_CommitmentTransaction_commitment_number(this_arg);
27160         return nativeResponseValue;
27161 }
27162         // MUST_USE_RES uint64_t CommitmentTransaction_to_broadcaster_value_sat(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
27163 /* @internal */
27164 export function CommitmentTransaction_to_broadcaster_value_sat(this_arg: number): bigint {
27165         if(!isWasmInitialized) {
27166                 throw new Error("initializeWasm() must be awaited first!");
27167         }
27168         const nativeResponseValue = wasm.TS_CommitmentTransaction_to_broadcaster_value_sat(this_arg);
27169         return nativeResponseValue;
27170 }
27171         // MUST_USE_RES uint64_t CommitmentTransaction_to_countersignatory_value_sat(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
27172 /* @internal */
27173 export function CommitmentTransaction_to_countersignatory_value_sat(this_arg: number): bigint {
27174         if(!isWasmInitialized) {
27175                 throw new Error("initializeWasm() must be awaited first!");
27176         }
27177         const nativeResponseValue = wasm.TS_CommitmentTransaction_to_countersignatory_value_sat(this_arg);
27178         return nativeResponseValue;
27179 }
27180         // MUST_USE_RES uint32_t CommitmentTransaction_feerate_per_kw(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
27181 /* @internal */
27182 export function CommitmentTransaction_feerate_per_kw(this_arg: number): number {
27183         if(!isWasmInitialized) {
27184                 throw new Error("initializeWasm() must be awaited first!");
27185         }
27186         const nativeResponseValue = wasm.TS_CommitmentTransaction_feerate_per_kw(this_arg);
27187         return nativeResponseValue;
27188 }
27189         // MUST_USE_RES struct LDKTrustedCommitmentTransaction CommitmentTransaction_trust(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg);
27190 /* @internal */
27191 export function CommitmentTransaction_trust(this_arg: number): number {
27192         if(!isWasmInitialized) {
27193                 throw new Error("initializeWasm() must be awaited first!");
27194         }
27195         const nativeResponseValue = wasm.TS_CommitmentTransaction_trust(this_arg);
27196         return nativeResponseValue;
27197 }
27198         // MUST_USE_RES struct LDKCResult_TrustedCommitmentTransactionNoneZ CommitmentTransaction_verify(const struct LDKCommitmentTransaction *NONNULL_PTR this_arg, const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR channel_parameters, const struct LDKChannelPublicKeys *NONNULL_PTR broadcaster_keys, const struct LDKChannelPublicKeys *NONNULL_PTR countersignatory_keys);
27199 /* @internal */
27200 export function CommitmentTransaction_verify(this_arg: number, channel_parameters: number, broadcaster_keys: number, countersignatory_keys: number): number {
27201         if(!isWasmInitialized) {
27202                 throw new Error("initializeWasm() must be awaited first!");
27203         }
27204         const nativeResponseValue = wasm.TS_CommitmentTransaction_verify(this_arg, channel_parameters, broadcaster_keys, countersignatory_keys);
27205         return nativeResponseValue;
27206 }
27207         // void TrustedCommitmentTransaction_free(struct LDKTrustedCommitmentTransaction this_obj);
27208 /* @internal */
27209 export function TrustedCommitmentTransaction_free(this_obj: number): void {
27210         if(!isWasmInitialized) {
27211                 throw new Error("initializeWasm() must be awaited first!");
27212         }
27213         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_free(this_obj);
27214         // debug statements here
27215 }
27216         // MUST_USE_RES struct LDKThirtyTwoBytes TrustedCommitmentTransaction_txid(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
27217 /* @internal */
27218 export function TrustedCommitmentTransaction_txid(this_arg: number): number {
27219         if(!isWasmInitialized) {
27220                 throw new Error("initializeWasm() must be awaited first!");
27221         }
27222         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_txid(this_arg);
27223         return nativeResponseValue;
27224 }
27225         // MUST_USE_RES struct LDKBuiltCommitmentTransaction TrustedCommitmentTransaction_built_transaction(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
27226 /* @internal */
27227 export function TrustedCommitmentTransaction_built_transaction(this_arg: number): number {
27228         if(!isWasmInitialized) {
27229                 throw new Error("initializeWasm() must be awaited first!");
27230         }
27231         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_built_transaction(this_arg);
27232         return nativeResponseValue;
27233 }
27234         // MUST_USE_RES struct LDKTxCreationKeys TrustedCommitmentTransaction_keys(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
27235 /* @internal */
27236 export function TrustedCommitmentTransaction_keys(this_arg: number): number {
27237         if(!isWasmInitialized) {
27238                 throw new Error("initializeWasm() must be awaited first!");
27239         }
27240         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_keys(this_arg);
27241         return nativeResponseValue;
27242 }
27243         // MUST_USE_RES bool TrustedCommitmentTransaction_opt_anchors(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg);
27244 /* @internal */
27245 export function TrustedCommitmentTransaction_opt_anchors(this_arg: number): boolean {
27246         if(!isWasmInitialized) {
27247                 throw new Error("initializeWasm() must be awaited first!");
27248         }
27249         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_opt_anchors(this_arg);
27250         return nativeResponseValue;
27251 }
27252         // MUST_USE_RES struct LDKCResult_CVec_SignatureZNoneZ TrustedCommitmentTransaction_get_htlc_sigs(const struct LDKTrustedCommitmentTransaction *NONNULL_PTR this_arg, const uint8_t (*htlc_base_key)[32], const struct LDKDirectedChannelTransactionParameters *NONNULL_PTR channel_parameters);
27253 /* @internal */
27254 export function TrustedCommitmentTransaction_get_htlc_sigs(this_arg: number, htlc_base_key: number, channel_parameters: number): number {
27255         if(!isWasmInitialized) {
27256                 throw new Error("initializeWasm() must be awaited first!");
27257         }
27258         const nativeResponseValue = wasm.TS_TrustedCommitmentTransaction_get_htlc_sigs(this_arg, htlc_base_key, channel_parameters);
27259         return nativeResponseValue;
27260 }
27261         // uint64_t get_commitment_transaction_number_obscure_factor(struct LDKPublicKey broadcaster_payment_basepoint, struct LDKPublicKey countersignatory_payment_basepoint, bool outbound_from_broadcaster);
27262 /* @internal */
27263 export function get_commitment_transaction_number_obscure_factor(broadcaster_payment_basepoint: number, countersignatory_payment_basepoint: number, outbound_from_broadcaster: boolean): bigint {
27264         if(!isWasmInitialized) {
27265                 throw new Error("initializeWasm() must be awaited first!");
27266         }
27267         const nativeResponseValue = wasm.TS_get_commitment_transaction_number_obscure_factor(broadcaster_payment_basepoint, countersignatory_payment_basepoint, outbound_from_broadcaster);
27268         return nativeResponseValue;
27269 }
27270         // bool InitFeatures_eq(const struct LDKInitFeatures *NONNULL_PTR a, const struct LDKInitFeatures *NONNULL_PTR b);
27271 /* @internal */
27272 export function InitFeatures_eq(a: number, b: number): boolean {
27273         if(!isWasmInitialized) {
27274                 throw new Error("initializeWasm() must be awaited first!");
27275         }
27276         const nativeResponseValue = wasm.TS_InitFeatures_eq(a, b);
27277         return nativeResponseValue;
27278 }
27279         // bool NodeFeatures_eq(const struct LDKNodeFeatures *NONNULL_PTR a, const struct LDKNodeFeatures *NONNULL_PTR b);
27280 /* @internal */
27281 export function NodeFeatures_eq(a: number, b: number): boolean {
27282         if(!isWasmInitialized) {
27283                 throw new Error("initializeWasm() must be awaited first!");
27284         }
27285         const nativeResponseValue = wasm.TS_NodeFeatures_eq(a, b);
27286         return nativeResponseValue;
27287 }
27288         // bool ChannelFeatures_eq(const struct LDKChannelFeatures *NONNULL_PTR a, const struct LDKChannelFeatures *NONNULL_PTR b);
27289 /* @internal */
27290 export function ChannelFeatures_eq(a: number, b: number): boolean {
27291         if(!isWasmInitialized) {
27292                 throw new Error("initializeWasm() must be awaited first!");
27293         }
27294         const nativeResponseValue = wasm.TS_ChannelFeatures_eq(a, b);
27295         return nativeResponseValue;
27296 }
27297         // bool InvoiceFeatures_eq(const struct LDKInvoiceFeatures *NONNULL_PTR a, const struct LDKInvoiceFeatures *NONNULL_PTR b);
27298 /* @internal */
27299 export function InvoiceFeatures_eq(a: number, b: number): boolean {
27300         if(!isWasmInitialized) {
27301                 throw new Error("initializeWasm() must be awaited first!");
27302         }
27303         const nativeResponseValue = wasm.TS_InvoiceFeatures_eq(a, b);
27304         return nativeResponseValue;
27305 }
27306         // bool ChannelTypeFeatures_eq(const struct LDKChannelTypeFeatures *NONNULL_PTR a, const struct LDKChannelTypeFeatures *NONNULL_PTR b);
27307 /* @internal */
27308 export function ChannelTypeFeatures_eq(a: number, b: number): boolean {
27309         if(!isWasmInitialized) {
27310                 throw new Error("initializeWasm() must be awaited first!");
27311         }
27312         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_eq(a, b);
27313         return nativeResponseValue;
27314 }
27315         // uintptr_t InitFeatures_clone_ptr(LDKInitFeatures *NONNULL_PTR arg);
27316 /* @internal */
27317 export function InitFeatures_clone_ptr(arg: number): number {
27318         if(!isWasmInitialized) {
27319                 throw new Error("initializeWasm() must be awaited first!");
27320         }
27321         const nativeResponseValue = wasm.TS_InitFeatures_clone_ptr(arg);
27322         return nativeResponseValue;
27323 }
27324         // struct LDKInitFeatures InitFeatures_clone(const struct LDKInitFeatures *NONNULL_PTR orig);
27325 /* @internal */
27326 export function InitFeatures_clone(orig: number): number {
27327         if(!isWasmInitialized) {
27328                 throw new Error("initializeWasm() must be awaited first!");
27329         }
27330         const nativeResponseValue = wasm.TS_InitFeatures_clone(orig);
27331         return nativeResponseValue;
27332 }
27333         // uintptr_t NodeFeatures_clone_ptr(LDKNodeFeatures *NONNULL_PTR arg);
27334 /* @internal */
27335 export function NodeFeatures_clone_ptr(arg: number): number {
27336         if(!isWasmInitialized) {
27337                 throw new Error("initializeWasm() must be awaited first!");
27338         }
27339         const nativeResponseValue = wasm.TS_NodeFeatures_clone_ptr(arg);
27340         return nativeResponseValue;
27341 }
27342         // struct LDKNodeFeatures NodeFeatures_clone(const struct LDKNodeFeatures *NONNULL_PTR orig);
27343 /* @internal */
27344 export function NodeFeatures_clone(orig: number): number {
27345         if(!isWasmInitialized) {
27346                 throw new Error("initializeWasm() must be awaited first!");
27347         }
27348         const nativeResponseValue = wasm.TS_NodeFeatures_clone(orig);
27349         return nativeResponseValue;
27350 }
27351         // uintptr_t ChannelFeatures_clone_ptr(LDKChannelFeatures *NONNULL_PTR arg);
27352 /* @internal */
27353 export function ChannelFeatures_clone_ptr(arg: number): number {
27354         if(!isWasmInitialized) {
27355                 throw new Error("initializeWasm() must be awaited first!");
27356         }
27357         const nativeResponseValue = wasm.TS_ChannelFeatures_clone_ptr(arg);
27358         return nativeResponseValue;
27359 }
27360         // struct LDKChannelFeatures ChannelFeatures_clone(const struct LDKChannelFeatures *NONNULL_PTR orig);
27361 /* @internal */
27362 export function ChannelFeatures_clone(orig: number): number {
27363         if(!isWasmInitialized) {
27364                 throw new Error("initializeWasm() must be awaited first!");
27365         }
27366         const nativeResponseValue = wasm.TS_ChannelFeatures_clone(orig);
27367         return nativeResponseValue;
27368 }
27369         // uintptr_t InvoiceFeatures_clone_ptr(LDKInvoiceFeatures *NONNULL_PTR arg);
27370 /* @internal */
27371 export function InvoiceFeatures_clone_ptr(arg: number): number {
27372         if(!isWasmInitialized) {
27373                 throw new Error("initializeWasm() must be awaited first!");
27374         }
27375         const nativeResponseValue = wasm.TS_InvoiceFeatures_clone_ptr(arg);
27376         return nativeResponseValue;
27377 }
27378         // struct LDKInvoiceFeatures InvoiceFeatures_clone(const struct LDKInvoiceFeatures *NONNULL_PTR orig);
27379 /* @internal */
27380 export function InvoiceFeatures_clone(orig: number): number {
27381         if(!isWasmInitialized) {
27382                 throw new Error("initializeWasm() must be awaited first!");
27383         }
27384         const nativeResponseValue = wasm.TS_InvoiceFeatures_clone(orig);
27385         return nativeResponseValue;
27386 }
27387         // uintptr_t ChannelTypeFeatures_clone_ptr(LDKChannelTypeFeatures *NONNULL_PTR arg);
27388 /* @internal */
27389 export function ChannelTypeFeatures_clone_ptr(arg: number): number {
27390         if(!isWasmInitialized) {
27391                 throw new Error("initializeWasm() must be awaited first!");
27392         }
27393         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_clone_ptr(arg);
27394         return nativeResponseValue;
27395 }
27396         // struct LDKChannelTypeFeatures ChannelTypeFeatures_clone(const struct LDKChannelTypeFeatures *NONNULL_PTR orig);
27397 /* @internal */
27398 export function ChannelTypeFeatures_clone(orig: number): number {
27399         if(!isWasmInitialized) {
27400                 throw new Error("initializeWasm() must be awaited first!");
27401         }
27402         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_clone(orig);
27403         return nativeResponseValue;
27404 }
27405         // void InitFeatures_free(struct LDKInitFeatures this_obj);
27406 /* @internal */
27407 export function InitFeatures_free(this_obj: number): void {
27408         if(!isWasmInitialized) {
27409                 throw new Error("initializeWasm() must be awaited first!");
27410         }
27411         const nativeResponseValue = wasm.TS_InitFeatures_free(this_obj);
27412         // debug statements here
27413 }
27414         // void NodeFeatures_free(struct LDKNodeFeatures this_obj);
27415 /* @internal */
27416 export function NodeFeatures_free(this_obj: number): void {
27417         if(!isWasmInitialized) {
27418                 throw new Error("initializeWasm() must be awaited first!");
27419         }
27420         const nativeResponseValue = wasm.TS_NodeFeatures_free(this_obj);
27421         // debug statements here
27422 }
27423         // void ChannelFeatures_free(struct LDKChannelFeatures this_obj);
27424 /* @internal */
27425 export function ChannelFeatures_free(this_obj: number): void {
27426         if(!isWasmInitialized) {
27427                 throw new Error("initializeWasm() must be awaited first!");
27428         }
27429         const nativeResponseValue = wasm.TS_ChannelFeatures_free(this_obj);
27430         // debug statements here
27431 }
27432         // void InvoiceFeatures_free(struct LDKInvoiceFeatures this_obj);
27433 /* @internal */
27434 export function InvoiceFeatures_free(this_obj: number): void {
27435         if(!isWasmInitialized) {
27436                 throw new Error("initializeWasm() must be awaited first!");
27437         }
27438         const nativeResponseValue = wasm.TS_InvoiceFeatures_free(this_obj);
27439         // debug statements here
27440 }
27441         // void ChannelTypeFeatures_free(struct LDKChannelTypeFeatures this_obj);
27442 /* @internal */
27443 export function ChannelTypeFeatures_free(this_obj: number): void {
27444         if(!isWasmInitialized) {
27445                 throw new Error("initializeWasm() must be awaited first!");
27446         }
27447         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_free(this_obj);
27448         // debug statements here
27449 }
27450         // MUST_USE_RES struct LDKInitFeatures InitFeatures_empty(void);
27451 /* @internal */
27452 export function InitFeatures_empty(): number {
27453         if(!isWasmInitialized) {
27454                 throw new Error("initializeWasm() must be awaited first!");
27455         }
27456         const nativeResponseValue = wasm.TS_InitFeatures_empty();
27457         return nativeResponseValue;
27458 }
27459         // MUST_USE_RES struct LDKInitFeatures InitFeatures_known(void);
27460 /* @internal */
27461 export function InitFeatures_known(): number {
27462         if(!isWasmInitialized) {
27463                 throw new Error("initializeWasm() must be awaited first!");
27464         }
27465         const nativeResponseValue = wasm.TS_InitFeatures_known();
27466         return nativeResponseValue;
27467 }
27468         // MUST_USE_RES bool InitFeatures_requires_unknown_bits(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27469 /* @internal */
27470 export function InitFeatures_requires_unknown_bits(this_arg: number): boolean {
27471         if(!isWasmInitialized) {
27472                 throw new Error("initializeWasm() must be awaited first!");
27473         }
27474         const nativeResponseValue = wasm.TS_InitFeatures_requires_unknown_bits(this_arg);
27475         return nativeResponseValue;
27476 }
27477         // MUST_USE_RES struct LDKNodeFeatures NodeFeatures_empty(void);
27478 /* @internal */
27479 export function NodeFeatures_empty(): number {
27480         if(!isWasmInitialized) {
27481                 throw new Error("initializeWasm() must be awaited first!");
27482         }
27483         const nativeResponseValue = wasm.TS_NodeFeatures_empty();
27484         return nativeResponseValue;
27485 }
27486         // MUST_USE_RES struct LDKNodeFeatures NodeFeatures_known(void);
27487 /* @internal */
27488 export function NodeFeatures_known(): number {
27489         if(!isWasmInitialized) {
27490                 throw new Error("initializeWasm() must be awaited first!");
27491         }
27492         const nativeResponseValue = wasm.TS_NodeFeatures_known();
27493         return nativeResponseValue;
27494 }
27495         // MUST_USE_RES bool NodeFeatures_requires_unknown_bits(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27496 /* @internal */
27497 export function NodeFeatures_requires_unknown_bits(this_arg: number): boolean {
27498         if(!isWasmInitialized) {
27499                 throw new Error("initializeWasm() must be awaited first!");
27500         }
27501         const nativeResponseValue = wasm.TS_NodeFeatures_requires_unknown_bits(this_arg);
27502         return nativeResponseValue;
27503 }
27504         // MUST_USE_RES struct LDKChannelFeatures ChannelFeatures_empty(void);
27505 /* @internal */
27506 export function ChannelFeatures_empty(): number {
27507         if(!isWasmInitialized) {
27508                 throw new Error("initializeWasm() must be awaited first!");
27509         }
27510         const nativeResponseValue = wasm.TS_ChannelFeatures_empty();
27511         return nativeResponseValue;
27512 }
27513         // MUST_USE_RES struct LDKChannelFeatures ChannelFeatures_known(void);
27514 /* @internal */
27515 export function ChannelFeatures_known(): number {
27516         if(!isWasmInitialized) {
27517                 throw new Error("initializeWasm() must be awaited first!");
27518         }
27519         const nativeResponseValue = wasm.TS_ChannelFeatures_known();
27520         return nativeResponseValue;
27521 }
27522         // MUST_USE_RES bool ChannelFeatures_requires_unknown_bits(const struct LDKChannelFeatures *NONNULL_PTR this_arg);
27523 /* @internal */
27524 export function ChannelFeatures_requires_unknown_bits(this_arg: number): boolean {
27525         if(!isWasmInitialized) {
27526                 throw new Error("initializeWasm() must be awaited first!");
27527         }
27528         const nativeResponseValue = wasm.TS_ChannelFeatures_requires_unknown_bits(this_arg);
27529         return nativeResponseValue;
27530 }
27531         // MUST_USE_RES struct LDKInvoiceFeatures InvoiceFeatures_empty(void);
27532 /* @internal */
27533 export function InvoiceFeatures_empty(): number {
27534         if(!isWasmInitialized) {
27535                 throw new Error("initializeWasm() must be awaited first!");
27536         }
27537         const nativeResponseValue = wasm.TS_InvoiceFeatures_empty();
27538         return nativeResponseValue;
27539 }
27540         // MUST_USE_RES struct LDKInvoiceFeatures InvoiceFeatures_known(void);
27541 /* @internal */
27542 export function InvoiceFeatures_known(): number {
27543         if(!isWasmInitialized) {
27544                 throw new Error("initializeWasm() must be awaited first!");
27545         }
27546         const nativeResponseValue = wasm.TS_InvoiceFeatures_known();
27547         return nativeResponseValue;
27548 }
27549         // MUST_USE_RES bool InvoiceFeatures_requires_unknown_bits(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
27550 /* @internal */
27551 export function InvoiceFeatures_requires_unknown_bits(this_arg: number): boolean {
27552         if(!isWasmInitialized) {
27553                 throw new Error("initializeWasm() must be awaited first!");
27554         }
27555         const nativeResponseValue = wasm.TS_InvoiceFeatures_requires_unknown_bits(this_arg);
27556         return nativeResponseValue;
27557 }
27558         // MUST_USE_RES struct LDKChannelTypeFeatures ChannelTypeFeatures_empty(void);
27559 /* @internal */
27560 export function ChannelTypeFeatures_empty(): number {
27561         if(!isWasmInitialized) {
27562                 throw new Error("initializeWasm() must be awaited first!");
27563         }
27564         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_empty();
27565         return nativeResponseValue;
27566 }
27567         // MUST_USE_RES struct LDKChannelTypeFeatures ChannelTypeFeatures_known(void);
27568 /* @internal */
27569 export function ChannelTypeFeatures_known(): number {
27570         if(!isWasmInitialized) {
27571                 throw new Error("initializeWasm() must be awaited first!");
27572         }
27573         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_known();
27574         return nativeResponseValue;
27575 }
27576         // MUST_USE_RES bool ChannelTypeFeatures_requires_unknown_bits(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
27577 /* @internal */
27578 export function ChannelTypeFeatures_requires_unknown_bits(this_arg: number): boolean {
27579         if(!isWasmInitialized) {
27580                 throw new Error("initializeWasm() must be awaited first!");
27581         }
27582         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_requires_unknown_bits(this_arg);
27583         return nativeResponseValue;
27584 }
27585         // struct LDKCVec_u8Z InitFeatures_write(const struct LDKInitFeatures *NONNULL_PTR obj);
27586 /* @internal */
27587 export function InitFeatures_write(obj: number): number {
27588         if(!isWasmInitialized) {
27589                 throw new Error("initializeWasm() must be awaited first!");
27590         }
27591         const nativeResponseValue = wasm.TS_InitFeatures_write(obj);
27592         return nativeResponseValue;
27593 }
27594         // struct LDKCResult_InitFeaturesDecodeErrorZ InitFeatures_read(struct LDKu8slice ser);
27595 /* @internal */
27596 export function InitFeatures_read(ser: number): number {
27597         if(!isWasmInitialized) {
27598                 throw new Error("initializeWasm() must be awaited first!");
27599         }
27600         const nativeResponseValue = wasm.TS_InitFeatures_read(ser);
27601         return nativeResponseValue;
27602 }
27603         // struct LDKCVec_u8Z ChannelFeatures_write(const struct LDKChannelFeatures *NONNULL_PTR obj);
27604 /* @internal */
27605 export function ChannelFeatures_write(obj: number): number {
27606         if(!isWasmInitialized) {
27607                 throw new Error("initializeWasm() must be awaited first!");
27608         }
27609         const nativeResponseValue = wasm.TS_ChannelFeatures_write(obj);
27610         return nativeResponseValue;
27611 }
27612         // struct LDKCResult_ChannelFeaturesDecodeErrorZ ChannelFeatures_read(struct LDKu8slice ser);
27613 /* @internal */
27614 export function ChannelFeatures_read(ser: number): number {
27615         if(!isWasmInitialized) {
27616                 throw new Error("initializeWasm() must be awaited first!");
27617         }
27618         const nativeResponseValue = wasm.TS_ChannelFeatures_read(ser);
27619         return nativeResponseValue;
27620 }
27621         // struct LDKCVec_u8Z NodeFeatures_write(const struct LDKNodeFeatures *NONNULL_PTR obj);
27622 /* @internal */
27623 export function NodeFeatures_write(obj: number): number {
27624         if(!isWasmInitialized) {
27625                 throw new Error("initializeWasm() must be awaited first!");
27626         }
27627         const nativeResponseValue = wasm.TS_NodeFeatures_write(obj);
27628         return nativeResponseValue;
27629 }
27630         // struct LDKCResult_NodeFeaturesDecodeErrorZ NodeFeatures_read(struct LDKu8slice ser);
27631 /* @internal */
27632 export function NodeFeatures_read(ser: number): number {
27633         if(!isWasmInitialized) {
27634                 throw new Error("initializeWasm() must be awaited first!");
27635         }
27636         const nativeResponseValue = wasm.TS_NodeFeatures_read(ser);
27637         return nativeResponseValue;
27638 }
27639         // struct LDKCVec_u8Z InvoiceFeatures_write(const struct LDKInvoiceFeatures *NONNULL_PTR obj);
27640 /* @internal */
27641 export function InvoiceFeatures_write(obj: number): number {
27642         if(!isWasmInitialized) {
27643                 throw new Error("initializeWasm() must be awaited first!");
27644         }
27645         const nativeResponseValue = wasm.TS_InvoiceFeatures_write(obj);
27646         return nativeResponseValue;
27647 }
27648         // struct LDKCResult_InvoiceFeaturesDecodeErrorZ InvoiceFeatures_read(struct LDKu8slice ser);
27649 /* @internal */
27650 export function InvoiceFeatures_read(ser: number): number {
27651         if(!isWasmInitialized) {
27652                 throw new Error("initializeWasm() must be awaited first!");
27653         }
27654         const nativeResponseValue = wasm.TS_InvoiceFeatures_read(ser);
27655         return nativeResponseValue;
27656 }
27657         // struct LDKCVec_u8Z ChannelTypeFeatures_write(const struct LDKChannelTypeFeatures *NONNULL_PTR obj);
27658 /* @internal */
27659 export function ChannelTypeFeatures_write(obj: number): number {
27660         if(!isWasmInitialized) {
27661                 throw new Error("initializeWasm() must be awaited first!");
27662         }
27663         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_write(obj);
27664         return nativeResponseValue;
27665 }
27666         // struct LDKCResult_ChannelTypeFeaturesDecodeErrorZ ChannelTypeFeatures_read(struct LDKu8slice ser);
27667 /* @internal */
27668 export function ChannelTypeFeatures_read(ser: number): number {
27669         if(!isWasmInitialized) {
27670                 throw new Error("initializeWasm() must be awaited first!");
27671         }
27672         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_read(ser);
27673         return nativeResponseValue;
27674 }
27675         // void InitFeatures_set_data_loss_protect_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
27676 /* @internal */
27677 export function InitFeatures_set_data_loss_protect_optional(this_arg: number): void {
27678         if(!isWasmInitialized) {
27679                 throw new Error("initializeWasm() must be awaited first!");
27680         }
27681         const nativeResponseValue = wasm.TS_InitFeatures_set_data_loss_protect_optional(this_arg);
27682         // debug statements here
27683 }
27684         // void InitFeatures_set_data_loss_protect_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
27685 /* @internal */
27686 export function InitFeatures_set_data_loss_protect_required(this_arg: number): void {
27687         if(!isWasmInitialized) {
27688                 throw new Error("initializeWasm() must be awaited first!");
27689         }
27690         const nativeResponseValue = wasm.TS_InitFeatures_set_data_loss_protect_required(this_arg);
27691         // debug statements here
27692 }
27693         // MUST_USE_RES bool InitFeatures_supports_data_loss_protect(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27694 /* @internal */
27695 export function InitFeatures_supports_data_loss_protect(this_arg: number): boolean {
27696         if(!isWasmInitialized) {
27697                 throw new Error("initializeWasm() must be awaited first!");
27698         }
27699         const nativeResponseValue = wasm.TS_InitFeatures_supports_data_loss_protect(this_arg);
27700         return nativeResponseValue;
27701 }
27702         // void NodeFeatures_set_data_loss_protect_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27703 /* @internal */
27704 export function NodeFeatures_set_data_loss_protect_optional(this_arg: number): void {
27705         if(!isWasmInitialized) {
27706                 throw new Error("initializeWasm() must be awaited first!");
27707         }
27708         const nativeResponseValue = wasm.TS_NodeFeatures_set_data_loss_protect_optional(this_arg);
27709         // debug statements here
27710 }
27711         // void NodeFeatures_set_data_loss_protect_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27712 /* @internal */
27713 export function NodeFeatures_set_data_loss_protect_required(this_arg: number): void {
27714         if(!isWasmInitialized) {
27715                 throw new Error("initializeWasm() must be awaited first!");
27716         }
27717         const nativeResponseValue = wasm.TS_NodeFeatures_set_data_loss_protect_required(this_arg);
27718         // debug statements here
27719 }
27720         // MUST_USE_RES bool NodeFeatures_supports_data_loss_protect(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27721 /* @internal */
27722 export function NodeFeatures_supports_data_loss_protect(this_arg: number): boolean {
27723         if(!isWasmInitialized) {
27724                 throw new Error("initializeWasm() must be awaited first!");
27725         }
27726         const nativeResponseValue = wasm.TS_NodeFeatures_supports_data_loss_protect(this_arg);
27727         return nativeResponseValue;
27728 }
27729         // MUST_USE_RES bool InitFeatures_requires_data_loss_protect(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27730 /* @internal */
27731 export function InitFeatures_requires_data_loss_protect(this_arg: number): boolean {
27732         if(!isWasmInitialized) {
27733                 throw new Error("initializeWasm() must be awaited first!");
27734         }
27735         const nativeResponseValue = wasm.TS_InitFeatures_requires_data_loss_protect(this_arg);
27736         return nativeResponseValue;
27737 }
27738         // MUST_USE_RES bool NodeFeatures_requires_data_loss_protect(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27739 /* @internal */
27740 export function NodeFeatures_requires_data_loss_protect(this_arg: number): boolean {
27741         if(!isWasmInitialized) {
27742                 throw new Error("initializeWasm() must be awaited first!");
27743         }
27744         const nativeResponseValue = wasm.TS_NodeFeatures_requires_data_loss_protect(this_arg);
27745         return nativeResponseValue;
27746 }
27747         // void InitFeatures_set_initial_routing_sync_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
27748 /* @internal */
27749 export function InitFeatures_set_initial_routing_sync_optional(this_arg: number): void {
27750         if(!isWasmInitialized) {
27751                 throw new Error("initializeWasm() must be awaited first!");
27752         }
27753         const nativeResponseValue = wasm.TS_InitFeatures_set_initial_routing_sync_optional(this_arg);
27754         // debug statements here
27755 }
27756         // void InitFeatures_set_initial_routing_sync_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
27757 /* @internal */
27758 export function InitFeatures_set_initial_routing_sync_required(this_arg: number): void {
27759         if(!isWasmInitialized) {
27760                 throw new Error("initializeWasm() must be awaited first!");
27761         }
27762         const nativeResponseValue = wasm.TS_InitFeatures_set_initial_routing_sync_required(this_arg);
27763         // debug statements here
27764 }
27765         // MUST_USE_RES bool InitFeatures_initial_routing_sync(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27766 /* @internal */
27767 export function InitFeatures_initial_routing_sync(this_arg: number): boolean {
27768         if(!isWasmInitialized) {
27769                 throw new Error("initializeWasm() must be awaited first!");
27770         }
27771         const nativeResponseValue = wasm.TS_InitFeatures_initial_routing_sync(this_arg);
27772         return nativeResponseValue;
27773 }
27774         // void InitFeatures_set_upfront_shutdown_script_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
27775 /* @internal */
27776 export function InitFeatures_set_upfront_shutdown_script_optional(this_arg: number): void {
27777         if(!isWasmInitialized) {
27778                 throw new Error("initializeWasm() must be awaited first!");
27779         }
27780         const nativeResponseValue = wasm.TS_InitFeatures_set_upfront_shutdown_script_optional(this_arg);
27781         // debug statements here
27782 }
27783         // void InitFeatures_set_upfront_shutdown_script_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
27784 /* @internal */
27785 export function InitFeatures_set_upfront_shutdown_script_required(this_arg: number): void {
27786         if(!isWasmInitialized) {
27787                 throw new Error("initializeWasm() must be awaited first!");
27788         }
27789         const nativeResponseValue = wasm.TS_InitFeatures_set_upfront_shutdown_script_required(this_arg);
27790         // debug statements here
27791 }
27792         // MUST_USE_RES bool InitFeatures_supports_upfront_shutdown_script(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27793 /* @internal */
27794 export function InitFeatures_supports_upfront_shutdown_script(this_arg: number): boolean {
27795         if(!isWasmInitialized) {
27796                 throw new Error("initializeWasm() must be awaited first!");
27797         }
27798         const nativeResponseValue = wasm.TS_InitFeatures_supports_upfront_shutdown_script(this_arg);
27799         return nativeResponseValue;
27800 }
27801         // void NodeFeatures_set_upfront_shutdown_script_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27802 /* @internal */
27803 export function NodeFeatures_set_upfront_shutdown_script_optional(this_arg: number): void {
27804         if(!isWasmInitialized) {
27805                 throw new Error("initializeWasm() must be awaited first!");
27806         }
27807         const nativeResponseValue = wasm.TS_NodeFeatures_set_upfront_shutdown_script_optional(this_arg);
27808         // debug statements here
27809 }
27810         // void NodeFeatures_set_upfront_shutdown_script_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27811 /* @internal */
27812 export function NodeFeatures_set_upfront_shutdown_script_required(this_arg: number): void {
27813         if(!isWasmInitialized) {
27814                 throw new Error("initializeWasm() must be awaited first!");
27815         }
27816         const nativeResponseValue = wasm.TS_NodeFeatures_set_upfront_shutdown_script_required(this_arg);
27817         // debug statements here
27818 }
27819         // MUST_USE_RES bool NodeFeatures_supports_upfront_shutdown_script(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27820 /* @internal */
27821 export function NodeFeatures_supports_upfront_shutdown_script(this_arg: number): boolean {
27822         if(!isWasmInitialized) {
27823                 throw new Error("initializeWasm() must be awaited first!");
27824         }
27825         const nativeResponseValue = wasm.TS_NodeFeatures_supports_upfront_shutdown_script(this_arg);
27826         return nativeResponseValue;
27827 }
27828         // MUST_USE_RES bool InitFeatures_requires_upfront_shutdown_script(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27829 /* @internal */
27830 export function InitFeatures_requires_upfront_shutdown_script(this_arg: number): boolean {
27831         if(!isWasmInitialized) {
27832                 throw new Error("initializeWasm() must be awaited first!");
27833         }
27834         const nativeResponseValue = wasm.TS_InitFeatures_requires_upfront_shutdown_script(this_arg);
27835         return nativeResponseValue;
27836 }
27837         // MUST_USE_RES bool NodeFeatures_requires_upfront_shutdown_script(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27838 /* @internal */
27839 export function NodeFeatures_requires_upfront_shutdown_script(this_arg: number): boolean {
27840         if(!isWasmInitialized) {
27841                 throw new Error("initializeWasm() must be awaited first!");
27842         }
27843         const nativeResponseValue = wasm.TS_NodeFeatures_requires_upfront_shutdown_script(this_arg);
27844         return nativeResponseValue;
27845 }
27846         // void InitFeatures_set_gossip_queries_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
27847 /* @internal */
27848 export function InitFeatures_set_gossip_queries_optional(this_arg: number): void {
27849         if(!isWasmInitialized) {
27850                 throw new Error("initializeWasm() must be awaited first!");
27851         }
27852         const nativeResponseValue = wasm.TS_InitFeatures_set_gossip_queries_optional(this_arg);
27853         // debug statements here
27854 }
27855         // void InitFeatures_set_gossip_queries_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
27856 /* @internal */
27857 export function InitFeatures_set_gossip_queries_required(this_arg: number): void {
27858         if(!isWasmInitialized) {
27859                 throw new Error("initializeWasm() must be awaited first!");
27860         }
27861         const nativeResponseValue = wasm.TS_InitFeatures_set_gossip_queries_required(this_arg);
27862         // debug statements here
27863 }
27864         // MUST_USE_RES bool InitFeatures_supports_gossip_queries(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27865 /* @internal */
27866 export function InitFeatures_supports_gossip_queries(this_arg: number): boolean {
27867         if(!isWasmInitialized) {
27868                 throw new Error("initializeWasm() must be awaited first!");
27869         }
27870         const nativeResponseValue = wasm.TS_InitFeatures_supports_gossip_queries(this_arg);
27871         return nativeResponseValue;
27872 }
27873         // void NodeFeatures_set_gossip_queries_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27874 /* @internal */
27875 export function NodeFeatures_set_gossip_queries_optional(this_arg: number): void {
27876         if(!isWasmInitialized) {
27877                 throw new Error("initializeWasm() must be awaited first!");
27878         }
27879         const nativeResponseValue = wasm.TS_NodeFeatures_set_gossip_queries_optional(this_arg);
27880         // debug statements here
27881 }
27882         // void NodeFeatures_set_gossip_queries_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27883 /* @internal */
27884 export function NodeFeatures_set_gossip_queries_required(this_arg: number): void {
27885         if(!isWasmInitialized) {
27886                 throw new Error("initializeWasm() must be awaited first!");
27887         }
27888         const nativeResponseValue = wasm.TS_NodeFeatures_set_gossip_queries_required(this_arg);
27889         // debug statements here
27890 }
27891         // MUST_USE_RES bool NodeFeatures_supports_gossip_queries(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27892 /* @internal */
27893 export function NodeFeatures_supports_gossip_queries(this_arg: number): boolean {
27894         if(!isWasmInitialized) {
27895                 throw new Error("initializeWasm() must be awaited first!");
27896         }
27897         const nativeResponseValue = wasm.TS_NodeFeatures_supports_gossip_queries(this_arg);
27898         return nativeResponseValue;
27899 }
27900         // MUST_USE_RES bool InitFeatures_requires_gossip_queries(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27901 /* @internal */
27902 export function InitFeatures_requires_gossip_queries(this_arg: number): boolean {
27903         if(!isWasmInitialized) {
27904                 throw new Error("initializeWasm() must be awaited first!");
27905         }
27906         const nativeResponseValue = wasm.TS_InitFeatures_requires_gossip_queries(this_arg);
27907         return nativeResponseValue;
27908 }
27909         // MUST_USE_RES bool NodeFeatures_requires_gossip_queries(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27910 /* @internal */
27911 export function NodeFeatures_requires_gossip_queries(this_arg: number): boolean {
27912         if(!isWasmInitialized) {
27913                 throw new Error("initializeWasm() must be awaited first!");
27914         }
27915         const nativeResponseValue = wasm.TS_NodeFeatures_requires_gossip_queries(this_arg);
27916         return nativeResponseValue;
27917 }
27918         // void InitFeatures_set_variable_length_onion_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
27919 /* @internal */
27920 export function InitFeatures_set_variable_length_onion_optional(this_arg: number): void {
27921         if(!isWasmInitialized) {
27922                 throw new Error("initializeWasm() must be awaited first!");
27923         }
27924         const nativeResponseValue = wasm.TS_InitFeatures_set_variable_length_onion_optional(this_arg);
27925         // debug statements here
27926 }
27927         // void InitFeatures_set_variable_length_onion_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
27928 /* @internal */
27929 export function InitFeatures_set_variable_length_onion_required(this_arg: number): void {
27930         if(!isWasmInitialized) {
27931                 throw new Error("initializeWasm() must be awaited first!");
27932         }
27933         const nativeResponseValue = wasm.TS_InitFeatures_set_variable_length_onion_required(this_arg);
27934         // debug statements here
27935 }
27936         // MUST_USE_RES bool InitFeatures_supports_variable_length_onion(const struct LDKInitFeatures *NONNULL_PTR this_arg);
27937 /* @internal */
27938 export function InitFeatures_supports_variable_length_onion(this_arg: number): boolean {
27939         if(!isWasmInitialized) {
27940                 throw new Error("initializeWasm() must be awaited first!");
27941         }
27942         const nativeResponseValue = wasm.TS_InitFeatures_supports_variable_length_onion(this_arg);
27943         return nativeResponseValue;
27944 }
27945         // void NodeFeatures_set_variable_length_onion_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27946 /* @internal */
27947 export function NodeFeatures_set_variable_length_onion_optional(this_arg: number): void {
27948         if(!isWasmInitialized) {
27949                 throw new Error("initializeWasm() must be awaited first!");
27950         }
27951         const nativeResponseValue = wasm.TS_NodeFeatures_set_variable_length_onion_optional(this_arg);
27952         // debug statements here
27953 }
27954         // void NodeFeatures_set_variable_length_onion_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
27955 /* @internal */
27956 export function NodeFeatures_set_variable_length_onion_required(this_arg: number): void {
27957         if(!isWasmInitialized) {
27958                 throw new Error("initializeWasm() must be awaited first!");
27959         }
27960         const nativeResponseValue = wasm.TS_NodeFeatures_set_variable_length_onion_required(this_arg);
27961         // debug statements here
27962 }
27963         // MUST_USE_RES bool NodeFeatures_supports_variable_length_onion(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
27964 /* @internal */
27965 export function NodeFeatures_supports_variable_length_onion(this_arg: number): boolean {
27966         if(!isWasmInitialized) {
27967                 throw new Error("initializeWasm() must be awaited first!");
27968         }
27969         const nativeResponseValue = wasm.TS_NodeFeatures_supports_variable_length_onion(this_arg);
27970         return nativeResponseValue;
27971 }
27972         // void InvoiceFeatures_set_variable_length_onion_optional(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
27973 /* @internal */
27974 export function InvoiceFeatures_set_variable_length_onion_optional(this_arg: number): void {
27975         if(!isWasmInitialized) {
27976                 throw new Error("initializeWasm() must be awaited first!");
27977         }
27978         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_variable_length_onion_optional(this_arg);
27979         // debug statements here
27980 }
27981         // void InvoiceFeatures_set_variable_length_onion_required(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
27982 /* @internal */
27983 export function InvoiceFeatures_set_variable_length_onion_required(this_arg: number): void {
27984         if(!isWasmInitialized) {
27985                 throw new Error("initializeWasm() must be awaited first!");
27986         }
27987         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_variable_length_onion_required(this_arg);
27988         // debug statements here
27989 }
27990         // MUST_USE_RES bool InvoiceFeatures_supports_variable_length_onion(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
27991 /* @internal */
27992 export function InvoiceFeatures_supports_variable_length_onion(this_arg: number): boolean {
27993         if(!isWasmInitialized) {
27994                 throw new Error("initializeWasm() must be awaited first!");
27995         }
27996         const nativeResponseValue = wasm.TS_InvoiceFeatures_supports_variable_length_onion(this_arg);
27997         return nativeResponseValue;
27998 }
27999         // MUST_USE_RES bool InitFeatures_requires_variable_length_onion(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28000 /* @internal */
28001 export function InitFeatures_requires_variable_length_onion(this_arg: number): boolean {
28002         if(!isWasmInitialized) {
28003                 throw new Error("initializeWasm() must be awaited first!");
28004         }
28005         const nativeResponseValue = wasm.TS_InitFeatures_requires_variable_length_onion(this_arg);
28006         return nativeResponseValue;
28007 }
28008         // MUST_USE_RES bool NodeFeatures_requires_variable_length_onion(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28009 /* @internal */
28010 export function NodeFeatures_requires_variable_length_onion(this_arg: number): boolean {
28011         if(!isWasmInitialized) {
28012                 throw new Error("initializeWasm() must be awaited first!");
28013         }
28014         const nativeResponseValue = wasm.TS_NodeFeatures_requires_variable_length_onion(this_arg);
28015         return nativeResponseValue;
28016 }
28017         // MUST_USE_RES bool InvoiceFeatures_requires_variable_length_onion(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28018 /* @internal */
28019 export function InvoiceFeatures_requires_variable_length_onion(this_arg: number): boolean {
28020         if(!isWasmInitialized) {
28021                 throw new Error("initializeWasm() must be awaited first!");
28022         }
28023         const nativeResponseValue = wasm.TS_InvoiceFeatures_requires_variable_length_onion(this_arg);
28024         return nativeResponseValue;
28025 }
28026         // void InitFeatures_set_static_remote_key_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28027 /* @internal */
28028 export function InitFeatures_set_static_remote_key_optional(this_arg: number): void {
28029         if(!isWasmInitialized) {
28030                 throw new Error("initializeWasm() must be awaited first!");
28031         }
28032         const nativeResponseValue = wasm.TS_InitFeatures_set_static_remote_key_optional(this_arg);
28033         // debug statements here
28034 }
28035         // void InitFeatures_set_static_remote_key_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28036 /* @internal */
28037 export function InitFeatures_set_static_remote_key_required(this_arg: number): void {
28038         if(!isWasmInitialized) {
28039                 throw new Error("initializeWasm() must be awaited first!");
28040         }
28041         const nativeResponseValue = wasm.TS_InitFeatures_set_static_remote_key_required(this_arg);
28042         // debug statements here
28043 }
28044         // MUST_USE_RES bool InitFeatures_supports_static_remote_key(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28045 /* @internal */
28046 export function InitFeatures_supports_static_remote_key(this_arg: number): boolean {
28047         if(!isWasmInitialized) {
28048                 throw new Error("initializeWasm() must be awaited first!");
28049         }
28050         const nativeResponseValue = wasm.TS_InitFeatures_supports_static_remote_key(this_arg);
28051         return nativeResponseValue;
28052 }
28053         // void NodeFeatures_set_static_remote_key_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28054 /* @internal */
28055 export function NodeFeatures_set_static_remote_key_optional(this_arg: number): void {
28056         if(!isWasmInitialized) {
28057                 throw new Error("initializeWasm() must be awaited first!");
28058         }
28059         const nativeResponseValue = wasm.TS_NodeFeatures_set_static_remote_key_optional(this_arg);
28060         // debug statements here
28061 }
28062         // void NodeFeatures_set_static_remote_key_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28063 /* @internal */
28064 export function NodeFeatures_set_static_remote_key_required(this_arg: number): void {
28065         if(!isWasmInitialized) {
28066                 throw new Error("initializeWasm() must be awaited first!");
28067         }
28068         const nativeResponseValue = wasm.TS_NodeFeatures_set_static_remote_key_required(this_arg);
28069         // debug statements here
28070 }
28071         // MUST_USE_RES bool NodeFeatures_supports_static_remote_key(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28072 /* @internal */
28073 export function NodeFeatures_supports_static_remote_key(this_arg: number): boolean {
28074         if(!isWasmInitialized) {
28075                 throw new Error("initializeWasm() must be awaited first!");
28076         }
28077         const nativeResponseValue = wasm.TS_NodeFeatures_supports_static_remote_key(this_arg);
28078         return nativeResponseValue;
28079 }
28080         // void ChannelTypeFeatures_set_static_remote_key_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28081 /* @internal */
28082 export function ChannelTypeFeatures_set_static_remote_key_optional(this_arg: number): void {
28083         if(!isWasmInitialized) {
28084                 throw new Error("initializeWasm() must be awaited first!");
28085         }
28086         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_static_remote_key_optional(this_arg);
28087         // debug statements here
28088 }
28089         // void ChannelTypeFeatures_set_static_remote_key_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28090 /* @internal */
28091 export function ChannelTypeFeatures_set_static_remote_key_required(this_arg: number): void {
28092         if(!isWasmInitialized) {
28093                 throw new Error("initializeWasm() must be awaited first!");
28094         }
28095         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_static_remote_key_required(this_arg);
28096         // debug statements here
28097 }
28098         // MUST_USE_RES bool ChannelTypeFeatures_supports_static_remote_key(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28099 /* @internal */
28100 export function ChannelTypeFeatures_supports_static_remote_key(this_arg: number): boolean {
28101         if(!isWasmInitialized) {
28102                 throw new Error("initializeWasm() must be awaited first!");
28103         }
28104         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_supports_static_remote_key(this_arg);
28105         return nativeResponseValue;
28106 }
28107         // MUST_USE_RES bool InitFeatures_requires_static_remote_key(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28108 /* @internal */
28109 export function InitFeatures_requires_static_remote_key(this_arg: number): boolean {
28110         if(!isWasmInitialized) {
28111                 throw new Error("initializeWasm() must be awaited first!");
28112         }
28113         const nativeResponseValue = wasm.TS_InitFeatures_requires_static_remote_key(this_arg);
28114         return nativeResponseValue;
28115 }
28116         // MUST_USE_RES bool NodeFeatures_requires_static_remote_key(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28117 /* @internal */
28118 export function NodeFeatures_requires_static_remote_key(this_arg: number): boolean {
28119         if(!isWasmInitialized) {
28120                 throw new Error("initializeWasm() must be awaited first!");
28121         }
28122         const nativeResponseValue = wasm.TS_NodeFeatures_requires_static_remote_key(this_arg);
28123         return nativeResponseValue;
28124 }
28125         // MUST_USE_RES bool ChannelTypeFeatures_requires_static_remote_key(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28126 /* @internal */
28127 export function ChannelTypeFeatures_requires_static_remote_key(this_arg: number): boolean {
28128         if(!isWasmInitialized) {
28129                 throw new Error("initializeWasm() must be awaited first!");
28130         }
28131         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_requires_static_remote_key(this_arg);
28132         return nativeResponseValue;
28133 }
28134         // void InitFeatures_set_payment_secret_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28135 /* @internal */
28136 export function InitFeatures_set_payment_secret_optional(this_arg: number): void {
28137         if(!isWasmInitialized) {
28138                 throw new Error("initializeWasm() must be awaited first!");
28139         }
28140         const nativeResponseValue = wasm.TS_InitFeatures_set_payment_secret_optional(this_arg);
28141         // debug statements here
28142 }
28143         // void InitFeatures_set_payment_secret_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28144 /* @internal */
28145 export function InitFeatures_set_payment_secret_required(this_arg: number): void {
28146         if(!isWasmInitialized) {
28147                 throw new Error("initializeWasm() must be awaited first!");
28148         }
28149         const nativeResponseValue = wasm.TS_InitFeatures_set_payment_secret_required(this_arg);
28150         // debug statements here
28151 }
28152         // MUST_USE_RES bool InitFeatures_supports_payment_secret(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28153 /* @internal */
28154 export function InitFeatures_supports_payment_secret(this_arg: number): boolean {
28155         if(!isWasmInitialized) {
28156                 throw new Error("initializeWasm() must be awaited first!");
28157         }
28158         const nativeResponseValue = wasm.TS_InitFeatures_supports_payment_secret(this_arg);
28159         return nativeResponseValue;
28160 }
28161         // void NodeFeatures_set_payment_secret_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28162 /* @internal */
28163 export function NodeFeatures_set_payment_secret_optional(this_arg: number): void {
28164         if(!isWasmInitialized) {
28165                 throw new Error("initializeWasm() must be awaited first!");
28166         }
28167         const nativeResponseValue = wasm.TS_NodeFeatures_set_payment_secret_optional(this_arg);
28168         // debug statements here
28169 }
28170         // void NodeFeatures_set_payment_secret_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28171 /* @internal */
28172 export function NodeFeatures_set_payment_secret_required(this_arg: number): void {
28173         if(!isWasmInitialized) {
28174                 throw new Error("initializeWasm() must be awaited first!");
28175         }
28176         const nativeResponseValue = wasm.TS_NodeFeatures_set_payment_secret_required(this_arg);
28177         // debug statements here
28178 }
28179         // MUST_USE_RES bool NodeFeatures_supports_payment_secret(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28180 /* @internal */
28181 export function NodeFeatures_supports_payment_secret(this_arg: number): boolean {
28182         if(!isWasmInitialized) {
28183                 throw new Error("initializeWasm() must be awaited first!");
28184         }
28185         const nativeResponseValue = wasm.TS_NodeFeatures_supports_payment_secret(this_arg);
28186         return nativeResponseValue;
28187 }
28188         // void InvoiceFeatures_set_payment_secret_optional(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28189 /* @internal */
28190 export function InvoiceFeatures_set_payment_secret_optional(this_arg: number): void {
28191         if(!isWasmInitialized) {
28192                 throw new Error("initializeWasm() must be awaited first!");
28193         }
28194         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_payment_secret_optional(this_arg);
28195         // debug statements here
28196 }
28197         // void InvoiceFeatures_set_payment_secret_required(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28198 /* @internal */
28199 export function InvoiceFeatures_set_payment_secret_required(this_arg: number): void {
28200         if(!isWasmInitialized) {
28201                 throw new Error("initializeWasm() must be awaited first!");
28202         }
28203         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_payment_secret_required(this_arg);
28204         // debug statements here
28205 }
28206         // MUST_USE_RES bool InvoiceFeatures_supports_payment_secret(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28207 /* @internal */
28208 export function InvoiceFeatures_supports_payment_secret(this_arg: number): boolean {
28209         if(!isWasmInitialized) {
28210                 throw new Error("initializeWasm() must be awaited first!");
28211         }
28212         const nativeResponseValue = wasm.TS_InvoiceFeatures_supports_payment_secret(this_arg);
28213         return nativeResponseValue;
28214 }
28215         // MUST_USE_RES bool InitFeatures_requires_payment_secret(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28216 /* @internal */
28217 export function InitFeatures_requires_payment_secret(this_arg: number): boolean {
28218         if(!isWasmInitialized) {
28219                 throw new Error("initializeWasm() must be awaited first!");
28220         }
28221         const nativeResponseValue = wasm.TS_InitFeatures_requires_payment_secret(this_arg);
28222         return nativeResponseValue;
28223 }
28224         // MUST_USE_RES bool NodeFeatures_requires_payment_secret(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28225 /* @internal */
28226 export function NodeFeatures_requires_payment_secret(this_arg: number): boolean {
28227         if(!isWasmInitialized) {
28228                 throw new Error("initializeWasm() must be awaited first!");
28229         }
28230         const nativeResponseValue = wasm.TS_NodeFeatures_requires_payment_secret(this_arg);
28231         return nativeResponseValue;
28232 }
28233         // MUST_USE_RES bool InvoiceFeatures_requires_payment_secret(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28234 /* @internal */
28235 export function InvoiceFeatures_requires_payment_secret(this_arg: number): boolean {
28236         if(!isWasmInitialized) {
28237                 throw new Error("initializeWasm() must be awaited first!");
28238         }
28239         const nativeResponseValue = wasm.TS_InvoiceFeatures_requires_payment_secret(this_arg);
28240         return nativeResponseValue;
28241 }
28242         // void InitFeatures_set_basic_mpp_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28243 /* @internal */
28244 export function InitFeatures_set_basic_mpp_optional(this_arg: number): void {
28245         if(!isWasmInitialized) {
28246                 throw new Error("initializeWasm() must be awaited first!");
28247         }
28248         const nativeResponseValue = wasm.TS_InitFeatures_set_basic_mpp_optional(this_arg);
28249         // debug statements here
28250 }
28251         // void InitFeatures_set_basic_mpp_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28252 /* @internal */
28253 export function InitFeatures_set_basic_mpp_required(this_arg: number): void {
28254         if(!isWasmInitialized) {
28255                 throw new Error("initializeWasm() must be awaited first!");
28256         }
28257         const nativeResponseValue = wasm.TS_InitFeatures_set_basic_mpp_required(this_arg);
28258         // debug statements here
28259 }
28260         // MUST_USE_RES bool InitFeatures_supports_basic_mpp(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28261 /* @internal */
28262 export function InitFeatures_supports_basic_mpp(this_arg: number): boolean {
28263         if(!isWasmInitialized) {
28264                 throw new Error("initializeWasm() must be awaited first!");
28265         }
28266         const nativeResponseValue = wasm.TS_InitFeatures_supports_basic_mpp(this_arg);
28267         return nativeResponseValue;
28268 }
28269         // void NodeFeatures_set_basic_mpp_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28270 /* @internal */
28271 export function NodeFeatures_set_basic_mpp_optional(this_arg: number): void {
28272         if(!isWasmInitialized) {
28273                 throw new Error("initializeWasm() must be awaited first!");
28274         }
28275         const nativeResponseValue = wasm.TS_NodeFeatures_set_basic_mpp_optional(this_arg);
28276         // debug statements here
28277 }
28278         // void NodeFeatures_set_basic_mpp_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28279 /* @internal */
28280 export function NodeFeatures_set_basic_mpp_required(this_arg: number): void {
28281         if(!isWasmInitialized) {
28282                 throw new Error("initializeWasm() must be awaited first!");
28283         }
28284         const nativeResponseValue = wasm.TS_NodeFeatures_set_basic_mpp_required(this_arg);
28285         // debug statements here
28286 }
28287         // MUST_USE_RES bool NodeFeatures_supports_basic_mpp(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28288 /* @internal */
28289 export function NodeFeatures_supports_basic_mpp(this_arg: number): boolean {
28290         if(!isWasmInitialized) {
28291                 throw new Error("initializeWasm() must be awaited first!");
28292         }
28293         const nativeResponseValue = wasm.TS_NodeFeatures_supports_basic_mpp(this_arg);
28294         return nativeResponseValue;
28295 }
28296         // void InvoiceFeatures_set_basic_mpp_optional(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28297 /* @internal */
28298 export function InvoiceFeatures_set_basic_mpp_optional(this_arg: number): void {
28299         if(!isWasmInitialized) {
28300                 throw new Error("initializeWasm() must be awaited first!");
28301         }
28302         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_basic_mpp_optional(this_arg);
28303         // debug statements here
28304 }
28305         // void InvoiceFeatures_set_basic_mpp_required(struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28306 /* @internal */
28307 export function InvoiceFeatures_set_basic_mpp_required(this_arg: number): void {
28308         if(!isWasmInitialized) {
28309                 throw new Error("initializeWasm() must be awaited first!");
28310         }
28311         const nativeResponseValue = wasm.TS_InvoiceFeatures_set_basic_mpp_required(this_arg);
28312         // debug statements here
28313 }
28314         // MUST_USE_RES bool InvoiceFeatures_supports_basic_mpp(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28315 /* @internal */
28316 export function InvoiceFeatures_supports_basic_mpp(this_arg: number): boolean {
28317         if(!isWasmInitialized) {
28318                 throw new Error("initializeWasm() must be awaited first!");
28319         }
28320         const nativeResponseValue = wasm.TS_InvoiceFeatures_supports_basic_mpp(this_arg);
28321         return nativeResponseValue;
28322 }
28323         // MUST_USE_RES bool InitFeatures_requires_basic_mpp(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28324 /* @internal */
28325 export function InitFeatures_requires_basic_mpp(this_arg: number): boolean {
28326         if(!isWasmInitialized) {
28327                 throw new Error("initializeWasm() must be awaited first!");
28328         }
28329         const nativeResponseValue = wasm.TS_InitFeatures_requires_basic_mpp(this_arg);
28330         return nativeResponseValue;
28331 }
28332         // MUST_USE_RES bool NodeFeatures_requires_basic_mpp(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28333 /* @internal */
28334 export function NodeFeatures_requires_basic_mpp(this_arg: number): boolean {
28335         if(!isWasmInitialized) {
28336                 throw new Error("initializeWasm() must be awaited first!");
28337         }
28338         const nativeResponseValue = wasm.TS_NodeFeatures_requires_basic_mpp(this_arg);
28339         return nativeResponseValue;
28340 }
28341         // MUST_USE_RES bool InvoiceFeatures_requires_basic_mpp(const struct LDKInvoiceFeatures *NONNULL_PTR this_arg);
28342 /* @internal */
28343 export function InvoiceFeatures_requires_basic_mpp(this_arg: number): boolean {
28344         if(!isWasmInitialized) {
28345                 throw new Error("initializeWasm() must be awaited first!");
28346         }
28347         const nativeResponseValue = wasm.TS_InvoiceFeatures_requires_basic_mpp(this_arg);
28348         return nativeResponseValue;
28349 }
28350         // void InitFeatures_set_wumbo_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28351 /* @internal */
28352 export function InitFeatures_set_wumbo_optional(this_arg: number): void {
28353         if(!isWasmInitialized) {
28354                 throw new Error("initializeWasm() must be awaited first!");
28355         }
28356         const nativeResponseValue = wasm.TS_InitFeatures_set_wumbo_optional(this_arg);
28357         // debug statements here
28358 }
28359         // void InitFeatures_set_wumbo_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28360 /* @internal */
28361 export function InitFeatures_set_wumbo_required(this_arg: number): void {
28362         if(!isWasmInitialized) {
28363                 throw new Error("initializeWasm() must be awaited first!");
28364         }
28365         const nativeResponseValue = wasm.TS_InitFeatures_set_wumbo_required(this_arg);
28366         // debug statements here
28367 }
28368         // MUST_USE_RES bool InitFeatures_supports_wumbo(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28369 /* @internal */
28370 export function InitFeatures_supports_wumbo(this_arg: number): boolean {
28371         if(!isWasmInitialized) {
28372                 throw new Error("initializeWasm() must be awaited first!");
28373         }
28374         const nativeResponseValue = wasm.TS_InitFeatures_supports_wumbo(this_arg);
28375         return nativeResponseValue;
28376 }
28377         // void NodeFeatures_set_wumbo_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28378 /* @internal */
28379 export function NodeFeatures_set_wumbo_optional(this_arg: number): void {
28380         if(!isWasmInitialized) {
28381                 throw new Error("initializeWasm() must be awaited first!");
28382         }
28383         const nativeResponseValue = wasm.TS_NodeFeatures_set_wumbo_optional(this_arg);
28384         // debug statements here
28385 }
28386         // void NodeFeatures_set_wumbo_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28387 /* @internal */
28388 export function NodeFeatures_set_wumbo_required(this_arg: number): void {
28389         if(!isWasmInitialized) {
28390                 throw new Error("initializeWasm() must be awaited first!");
28391         }
28392         const nativeResponseValue = wasm.TS_NodeFeatures_set_wumbo_required(this_arg);
28393         // debug statements here
28394 }
28395         // MUST_USE_RES bool NodeFeatures_supports_wumbo(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28396 /* @internal */
28397 export function NodeFeatures_supports_wumbo(this_arg: number): boolean {
28398         if(!isWasmInitialized) {
28399                 throw new Error("initializeWasm() must be awaited first!");
28400         }
28401         const nativeResponseValue = wasm.TS_NodeFeatures_supports_wumbo(this_arg);
28402         return nativeResponseValue;
28403 }
28404         // MUST_USE_RES bool InitFeatures_requires_wumbo(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28405 /* @internal */
28406 export function InitFeatures_requires_wumbo(this_arg: number): boolean {
28407         if(!isWasmInitialized) {
28408                 throw new Error("initializeWasm() must be awaited first!");
28409         }
28410         const nativeResponseValue = wasm.TS_InitFeatures_requires_wumbo(this_arg);
28411         return nativeResponseValue;
28412 }
28413         // MUST_USE_RES bool NodeFeatures_requires_wumbo(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28414 /* @internal */
28415 export function NodeFeatures_requires_wumbo(this_arg: number): boolean {
28416         if(!isWasmInitialized) {
28417                 throw new Error("initializeWasm() must be awaited first!");
28418         }
28419         const nativeResponseValue = wasm.TS_NodeFeatures_requires_wumbo(this_arg);
28420         return nativeResponseValue;
28421 }
28422         // void InitFeatures_set_shutdown_any_segwit_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28423 /* @internal */
28424 export function InitFeatures_set_shutdown_any_segwit_optional(this_arg: number): void {
28425         if(!isWasmInitialized) {
28426                 throw new Error("initializeWasm() must be awaited first!");
28427         }
28428         const nativeResponseValue = wasm.TS_InitFeatures_set_shutdown_any_segwit_optional(this_arg);
28429         // debug statements here
28430 }
28431         // void InitFeatures_set_shutdown_any_segwit_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28432 /* @internal */
28433 export function InitFeatures_set_shutdown_any_segwit_required(this_arg: number): void {
28434         if(!isWasmInitialized) {
28435                 throw new Error("initializeWasm() must be awaited first!");
28436         }
28437         const nativeResponseValue = wasm.TS_InitFeatures_set_shutdown_any_segwit_required(this_arg);
28438         // debug statements here
28439 }
28440         // MUST_USE_RES bool InitFeatures_supports_shutdown_anysegwit(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28441 /* @internal */
28442 export function InitFeatures_supports_shutdown_anysegwit(this_arg: number): boolean {
28443         if(!isWasmInitialized) {
28444                 throw new Error("initializeWasm() must be awaited first!");
28445         }
28446         const nativeResponseValue = wasm.TS_InitFeatures_supports_shutdown_anysegwit(this_arg);
28447         return nativeResponseValue;
28448 }
28449         // void NodeFeatures_set_shutdown_any_segwit_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28450 /* @internal */
28451 export function NodeFeatures_set_shutdown_any_segwit_optional(this_arg: number): void {
28452         if(!isWasmInitialized) {
28453                 throw new Error("initializeWasm() must be awaited first!");
28454         }
28455         const nativeResponseValue = wasm.TS_NodeFeatures_set_shutdown_any_segwit_optional(this_arg);
28456         // debug statements here
28457 }
28458         // void NodeFeatures_set_shutdown_any_segwit_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28459 /* @internal */
28460 export function NodeFeatures_set_shutdown_any_segwit_required(this_arg: number): void {
28461         if(!isWasmInitialized) {
28462                 throw new Error("initializeWasm() must be awaited first!");
28463         }
28464         const nativeResponseValue = wasm.TS_NodeFeatures_set_shutdown_any_segwit_required(this_arg);
28465         // debug statements here
28466 }
28467         // MUST_USE_RES bool NodeFeatures_supports_shutdown_anysegwit(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28468 /* @internal */
28469 export function NodeFeatures_supports_shutdown_anysegwit(this_arg: number): boolean {
28470         if(!isWasmInitialized) {
28471                 throw new Error("initializeWasm() must be awaited first!");
28472         }
28473         const nativeResponseValue = wasm.TS_NodeFeatures_supports_shutdown_anysegwit(this_arg);
28474         return nativeResponseValue;
28475 }
28476         // MUST_USE_RES bool InitFeatures_requires_shutdown_anysegwit(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28477 /* @internal */
28478 export function InitFeatures_requires_shutdown_anysegwit(this_arg: number): boolean {
28479         if(!isWasmInitialized) {
28480                 throw new Error("initializeWasm() must be awaited first!");
28481         }
28482         const nativeResponseValue = wasm.TS_InitFeatures_requires_shutdown_anysegwit(this_arg);
28483         return nativeResponseValue;
28484 }
28485         // MUST_USE_RES bool NodeFeatures_requires_shutdown_anysegwit(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28486 /* @internal */
28487 export function NodeFeatures_requires_shutdown_anysegwit(this_arg: number): boolean {
28488         if(!isWasmInitialized) {
28489                 throw new Error("initializeWasm() must be awaited first!");
28490         }
28491         const nativeResponseValue = wasm.TS_NodeFeatures_requires_shutdown_anysegwit(this_arg);
28492         return nativeResponseValue;
28493 }
28494         // void InitFeatures_set_channel_type_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28495 /* @internal */
28496 export function InitFeatures_set_channel_type_optional(this_arg: number): void {
28497         if(!isWasmInitialized) {
28498                 throw new Error("initializeWasm() must be awaited first!");
28499         }
28500         const nativeResponseValue = wasm.TS_InitFeatures_set_channel_type_optional(this_arg);
28501         // debug statements here
28502 }
28503         // void InitFeatures_set_channel_type_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28504 /* @internal */
28505 export function InitFeatures_set_channel_type_required(this_arg: number): void {
28506         if(!isWasmInitialized) {
28507                 throw new Error("initializeWasm() must be awaited first!");
28508         }
28509         const nativeResponseValue = wasm.TS_InitFeatures_set_channel_type_required(this_arg);
28510         // debug statements here
28511 }
28512         // MUST_USE_RES bool InitFeatures_supports_channel_type(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28513 /* @internal */
28514 export function InitFeatures_supports_channel_type(this_arg: number): boolean {
28515         if(!isWasmInitialized) {
28516                 throw new Error("initializeWasm() must be awaited first!");
28517         }
28518         const nativeResponseValue = wasm.TS_InitFeatures_supports_channel_type(this_arg);
28519         return nativeResponseValue;
28520 }
28521         // void NodeFeatures_set_channel_type_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28522 /* @internal */
28523 export function NodeFeatures_set_channel_type_optional(this_arg: number): void {
28524         if(!isWasmInitialized) {
28525                 throw new Error("initializeWasm() must be awaited first!");
28526         }
28527         const nativeResponseValue = wasm.TS_NodeFeatures_set_channel_type_optional(this_arg);
28528         // debug statements here
28529 }
28530         // void NodeFeatures_set_channel_type_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28531 /* @internal */
28532 export function NodeFeatures_set_channel_type_required(this_arg: number): void {
28533         if(!isWasmInitialized) {
28534                 throw new Error("initializeWasm() must be awaited first!");
28535         }
28536         const nativeResponseValue = wasm.TS_NodeFeatures_set_channel_type_required(this_arg);
28537         // debug statements here
28538 }
28539         // MUST_USE_RES bool NodeFeatures_supports_channel_type(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28540 /* @internal */
28541 export function NodeFeatures_supports_channel_type(this_arg: number): boolean {
28542         if(!isWasmInitialized) {
28543                 throw new Error("initializeWasm() must be awaited first!");
28544         }
28545         const nativeResponseValue = wasm.TS_NodeFeatures_supports_channel_type(this_arg);
28546         return nativeResponseValue;
28547 }
28548         // MUST_USE_RES bool InitFeatures_requires_channel_type(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28549 /* @internal */
28550 export function InitFeatures_requires_channel_type(this_arg: number): boolean {
28551         if(!isWasmInitialized) {
28552                 throw new Error("initializeWasm() must be awaited first!");
28553         }
28554         const nativeResponseValue = wasm.TS_InitFeatures_requires_channel_type(this_arg);
28555         return nativeResponseValue;
28556 }
28557         // MUST_USE_RES bool NodeFeatures_requires_channel_type(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28558 /* @internal */
28559 export function NodeFeatures_requires_channel_type(this_arg: number): boolean {
28560         if(!isWasmInitialized) {
28561                 throw new Error("initializeWasm() must be awaited first!");
28562         }
28563         const nativeResponseValue = wasm.TS_NodeFeatures_requires_channel_type(this_arg);
28564         return nativeResponseValue;
28565 }
28566         // void InitFeatures_set_scid_privacy_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28567 /* @internal */
28568 export function InitFeatures_set_scid_privacy_optional(this_arg: number): void {
28569         if(!isWasmInitialized) {
28570                 throw new Error("initializeWasm() must be awaited first!");
28571         }
28572         const nativeResponseValue = wasm.TS_InitFeatures_set_scid_privacy_optional(this_arg);
28573         // debug statements here
28574 }
28575         // void InitFeatures_set_scid_privacy_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28576 /* @internal */
28577 export function InitFeatures_set_scid_privacy_required(this_arg: number): void {
28578         if(!isWasmInitialized) {
28579                 throw new Error("initializeWasm() must be awaited first!");
28580         }
28581         const nativeResponseValue = wasm.TS_InitFeatures_set_scid_privacy_required(this_arg);
28582         // debug statements here
28583 }
28584         // MUST_USE_RES bool InitFeatures_supports_scid_privacy(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28585 /* @internal */
28586 export function InitFeatures_supports_scid_privacy(this_arg: number): boolean {
28587         if(!isWasmInitialized) {
28588                 throw new Error("initializeWasm() must be awaited first!");
28589         }
28590         const nativeResponseValue = wasm.TS_InitFeatures_supports_scid_privacy(this_arg);
28591         return nativeResponseValue;
28592 }
28593         // void NodeFeatures_set_scid_privacy_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28594 /* @internal */
28595 export function NodeFeatures_set_scid_privacy_optional(this_arg: number): void {
28596         if(!isWasmInitialized) {
28597                 throw new Error("initializeWasm() must be awaited first!");
28598         }
28599         const nativeResponseValue = wasm.TS_NodeFeatures_set_scid_privacy_optional(this_arg);
28600         // debug statements here
28601 }
28602         // void NodeFeatures_set_scid_privacy_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28603 /* @internal */
28604 export function NodeFeatures_set_scid_privacy_required(this_arg: number): void {
28605         if(!isWasmInitialized) {
28606                 throw new Error("initializeWasm() must be awaited first!");
28607         }
28608         const nativeResponseValue = wasm.TS_NodeFeatures_set_scid_privacy_required(this_arg);
28609         // debug statements here
28610 }
28611         // MUST_USE_RES bool NodeFeatures_supports_scid_privacy(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28612 /* @internal */
28613 export function NodeFeatures_supports_scid_privacy(this_arg: number): boolean {
28614         if(!isWasmInitialized) {
28615                 throw new Error("initializeWasm() must be awaited first!");
28616         }
28617         const nativeResponseValue = wasm.TS_NodeFeatures_supports_scid_privacy(this_arg);
28618         return nativeResponseValue;
28619 }
28620         // void ChannelTypeFeatures_set_scid_privacy_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28621 /* @internal */
28622 export function ChannelTypeFeatures_set_scid_privacy_optional(this_arg: number): void {
28623         if(!isWasmInitialized) {
28624                 throw new Error("initializeWasm() must be awaited first!");
28625         }
28626         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_scid_privacy_optional(this_arg);
28627         // debug statements here
28628 }
28629         // void ChannelTypeFeatures_set_scid_privacy_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28630 /* @internal */
28631 export function ChannelTypeFeatures_set_scid_privacy_required(this_arg: number): void {
28632         if(!isWasmInitialized) {
28633                 throw new Error("initializeWasm() must be awaited first!");
28634         }
28635         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_scid_privacy_required(this_arg);
28636         // debug statements here
28637 }
28638         // MUST_USE_RES bool ChannelTypeFeatures_supports_scid_privacy(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28639 /* @internal */
28640 export function ChannelTypeFeatures_supports_scid_privacy(this_arg: number): boolean {
28641         if(!isWasmInitialized) {
28642                 throw new Error("initializeWasm() must be awaited first!");
28643         }
28644         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_supports_scid_privacy(this_arg);
28645         return nativeResponseValue;
28646 }
28647         // MUST_USE_RES bool InitFeatures_requires_scid_privacy(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28648 /* @internal */
28649 export function InitFeatures_requires_scid_privacy(this_arg: number): boolean {
28650         if(!isWasmInitialized) {
28651                 throw new Error("initializeWasm() must be awaited first!");
28652         }
28653         const nativeResponseValue = wasm.TS_InitFeatures_requires_scid_privacy(this_arg);
28654         return nativeResponseValue;
28655 }
28656         // MUST_USE_RES bool NodeFeatures_requires_scid_privacy(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28657 /* @internal */
28658 export function NodeFeatures_requires_scid_privacy(this_arg: number): boolean {
28659         if(!isWasmInitialized) {
28660                 throw new Error("initializeWasm() must be awaited first!");
28661         }
28662         const nativeResponseValue = wasm.TS_NodeFeatures_requires_scid_privacy(this_arg);
28663         return nativeResponseValue;
28664 }
28665         // MUST_USE_RES bool ChannelTypeFeatures_requires_scid_privacy(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28666 /* @internal */
28667 export function ChannelTypeFeatures_requires_scid_privacy(this_arg: number): boolean {
28668         if(!isWasmInitialized) {
28669                 throw new Error("initializeWasm() must be awaited first!");
28670         }
28671         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_requires_scid_privacy(this_arg);
28672         return nativeResponseValue;
28673 }
28674         // void InitFeatures_set_zero_conf_optional(struct LDKInitFeatures *NONNULL_PTR this_arg);
28675 /* @internal */
28676 export function InitFeatures_set_zero_conf_optional(this_arg: number): void {
28677         if(!isWasmInitialized) {
28678                 throw new Error("initializeWasm() must be awaited first!");
28679         }
28680         const nativeResponseValue = wasm.TS_InitFeatures_set_zero_conf_optional(this_arg);
28681         // debug statements here
28682 }
28683         // void InitFeatures_set_zero_conf_required(struct LDKInitFeatures *NONNULL_PTR this_arg);
28684 /* @internal */
28685 export function InitFeatures_set_zero_conf_required(this_arg: number): void {
28686         if(!isWasmInitialized) {
28687                 throw new Error("initializeWasm() must be awaited first!");
28688         }
28689         const nativeResponseValue = wasm.TS_InitFeatures_set_zero_conf_required(this_arg);
28690         // debug statements here
28691 }
28692         // MUST_USE_RES bool InitFeatures_supports_zero_conf(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28693 /* @internal */
28694 export function InitFeatures_supports_zero_conf(this_arg: number): boolean {
28695         if(!isWasmInitialized) {
28696                 throw new Error("initializeWasm() must be awaited first!");
28697         }
28698         const nativeResponseValue = wasm.TS_InitFeatures_supports_zero_conf(this_arg);
28699         return nativeResponseValue;
28700 }
28701         // void NodeFeatures_set_zero_conf_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28702 /* @internal */
28703 export function NodeFeatures_set_zero_conf_optional(this_arg: number): void {
28704         if(!isWasmInitialized) {
28705                 throw new Error("initializeWasm() must be awaited first!");
28706         }
28707         const nativeResponseValue = wasm.TS_NodeFeatures_set_zero_conf_optional(this_arg);
28708         // debug statements here
28709 }
28710         // void NodeFeatures_set_zero_conf_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28711 /* @internal */
28712 export function NodeFeatures_set_zero_conf_required(this_arg: number): void {
28713         if(!isWasmInitialized) {
28714                 throw new Error("initializeWasm() must be awaited first!");
28715         }
28716         const nativeResponseValue = wasm.TS_NodeFeatures_set_zero_conf_required(this_arg);
28717         // debug statements here
28718 }
28719         // MUST_USE_RES bool NodeFeatures_supports_zero_conf(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28720 /* @internal */
28721 export function NodeFeatures_supports_zero_conf(this_arg: number): boolean {
28722         if(!isWasmInitialized) {
28723                 throw new Error("initializeWasm() must be awaited first!");
28724         }
28725         const nativeResponseValue = wasm.TS_NodeFeatures_supports_zero_conf(this_arg);
28726         return nativeResponseValue;
28727 }
28728         // void ChannelTypeFeatures_set_zero_conf_optional(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28729 /* @internal */
28730 export function ChannelTypeFeatures_set_zero_conf_optional(this_arg: number): void {
28731         if(!isWasmInitialized) {
28732                 throw new Error("initializeWasm() must be awaited first!");
28733         }
28734         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_zero_conf_optional(this_arg);
28735         // debug statements here
28736 }
28737         // void ChannelTypeFeatures_set_zero_conf_required(struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28738 /* @internal */
28739 export function ChannelTypeFeatures_set_zero_conf_required(this_arg: number): void {
28740         if(!isWasmInitialized) {
28741                 throw new Error("initializeWasm() must be awaited first!");
28742         }
28743         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_set_zero_conf_required(this_arg);
28744         // debug statements here
28745 }
28746         // MUST_USE_RES bool ChannelTypeFeatures_supports_zero_conf(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28747 /* @internal */
28748 export function ChannelTypeFeatures_supports_zero_conf(this_arg: number): boolean {
28749         if(!isWasmInitialized) {
28750                 throw new Error("initializeWasm() must be awaited first!");
28751         }
28752         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_supports_zero_conf(this_arg);
28753         return nativeResponseValue;
28754 }
28755         // MUST_USE_RES bool InitFeatures_requires_zero_conf(const struct LDKInitFeatures *NONNULL_PTR this_arg);
28756 /* @internal */
28757 export function InitFeatures_requires_zero_conf(this_arg: number): boolean {
28758         if(!isWasmInitialized) {
28759                 throw new Error("initializeWasm() must be awaited first!");
28760         }
28761         const nativeResponseValue = wasm.TS_InitFeatures_requires_zero_conf(this_arg);
28762         return nativeResponseValue;
28763 }
28764         // MUST_USE_RES bool NodeFeatures_requires_zero_conf(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28765 /* @internal */
28766 export function NodeFeatures_requires_zero_conf(this_arg: number): boolean {
28767         if(!isWasmInitialized) {
28768                 throw new Error("initializeWasm() must be awaited first!");
28769         }
28770         const nativeResponseValue = wasm.TS_NodeFeatures_requires_zero_conf(this_arg);
28771         return nativeResponseValue;
28772 }
28773         // MUST_USE_RES bool ChannelTypeFeatures_requires_zero_conf(const struct LDKChannelTypeFeatures *NONNULL_PTR this_arg);
28774 /* @internal */
28775 export function ChannelTypeFeatures_requires_zero_conf(this_arg: number): boolean {
28776         if(!isWasmInitialized) {
28777                 throw new Error("initializeWasm() must be awaited first!");
28778         }
28779         const nativeResponseValue = wasm.TS_ChannelTypeFeatures_requires_zero_conf(this_arg);
28780         return nativeResponseValue;
28781 }
28782         // void NodeFeatures_set_keysend_optional(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28783 /* @internal */
28784 export function NodeFeatures_set_keysend_optional(this_arg: number): void {
28785         if(!isWasmInitialized) {
28786                 throw new Error("initializeWasm() must be awaited first!");
28787         }
28788         const nativeResponseValue = wasm.TS_NodeFeatures_set_keysend_optional(this_arg);
28789         // debug statements here
28790 }
28791         // void NodeFeatures_set_keysend_required(struct LDKNodeFeatures *NONNULL_PTR this_arg);
28792 /* @internal */
28793 export function NodeFeatures_set_keysend_required(this_arg: number): void {
28794         if(!isWasmInitialized) {
28795                 throw new Error("initializeWasm() must be awaited first!");
28796         }
28797         const nativeResponseValue = wasm.TS_NodeFeatures_set_keysend_required(this_arg);
28798         // debug statements here
28799 }
28800         // MUST_USE_RES bool NodeFeatures_supports_keysend(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28801 /* @internal */
28802 export function NodeFeatures_supports_keysend(this_arg: number): boolean {
28803         if(!isWasmInitialized) {
28804                 throw new Error("initializeWasm() must be awaited first!");
28805         }
28806         const nativeResponseValue = wasm.TS_NodeFeatures_supports_keysend(this_arg);
28807         return nativeResponseValue;
28808 }
28809         // MUST_USE_RES bool NodeFeatures_requires_keysend(const struct LDKNodeFeatures *NONNULL_PTR this_arg);
28810 /* @internal */
28811 export function NodeFeatures_requires_keysend(this_arg: number): boolean {
28812         if(!isWasmInitialized) {
28813                 throw new Error("initializeWasm() must be awaited first!");
28814         }
28815         const nativeResponseValue = wasm.TS_NodeFeatures_requires_keysend(this_arg);
28816         return nativeResponseValue;
28817 }
28818         // void ShutdownScript_free(struct LDKShutdownScript this_obj);
28819 /* @internal */
28820 export function ShutdownScript_free(this_obj: number): void {
28821         if(!isWasmInitialized) {
28822                 throw new Error("initializeWasm() must be awaited first!");
28823         }
28824         const nativeResponseValue = wasm.TS_ShutdownScript_free(this_obj);
28825         // debug statements here
28826 }
28827         // uintptr_t ShutdownScript_clone_ptr(LDKShutdownScript *NONNULL_PTR arg);
28828 /* @internal */
28829 export function ShutdownScript_clone_ptr(arg: number): number {
28830         if(!isWasmInitialized) {
28831                 throw new Error("initializeWasm() must be awaited first!");
28832         }
28833         const nativeResponseValue = wasm.TS_ShutdownScript_clone_ptr(arg);
28834         return nativeResponseValue;
28835 }
28836         // struct LDKShutdownScript ShutdownScript_clone(const struct LDKShutdownScript *NONNULL_PTR orig);
28837 /* @internal */
28838 export function ShutdownScript_clone(orig: number): number {
28839         if(!isWasmInitialized) {
28840                 throw new Error("initializeWasm() must be awaited first!");
28841         }
28842         const nativeResponseValue = wasm.TS_ShutdownScript_clone(orig);
28843         return nativeResponseValue;
28844 }
28845         // void InvalidShutdownScript_free(struct LDKInvalidShutdownScript this_obj);
28846 /* @internal */
28847 export function InvalidShutdownScript_free(this_obj: number): void {
28848         if(!isWasmInitialized) {
28849                 throw new Error("initializeWasm() must be awaited first!");
28850         }
28851         const nativeResponseValue = wasm.TS_InvalidShutdownScript_free(this_obj);
28852         // debug statements here
28853 }
28854         // struct LDKu8slice InvalidShutdownScript_get_script(const struct LDKInvalidShutdownScript *NONNULL_PTR this_ptr);
28855 /* @internal */
28856 export function InvalidShutdownScript_get_script(this_ptr: number): number {
28857         if(!isWasmInitialized) {
28858                 throw new Error("initializeWasm() must be awaited first!");
28859         }
28860         const nativeResponseValue = wasm.TS_InvalidShutdownScript_get_script(this_ptr);
28861         return nativeResponseValue;
28862 }
28863         // void InvalidShutdownScript_set_script(struct LDKInvalidShutdownScript *NONNULL_PTR this_ptr, struct LDKCVec_u8Z val);
28864 /* @internal */
28865 export function InvalidShutdownScript_set_script(this_ptr: number, val: number): void {
28866         if(!isWasmInitialized) {
28867                 throw new Error("initializeWasm() must be awaited first!");
28868         }
28869         const nativeResponseValue = wasm.TS_InvalidShutdownScript_set_script(this_ptr, val);
28870         // debug statements here
28871 }
28872         // MUST_USE_RES struct LDKInvalidShutdownScript InvalidShutdownScript_new(struct LDKCVec_u8Z script_arg);
28873 /* @internal */
28874 export function InvalidShutdownScript_new(script_arg: number): number {
28875         if(!isWasmInitialized) {
28876                 throw new Error("initializeWasm() must be awaited first!");
28877         }
28878         const nativeResponseValue = wasm.TS_InvalidShutdownScript_new(script_arg);
28879         return nativeResponseValue;
28880 }
28881         // uintptr_t InvalidShutdownScript_clone_ptr(LDKInvalidShutdownScript *NONNULL_PTR arg);
28882 /* @internal */
28883 export function InvalidShutdownScript_clone_ptr(arg: number): number {
28884         if(!isWasmInitialized) {
28885                 throw new Error("initializeWasm() must be awaited first!");
28886         }
28887         const nativeResponseValue = wasm.TS_InvalidShutdownScript_clone_ptr(arg);
28888         return nativeResponseValue;
28889 }
28890         // struct LDKInvalidShutdownScript InvalidShutdownScript_clone(const struct LDKInvalidShutdownScript *NONNULL_PTR orig);
28891 /* @internal */
28892 export function InvalidShutdownScript_clone(orig: number): number {
28893         if(!isWasmInitialized) {
28894                 throw new Error("initializeWasm() must be awaited first!");
28895         }
28896         const nativeResponseValue = wasm.TS_InvalidShutdownScript_clone(orig);
28897         return nativeResponseValue;
28898 }
28899         // struct LDKCVec_u8Z ShutdownScript_write(const struct LDKShutdownScript *NONNULL_PTR obj);
28900 /* @internal */
28901 export function ShutdownScript_write(obj: number): number {
28902         if(!isWasmInitialized) {
28903                 throw new Error("initializeWasm() must be awaited first!");
28904         }
28905         const nativeResponseValue = wasm.TS_ShutdownScript_write(obj);
28906         return nativeResponseValue;
28907 }
28908         // struct LDKCResult_ShutdownScriptDecodeErrorZ ShutdownScript_read(struct LDKu8slice ser);
28909 /* @internal */
28910 export function ShutdownScript_read(ser: number): number {
28911         if(!isWasmInitialized) {
28912                 throw new Error("initializeWasm() must be awaited first!");
28913         }
28914         const nativeResponseValue = wasm.TS_ShutdownScript_read(ser);
28915         return nativeResponseValue;
28916 }
28917         // MUST_USE_RES struct LDKShutdownScript ShutdownScript_new_p2wpkh(const uint8_t (*pubkey_hash)[20]);
28918 /* @internal */
28919 export function ShutdownScript_new_p2wpkh(pubkey_hash: number): number {
28920         if(!isWasmInitialized) {
28921                 throw new Error("initializeWasm() must be awaited first!");
28922         }
28923         const nativeResponseValue = wasm.TS_ShutdownScript_new_p2wpkh(pubkey_hash);
28924         return nativeResponseValue;
28925 }
28926         // MUST_USE_RES struct LDKShutdownScript ShutdownScript_new_p2wsh(const uint8_t (*script_hash)[32]);
28927 /* @internal */
28928 export function ShutdownScript_new_p2wsh(script_hash: number): number {
28929         if(!isWasmInitialized) {
28930                 throw new Error("initializeWasm() must be awaited first!");
28931         }
28932         const nativeResponseValue = wasm.TS_ShutdownScript_new_p2wsh(script_hash);
28933         return nativeResponseValue;
28934 }
28935         // MUST_USE_RES struct LDKCResult_ShutdownScriptInvalidShutdownScriptZ ShutdownScript_new_witness_program(struct LDKWitnessVersion version, struct LDKu8slice program);
28936 /* @internal */
28937 export function ShutdownScript_new_witness_program(version: number, program: number): number {
28938         if(!isWasmInitialized) {
28939                 throw new Error("initializeWasm() must be awaited first!");
28940         }
28941         const nativeResponseValue = wasm.TS_ShutdownScript_new_witness_program(version, program);
28942         return nativeResponseValue;
28943 }
28944         // MUST_USE_RES struct LDKCVec_u8Z ShutdownScript_into_inner(struct LDKShutdownScript this_arg);
28945 /* @internal */
28946 export function ShutdownScript_into_inner(this_arg: number): number {
28947         if(!isWasmInitialized) {
28948                 throw new Error("initializeWasm() must be awaited first!");
28949         }
28950         const nativeResponseValue = wasm.TS_ShutdownScript_into_inner(this_arg);
28951         return nativeResponseValue;
28952 }
28953         // MUST_USE_RES struct LDKPublicKey ShutdownScript_as_legacy_pubkey(const struct LDKShutdownScript *NONNULL_PTR this_arg);
28954 /* @internal */
28955 export function ShutdownScript_as_legacy_pubkey(this_arg: number): number {
28956         if(!isWasmInitialized) {
28957                 throw new Error("initializeWasm() must be awaited first!");
28958         }
28959         const nativeResponseValue = wasm.TS_ShutdownScript_as_legacy_pubkey(this_arg);
28960         return nativeResponseValue;
28961 }
28962         // MUST_USE_RES bool ShutdownScript_is_compatible(const struct LDKShutdownScript *NONNULL_PTR this_arg, const struct LDKInitFeatures *NONNULL_PTR features);
28963 /* @internal */
28964 export function ShutdownScript_is_compatible(this_arg: number, features: number): boolean {
28965         if(!isWasmInitialized) {
28966                 throw new Error("initializeWasm() must be awaited first!");
28967         }
28968         const nativeResponseValue = wasm.TS_ShutdownScript_is_compatible(this_arg, features);
28969         return nativeResponseValue;
28970 }
28971         // void CustomMessageReader_free(struct LDKCustomMessageReader this_ptr);
28972 /* @internal */
28973 export function CustomMessageReader_free(this_ptr: number): void {
28974         if(!isWasmInitialized) {
28975                 throw new Error("initializeWasm() must be awaited first!");
28976         }
28977         const nativeResponseValue = wasm.TS_CustomMessageReader_free(this_ptr);
28978         // debug statements here
28979 }
28980         // uintptr_t Type_clone_ptr(LDKType *NONNULL_PTR arg);
28981 /* @internal */
28982 export function Type_clone_ptr(arg: number): number {
28983         if(!isWasmInitialized) {
28984                 throw new Error("initializeWasm() must be awaited first!");
28985         }
28986         const nativeResponseValue = wasm.TS_Type_clone_ptr(arg);
28987         return nativeResponseValue;
28988 }
28989         // struct LDKType Type_clone(const struct LDKType *NONNULL_PTR orig);
28990 /* @internal */
28991 export function Type_clone(orig: number): number {
28992         if(!isWasmInitialized) {
28993                 throw new Error("initializeWasm() must be awaited first!");
28994         }
28995         const nativeResponseValue = wasm.TS_Type_clone(orig);
28996         return nativeResponseValue;
28997 }
28998         // void Type_free(struct LDKType this_ptr);
28999 /* @internal */
29000 export function Type_free(this_ptr: number): void {
29001         if(!isWasmInitialized) {
29002                 throw new Error("initializeWasm() must be awaited first!");
29003         }
29004         const nativeResponseValue = wasm.TS_Type_free(this_ptr);
29005         // debug statements here
29006 }
29007         // void NodeId_free(struct LDKNodeId this_obj);
29008 /* @internal */
29009 export function NodeId_free(this_obj: number): void {
29010         if(!isWasmInitialized) {
29011                 throw new Error("initializeWasm() must be awaited first!");
29012         }
29013         const nativeResponseValue = wasm.TS_NodeId_free(this_obj);
29014         // debug statements here
29015 }
29016         // uintptr_t NodeId_clone_ptr(LDKNodeId *NONNULL_PTR arg);
29017 /* @internal */
29018 export function NodeId_clone_ptr(arg: number): number {
29019         if(!isWasmInitialized) {
29020                 throw new Error("initializeWasm() must be awaited first!");
29021         }
29022         const nativeResponseValue = wasm.TS_NodeId_clone_ptr(arg);
29023         return nativeResponseValue;
29024 }
29025         // struct LDKNodeId NodeId_clone(const struct LDKNodeId *NONNULL_PTR orig);
29026 /* @internal */
29027 export function NodeId_clone(orig: number): number {
29028         if(!isWasmInitialized) {
29029                 throw new Error("initializeWasm() must be awaited first!");
29030         }
29031         const nativeResponseValue = wasm.TS_NodeId_clone(orig);
29032         return nativeResponseValue;
29033 }
29034         // MUST_USE_RES struct LDKNodeId NodeId_from_pubkey(struct LDKPublicKey pubkey);
29035 /* @internal */
29036 export function NodeId_from_pubkey(pubkey: number): number {
29037         if(!isWasmInitialized) {
29038                 throw new Error("initializeWasm() must be awaited first!");
29039         }
29040         const nativeResponseValue = wasm.TS_NodeId_from_pubkey(pubkey);
29041         return nativeResponseValue;
29042 }
29043         // MUST_USE_RES struct LDKu8slice NodeId_as_slice(const struct LDKNodeId *NONNULL_PTR this_arg);
29044 /* @internal */
29045 export function NodeId_as_slice(this_arg: number): number {
29046         if(!isWasmInitialized) {
29047                 throw new Error("initializeWasm() must be awaited first!");
29048         }
29049         const nativeResponseValue = wasm.TS_NodeId_as_slice(this_arg);
29050         return nativeResponseValue;
29051 }
29052         // uint64_t NodeId_hash(const struct LDKNodeId *NONNULL_PTR o);
29053 /* @internal */
29054 export function NodeId_hash(o: number): bigint {
29055         if(!isWasmInitialized) {
29056                 throw new Error("initializeWasm() must be awaited first!");
29057         }
29058         const nativeResponseValue = wasm.TS_NodeId_hash(o);
29059         return nativeResponseValue;
29060 }
29061         // struct LDKCVec_u8Z NodeId_write(const struct LDKNodeId *NONNULL_PTR obj);
29062 /* @internal */
29063 export function NodeId_write(obj: number): number {
29064         if(!isWasmInitialized) {
29065                 throw new Error("initializeWasm() must be awaited first!");
29066         }
29067         const nativeResponseValue = wasm.TS_NodeId_write(obj);
29068         return nativeResponseValue;
29069 }
29070         // struct LDKCResult_NodeIdDecodeErrorZ NodeId_read(struct LDKu8slice ser);
29071 /* @internal */
29072 export function NodeId_read(ser: number): number {
29073         if(!isWasmInitialized) {
29074                 throw new Error("initializeWasm() must be awaited first!");
29075         }
29076         const nativeResponseValue = wasm.TS_NodeId_read(ser);
29077         return nativeResponseValue;
29078 }
29079         // void NetworkGraph_free(struct LDKNetworkGraph this_obj);
29080 /* @internal */
29081 export function NetworkGraph_free(this_obj: number): void {
29082         if(!isWasmInitialized) {
29083                 throw new Error("initializeWasm() must be awaited first!");
29084         }
29085         const nativeResponseValue = wasm.TS_NetworkGraph_free(this_obj);
29086         // debug statements here
29087 }
29088         // void ReadOnlyNetworkGraph_free(struct LDKReadOnlyNetworkGraph this_obj);
29089 /* @internal */
29090 export function ReadOnlyNetworkGraph_free(this_obj: number): void {
29091         if(!isWasmInitialized) {
29092                 throw new Error("initializeWasm() must be awaited first!");
29093         }
29094         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_free(this_obj);
29095         // debug statements here
29096 }
29097         // void NetworkUpdate_free(struct LDKNetworkUpdate this_ptr);
29098 /* @internal */
29099 export function NetworkUpdate_free(this_ptr: number): void {
29100         if(!isWasmInitialized) {
29101                 throw new Error("initializeWasm() must be awaited first!");
29102         }
29103         const nativeResponseValue = wasm.TS_NetworkUpdate_free(this_ptr);
29104         // debug statements here
29105 }
29106         // uintptr_t NetworkUpdate_clone_ptr(LDKNetworkUpdate *NONNULL_PTR arg);
29107 /* @internal */
29108 export function NetworkUpdate_clone_ptr(arg: number): number {
29109         if(!isWasmInitialized) {
29110                 throw new Error("initializeWasm() must be awaited first!");
29111         }
29112         const nativeResponseValue = wasm.TS_NetworkUpdate_clone_ptr(arg);
29113         return nativeResponseValue;
29114 }
29115         // struct LDKNetworkUpdate NetworkUpdate_clone(const struct LDKNetworkUpdate *NONNULL_PTR orig);
29116 /* @internal */
29117 export function NetworkUpdate_clone(orig: number): number {
29118         if(!isWasmInitialized) {
29119                 throw new Error("initializeWasm() must be awaited first!");
29120         }
29121         const nativeResponseValue = wasm.TS_NetworkUpdate_clone(orig);
29122         return nativeResponseValue;
29123 }
29124         // struct LDKNetworkUpdate NetworkUpdate_channel_update_message(struct LDKChannelUpdate msg);
29125 /* @internal */
29126 export function NetworkUpdate_channel_update_message(msg: number): number {
29127         if(!isWasmInitialized) {
29128                 throw new Error("initializeWasm() must be awaited first!");
29129         }
29130         const nativeResponseValue = wasm.TS_NetworkUpdate_channel_update_message(msg);
29131         return nativeResponseValue;
29132 }
29133         // struct LDKNetworkUpdate NetworkUpdate_channel_failure(uint64_t short_channel_id, bool is_permanent);
29134 /* @internal */
29135 export function NetworkUpdate_channel_failure(short_channel_id: bigint, is_permanent: boolean): number {
29136         if(!isWasmInitialized) {
29137                 throw new Error("initializeWasm() must be awaited first!");
29138         }
29139         const nativeResponseValue = wasm.TS_NetworkUpdate_channel_failure(short_channel_id, is_permanent);
29140         return nativeResponseValue;
29141 }
29142         // struct LDKNetworkUpdate NetworkUpdate_node_failure(struct LDKPublicKey node_id, bool is_permanent);
29143 /* @internal */
29144 export function NetworkUpdate_node_failure(node_id: number, is_permanent: boolean): number {
29145         if(!isWasmInitialized) {
29146                 throw new Error("initializeWasm() must be awaited first!");
29147         }
29148         const nativeResponseValue = wasm.TS_NetworkUpdate_node_failure(node_id, is_permanent);
29149         return nativeResponseValue;
29150 }
29151         // struct LDKCVec_u8Z NetworkUpdate_write(const struct LDKNetworkUpdate *NONNULL_PTR obj);
29152 /* @internal */
29153 export function NetworkUpdate_write(obj: number): number {
29154         if(!isWasmInitialized) {
29155                 throw new Error("initializeWasm() must be awaited first!");
29156         }
29157         const nativeResponseValue = wasm.TS_NetworkUpdate_write(obj);
29158         return nativeResponseValue;
29159 }
29160         // struct LDKCResult_COption_NetworkUpdateZDecodeErrorZ NetworkUpdate_read(struct LDKu8slice ser);
29161 /* @internal */
29162 export function NetworkUpdate_read(ser: number): number {
29163         if(!isWasmInitialized) {
29164                 throw new Error("initializeWasm() must be awaited first!");
29165         }
29166         const nativeResponseValue = wasm.TS_NetworkUpdate_read(ser);
29167         return nativeResponseValue;
29168 }
29169         // void P2PGossipSync_free(struct LDKP2PGossipSync this_obj);
29170 /* @internal */
29171 export function P2PGossipSync_free(this_obj: number): void {
29172         if(!isWasmInitialized) {
29173                 throw new Error("initializeWasm() must be awaited first!");
29174         }
29175         const nativeResponseValue = wasm.TS_P2PGossipSync_free(this_obj);
29176         // debug statements here
29177 }
29178         // MUST_USE_RES struct LDKP2PGossipSync P2PGossipSync_new(const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKCOption_AccessZ chain_access, struct LDKLogger logger);
29179 /* @internal */
29180 export function P2PGossipSync_new(network_graph: number, chain_access: number, logger: number): number {
29181         if(!isWasmInitialized) {
29182                 throw new Error("initializeWasm() must be awaited first!");
29183         }
29184         const nativeResponseValue = wasm.TS_P2PGossipSync_new(network_graph, chain_access, logger);
29185         return nativeResponseValue;
29186 }
29187         // void P2PGossipSync_add_chain_access(struct LDKP2PGossipSync *NONNULL_PTR this_arg, struct LDKCOption_AccessZ chain_access);
29188 /* @internal */
29189 export function P2PGossipSync_add_chain_access(this_arg: number, chain_access: number): void {
29190         if(!isWasmInitialized) {
29191                 throw new Error("initializeWasm() must be awaited first!");
29192         }
29193         const nativeResponseValue = wasm.TS_P2PGossipSync_add_chain_access(this_arg, chain_access);
29194         // debug statements here
29195 }
29196         // struct LDKEventHandler NetworkGraph_as_EventHandler(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
29197 /* @internal */
29198 export function NetworkGraph_as_EventHandler(this_arg: number): number {
29199         if(!isWasmInitialized) {
29200                 throw new Error("initializeWasm() must be awaited first!");
29201         }
29202         const nativeResponseValue = wasm.TS_NetworkGraph_as_EventHandler(this_arg);
29203         return nativeResponseValue;
29204 }
29205         // struct LDKRoutingMessageHandler P2PGossipSync_as_RoutingMessageHandler(const struct LDKP2PGossipSync *NONNULL_PTR this_arg);
29206 /* @internal */
29207 export function P2PGossipSync_as_RoutingMessageHandler(this_arg: number): number {
29208         if(!isWasmInitialized) {
29209                 throw new Error("initializeWasm() must be awaited first!");
29210         }
29211         const nativeResponseValue = wasm.TS_P2PGossipSync_as_RoutingMessageHandler(this_arg);
29212         return nativeResponseValue;
29213 }
29214         // struct LDKMessageSendEventsProvider P2PGossipSync_as_MessageSendEventsProvider(const struct LDKP2PGossipSync *NONNULL_PTR this_arg);
29215 /* @internal */
29216 export function P2PGossipSync_as_MessageSendEventsProvider(this_arg: number): number {
29217         if(!isWasmInitialized) {
29218                 throw new Error("initializeWasm() must be awaited first!");
29219         }
29220         const nativeResponseValue = wasm.TS_P2PGossipSync_as_MessageSendEventsProvider(this_arg);
29221         return nativeResponseValue;
29222 }
29223         // void ChannelUpdateInfo_free(struct LDKChannelUpdateInfo this_obj);
29224 /* @internal */
29225 export function ChannelUpdateInfo_free(this_obj: number): void {
29226         if(!isWasmInitialized) {
29227                 throw new Error("initializeWasm() must be awaited first!");
29228         }
29229         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_free(this_obj);
29230         // debug statements here
29231 }
29232         // uint32_t ChannelUpdateInfo_get_last_update(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29233 /* @internal */
29234 export function ChannelUpdateInfo_get_last_update(this_ptr: number): number {
29235         if(!isWasmInitialized) {
29236                 throw new Error("initializeWasm() must be awaited first!");
29237         }
29238         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_last_update(this_ptr);
29239         return nativeResponseValue;
29240 }
29241         // void ChannelUpdateInfo_set_last_update(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint32_t val);
29242 /* @internal */
29243 export function ChannelUpdateInfo_set_last_update(this_ptr: number, val: number): void {
29244         if(!isWasmInitialized) {
29245                 throw new Error("initializeWasm() must be awaited first!");
29246         }
29247         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_last_update(this_ptr, val);
29248         // debug statements here
29249 }
29250         // bool ChannelUpdateInfo_get_enabled(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29251 /* @internal */
29252 export function ChannelUpdateInfo_get_enabled(this_ptr: number): boolean {
29253         if(!isWasmInitialized) {
29254                 throw new Error("initializeWasm() must be awaited first!");
29255         }
29256         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_enabled(this_ptr);
29257         return nativeResponseValue;
29258 }
29259         // void ChannelUpdateInfo_set_enabled(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, bool val);
29260 /* @internal */
29261 export function ChannelUpdateInfo_set_enabled(this_ptr: number, val: boolean): void {
29262         if(!isWasmInitialized) {
29263                 throw new Error("initializeWasm() must be awaited first!");
29264         }
29265         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_enabled(this_ptr, val);
29266         // debug statements here
29267 }
29268         // uint16_t ChannelUpdateInfo_get_cltv_expiry_delta(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29269 /* @internal */
29270 export function ChannelUpdateInfo_get_cltv_expiry_delta(this_ptr: number): number {
29271         if(!isWasmInitialized) {
29272                 throw new Error("initializeWasm() must be awaited first!");
29273         }
29274         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_cltv_expiry_delta(this_ptr);
29275         return nativeResponseValue;
29276 }
29277         // void ChannelUpdateInfo_set_cltv_expiry_delta(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint16_t val);
29278 /* @internal */
29279 export function ChannelUpdateInfo_set_cltv_expiry_delta(this_ptr: number, val: number): void {
29280         if(!isWasmInitialized) {
29281                 throw new Error("initializeWasm() must be awaited first!");
29282         }
29283         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_cltv_expiry_delta(this_ptr, val);
29284         // debug statements here
29285 }
29286         // uint64_t ChannelUpdateInfo_get_htlc_minimum_msat(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29287 /* @internal */
29288 export function ChannelUpdateInfo_get_htlc_minimum_msat(this_ptr: number): bigint {
29289         if(!isWasmInitialized) {
29290                 throw new Error("initializeWasm() must be awaited first!");
29291         }
29292         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_htlc_minimum_msat(this_ptr);
29293         return nativeResponseValue;
29294 }
29295         // void ChannelUpdateInfo_set_htlc_minimum_msat(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint64_t val);
29296 /* @internal */
29297 export function ChannelUpdateInfo_set_htlc_minimum_msat(this_ptr: number, val: bigint): void {
29298         if(!isWasmInitialized) {
29299                 throw new Error("initializeWasm() must be awaited first!");
29300         }
29301         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_htlc_minimum_msat(this_ptr, val);
29302         // debug statements here
29303 }
29304         // uint64_t ChannelUpdateInfo_get_htlc_maximum_msat(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29305 /* @internal */
29306 export function ChannelUpdateInfo_get_htlc_maximum_msat(this_ptr: number): bigint {
29307         if(!isWasmInitialized) {
29308                 throw new Error("initializeWasm() must be awaited first!");
29309         }
29310         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_htlc_maximum_msat(this_ptr);
29311         return nativeResponseValue;
29312 }
29313         // void ChannelUpdateInfo_set_htlc_maximum_msat(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, uint64_t val);
29314 /* @internal */
29315 export function ChannelUpdateInfo_set_htlc_maximum_msat(this_ptr: number, val: bigint): void {
29316         if(!isWasmInitialized) {
29317                 throw new Error("initializeWasm() must be awaited first!");
29318         }
29319         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_htlc_maximum_msat(this_ptr, val);
29320         // debug statements here
29321 }
29322         // struct LDKRoutingFees ChannelUpdateInfo_get_fees(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29323 /* @internal */
29324 export function ChannelUpdateInfo_get_fees(this_ptr: number): number {
29325         if(!isWasmInitialized) {
29326                 throw new Error("initializeWasm() must be awaited first!");
29327         }
29328         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_fees(this_ptr);
29329         return nativeResponseValue;
29330 }
29331         // void ChannelUpdateInfo_set_fees(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, struct LDKRoutingFees val);
29332 /* @internal */
29333 export function ChannelUpdateInfo_set_fees(this_ptr: number, val: number): void {
29334         if(!isWasmInitialized) {
29335                 throw new Error("initializeWasm() must be awaited first!");
29336         }
29337         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_fees(this_ptr, val);
29338         // debug statements here
29339 }
29340         // struct LDKChannelUpdate ChannelUpdateInfo_get_last_update_message(const struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr);
29341 /* @internal */
29342 export function ChannelUpdateInfo_get_last_update_message(this_ptr: number): number {
29343         if(!isWasmInitialized) {
29344                 throw new Error("initializeWasm() must be awaited first!");
29345         }
29346         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_get_last_update_message(this_ptr);
29347         return nativeResponseValue;
29348 }
29349         // void ChannelUpdateInfo_set_last_update_message(struct LDKChannelUpdateInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdate val);
29350 /* @internal */
29351 export function ChannelUpdateInfo_set_last_update_message(this_ptr: number, val: number): void {
29352         if(!isWasmInitialized) {
29353                 throw new Error("initializeWasm() must be awaited first!");
29354         }
29355         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_set_last_update_message(this_ptr, val);
29356         // debug statements here
29357 }
29358         // MUST_USE_RES struct LDKChannelUpdateInfo ChannelUpdateInfo_new(uint32_t last_update_arg, bool enabled_arg, uint16_t cltv_expiry_delta_arg, uint64_t htlc_minimum_msat_arg, uint64_t htlc_maximum_msat_arg, struct LDKRoutingFees fees_arg, struct LDKChannelUpdate last_update_message_arg);
29359 /* @internal */
29360 export function ChannelUpdateInfo_new(last_update_arg: number, enabled_arg: boolean, cltv_expiry_delta_arg: number, htlc_minimum_msat_arg: bigint, htlc_maximum_msat_arg: bigint, fees_arg: number, last_update_message_arg: number): number {
29361         if(!isWasmInitialized) {
29362                 throw new Error("initializeWasm() must be awaited first!");
29363         }
29364         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_new(last_update_arg, enabled_arg, cltv_expiry_delta_arg, htlc_minimum_msat_arg, htlc_maximum_msat_arg, fees_arg, last_update_message_arg);
29365         return nativeResponseValue;
29366 }
29367         // uintptr_t ChannelUpdateInfo_clone_ptr(LDKChannelUpdateInfo *NONNULL_PTR arg);
29368 /* @internal */
29369 export function ChannelUpdateInfo_clone_ptr(arg: number): number {
29370         if(!isWasmInitialized) {
29371                 throw new Error("initializeWasm() must be awaited first!");
29372         }
29373         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_clone_ptr(arg);
29374         return nativeResponseValue;
29375 }
29376         // struct LDKChannelUpdateInfo ChannelUpdateInfo_clone(const struct LDKChannelUpdateInfo *NONNULL_PTR orig);
29377 /* @internal */
29378 export function ChannelUpdateInfo_clone(orig: number): number {
29379         if(!isWasmInitialized) {
29380                 throw new Error("initializeWasm() must be awaited first!");
29381         }
29382         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_clone(orig);
29383         return nativeResponseValue;
29384 }
29385         // struct LDKCVec_u8Z ChannelUpdateInfo_write(const struct LDKChannelUpdateInfo *NONNULL_PTR obj);
29386 /* @internal */
29387 export function ChannelUpdateInfo_write(obj: number): number {
29388         if(!isWasmInitialized) {
29389                 throw new Error("initializeWasm() must be awaited first!");
29390         }
29391         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_write(obj);
29392         return nativeResponseValue;
29393 }
29394         // struct LDKCResult_ChannelUpdateInfoDecodeErrorZ ChannelUpdateInfo_read(struct LDKu8slice ser);
29395 /* @internal */
29396 export function ChannelUpdateInfo_read(ser: number): number {
29397         if(!isWasmInitialized) {
29398                 throw new Error("initializeWasm() must be awaited first!");
29399         }
29400         const nativeResponseValue = wasm.TS_ChannelUpdateInfo_read(ser);
29401         return nativeResponseValue;
29402 }
29403         // void ChannelInfo_free(struct LDKChannelInfo this_obj);
29404 /* @internal */
29405 export function ChannelInfo_free(this_obj: number): void {
29406         if(!isWasmInitialized) {
29407                 throw new Error("initializeWasm() must be awaited first!");
29408         }
29409         const nativeResponseValue = wasm.TS_ChannelInfo_free(this_obj);
29410         // debug statements here
29411 }
29412         // struct LDKChannelFeatures ChannelInfo_get_features(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29413 /* @internal */
29414 export function ChannelInfo_get_features(this_ptr: number): number {
29415         if(!isWasmInitialized) {
29416                 throw new Error("initializeWasm() must be awaited first!");
29417         }
29418         const nativeResponseValue = wasm.TS_ChannelInfo_get_features(this_ptr);
29419         return nativeResponseValue;
29420 }
29421         // void ChannelInfo_set_features(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
29422 /* @internal */
29423 export function ChannelInfo_set_features(this_ptr: number, val: number): void {
29424         if(!isWasmInitialized) {
29425                 throw new Error("initializeWasm() must be awaited first!");
29426         }
29427         const nativeResponseValue = wasm.TS_ChannelInfo_set_features(this_ptr, val);
29428         // debug statements here
29429 }
29430         // struct LDKNodeId ChannelInfo_get_node_one(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29431 /* @internal */
29432 export function ChannelInfo_get_node_one(this_ptr: number): number {
29433         if(!isWasmInitialized) {
29434                 throw new Error("initializeWasm() must be awaited first!");
29435         }
29436         const nativeResponseValue = wasm.TS_ChannelInfo_get_node_one(this_ptr);
29437         return nativeResponseValue;
29438 }
29439         // void ChannelInfo_set_node_one(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKNodeId val);
29440 /* @internal */
29441 export function ChannelInfo_set_node_one(this_ptr: number, val: number): void {
29442         if(!isWasmInitialized) {
29443                 throw new Error("initializeWasm() must be awaited first!");
29444         }
29445         const nativeResponseValue = wasm.TS_ChannelInfo_set_node_one(this_ptr, val);
29446         // debug statements here
29447 }
29448         // struct LDKChannelUpdateInfo ChannelInfo_get_one_to_two(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29449 /* @internal */
29450 export function ChannelInfo_get_one_to_two(this_ptr: number): number {
29451         if(!isWasmInitialized) {
29452                 throw new Error("initializeWasm() must be awaited first!");
29453         }
29454         const nativeResponseValue = wasm.TS_ChannelInfo_get_one_to_two(this_ptr);
29455         return nativeResponseValue;
29456 }
29457         // void ChannelInfo_set_one_to_two(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdateInfo val);
29458 /* @internal */
29459 export function ChannelInfo_set_one_to_two(this_ptr: number, val: number): void {
29460         if(!isWasmInitialized) {
29461                 throw new Error("initializeWasm() must be awaited first!");
29462         }
29463         const nativeResponseValue = wasm.TS_ChannelInfo_set_one_to_two(this_ptr, val);
29464         // debug statements here
29465 }
29466         // struct LDKNodeId ChannelInfo_get_node_two(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29467 /* @internal */
29468 export function ChannelInfo_get_node_two(this_ptr: number): number {
29469         if(!isWasmInitialized) {
29470                 throw new Error("initializeWasm() must be awaited first!");
29471         }
29472         const nativeResponseValue = wasm.TS_ChannelInfo_get_node_two(this_ptr);
29473         return nativeResponseValue;
29474 }
29475         // void ChannelInfo_set_node_two(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKNodeId val);
29476 /* @internal */
29477 export function ChannelInfo_set_node_two(this_ptr: number, val: number): void {
29478         if(!isWasmInitialized) {
29479                 throw new Error("initializeWasm() must be awaited first!");
29480         }
29481         const nativeResponseValue = wasm.TS_ChannelInfo_set_node_two(this_ptr, val);
29482         // debug statements here
29483 }
29484         // struct LDKChannelUpdateInfo ChannelInfo_get_two_to_one(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29485 /* @internal */
29486 export function ChannelInfo_get_two_to_one(this_ptr: number): number {
29487         if(!isWasmInitialized) {
29488                 throw new Error("initializeWasm() must be awaited first!");
29489         }
29490         const nativeResponseValue = wasm.TS_ChannelInfo_get_two_to_one(this_ptr);
29491         return nativeResponseValue;
29492 }
29493         // void ChannelInfo_set_two_to_one(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelUpdateInfo val);
29494 /* @internal */
29495 export function ChannelInfo_set_two_to_one(this_ptr: number, val: number): void {
29496         if(!isWasmInitialized) {
29497                 throw new Error("initializeWasm() must be awaited first!");
29498         }
29499         const nativeResponseValue = wasm.TS_ChannelInfo_set_two_to_one(this_ptr, val);
29500         // debug statements here
29501 }
29502         // struct LDKCOption_u64Z ChannelInfo_get_capacity_sats(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29503 /* @internal */
29504 export function ChannelInfo_get_capacity_sats(this_ptr: number): number {
29505         if(!isWasmInitialized) {
29506                 throw new Error("initializeWasm() must be awaited first!");
29507         }
29508         const nativeResponseValue = wasm.TS_ChannelInfo_get_capacity_sats(this_ptr);
29509         return nativeResponseValue;
29510 }
29511         // void ChannelInfo_set_capacity_sats(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
29512 /* @internal */
29513 export function ChannelInfo_set_capacity_sats(this_ptr: number, val: number): void {
29514         if(!isWasmInitialized) {
29515                 throw new Error("initializeWasm() must be awaited first!");
29516         }
29517         const nativeResponseValue = wasm.TS_ChannelInfo_set_capacity_sats(this_ptr, val);
29518         // debug statements here
29519 }
29520         // struct LDKChannelAnnouncement ChannelInfo_get_announcement_message(const struct LDKChannelInfo *NONNULL_PTR this_ptr);
29521 /* @internal */
29522 export function ChannelInfo_get_announcement_message(this_ptr: number): number {
29523         if(!isWasmInitialized) {
29524                 throw new Error("initializeWasm() must be awaited first!");
29525         }
29526         const nativeResponseValue = wasm.TS_ChannelInfo_get_announcement_message(this_ptr);
29527         return nativeResponseValue;
29528 }
29529         // void ChannelInfo_set_announcement_message(struct LDKChannelInfo *NONNULL_PTR this_ptr, struct LDKChannelAnnouncement val);
29530 /* @internal */
29531 export function ChannelInfo_set_announcement_message(this_ptr: number, val: number): void {
29532         if(!isWasmInitialized) {
29533                 throw new Error("initializeWasm() must be awaited first!");
29534         }
29535         const nativeResponseValue = wasm.TS_ChannelInfo_set_announcement_message(this_ptr, val);
29536         // debug statements here
29537 }
29538         // uintptr_t ChannelInfo_clone_ptr(LDKChannelInfo *NONNULL_PTR arg);
29539 /* @internal */
29540 export function ChannelInfo_clone_ptr(arg: number): number {
29541         if(!isWasmInitialized) {
29542                 throw new Error("initializeWasm() must be awaited first!");
29543         }
29544         const nativeResponseValue = wasm.TS_ChannelInfo_clone_ptr(arg);
29545         return nativeResponseValue;
29546 }
29547         // struct LDKChannelInfo ChannelInfo_clone(const struct LDKChannelInfo *NONNULL_PTR orig);
29548 /* @internal */
29549 export function ChannelInfo_clone(orig: number): number {
29550         if(!isWasmInitialized) {
29551                 throw new Error("initializeWasm() must be awaited first!");
29552         }
29553         const nativeResponseValue = wasm.TS_ChannelInfo_clone(orig);
29554         return nativeResponseValue;
29555 }
29556         // MUST_USE_RES struct LDKChannelUpdateInfo ChannelInfo_get_directional_info(const struct LDKChannelInfo *NONNULL_PTR this_arg, uint8_t channel_flags);
29557 /* @internal */
29558 export function ChannelInfo_get_directional_info(this_arg: number, channel_flags: number): number {
29559         if(!isWasmInitialized) {
29560                 throw new Error("initializeWasm() must be awaited first!");
29561         }
29562         const nativeResponseValue = wasm.TS_ChannelInfo_get_directional_info(this_arg, channel_flags);
29563         return nativeResponseValue;
29564 }
29565         // struct LDKCVec_u8Z ChannelInfo_write(const struct LDKChannelInfo *NONNULL_PTR obj);
29566 /* @internal */
29567 export function ChannelInfo_write(obj: number): number {
29568         if(!isWasmInitialized) {
29569                 throw new Error("initializeWasm() must be awaited first!");
29570         }
29571         const nativeResponseValue = wasm.TS_ChannelInfo_write(obj);
29572         return nativeResponseValue;
29573 }
29574         // struct LDKCResult_ChannelInfoDecodeErrorZ ChannelInfo_read(struct LDKu8slice ser);
29575 /* @internal */
29576 export function ChannelInfo_read(ser: number): number {
29577         if(!isWasmInitialized) {
29578                 throw new Error("initializeWasm() must be awaited first!");
29579         }
29580         const nativeResponseValue = wasm.TS_ChannelInfo_read(ser);
29581         return nativeResponseValue;
29582 }
29583         // void DirectedChannelInfo_free(struct LDKDirectedChannelInfo this_obj);
29584 /* @internal */
29585 export function DirectedChannelInfo_free(this_obj: number): void {
29586         if(!isWasmInitialized) {
29587                 throw new Error("initializeWasm() must be awaited first!");
29588         }
29589         const nativeResponseValue = wasm.TS_DirectedChannelInfo_free(this_obj);
29590         // debug statements here
29591 }
29592         // uintptr_t DirectedChannelInfo_clone_ptr(LDKDirectedChannelInfo *NONNULL_PTR arg);
29593 /* @internal */
29594 export function DirectedChannelInfo_clone_ptr(arg: number): number {
29595         if(!isWasmInitialized) {
29596                 throw new Error("initializeWasm() must be awaited first!");
29597         }
29598         const nativeResponseValue = wasm.TS_DirectedChannelInfo_clone_ptr(arg);
29599         return nativeResponseValue;
29600 }
29601         // struct LDKDirectedChannelInfo DirectedChannelInfo_clone(const struct LDKDirectedChannelInfo *NONNULL_PTR orig);
29602 /* @internal */
29603 export function DirectedChannelInfo_clone(orig: number): number {
29604         if(!isWasmInitialized) {
29605                 throw new Error("initializeWasm() must be awaited first!");
29606         }
29607         const nativeResponseValue = wasm.TS_DirectedChannelInfo_clone(orig);
29608         return nativeResponseValue;
29609 }
29610         // MUST_USE_RES struct LDKChannelInfo DirectedChannelInfo_channel(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
29611 /* @internal */
29612 export function DirectedChannelInfo_channel(this_arg: number): number {
29613         if(!isWasmInitialized) {
29614                 throw new Error("initializeWasm() must be awaited first!");
29615         }
29616         const nativeResponseValue = wasm.TS_DirectedChannelInfo_channel(this_arg);
29617         return nativeResponseValue;
29618 }
29619         // MUST_USE_RES struct LDKChannelUpdateInfo DirectedChannelInfo_direction(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
29620 /* @internal */
29621 export function DirectedChannelInfo_direction(this_arg: number): number {
29622         if(!isWasmInitialized) {
29623                 throw new Error("initializeWasm() must be awaited first!");
29624         }
29625         const nativeResponseValue = wasm.TS_DirectedChannelInfo_direction(this_arg);
29626         return nativeResponseValue;
29627 }
29628         // MUST_USE_RES uint64_t DirectedChannelInfo_htlc_maximum_msat(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
29629 /* @internal */
29630 export function DirectedChannelInfo_htlc_maximum_msat(this_arg: number): bigint {
29631         if(!isWasmInitialized) {
29632                 throw new Error("initializeWasm() must be awaited first!");
29633         }
29634         const nativeResponseValue = wasm.TS_DirectedChannelInfo_htlc_maximum_msat(this_arg);
29635         return nativeResponseValue;
29636 }
29637         // MUST_USE_RES struct LDKEffectiveCapacity DirectedChannelInfo_effective_capacity(const struct LDKDirectedChannelInfo *NONNULL_PTR this_arg);
29638 /* @internal */
29639 export function DirectedChannelInfo_effective_capacity(this_arg: number): number {
29640         if(!isWasmInitialized) {
29641                 throw new Error("initializeWasm() must be awaited first!");
29642         }
29643         const nativeResponseValue = wasm.TS_DirectedChannelInfo_effective_capacity(this_arg);
29644         return nativeResponseValue;
29645 }
29646         // void EffectiveCapacity_free(struct LDKEffectiveCapacity this_ptr);
29647 /* @internal */
29648 export function EffectiveCapacity_free(this_ptr: number): void {
29649         if(!isWasmInitialized) {
29650                 throw new Error("initializeWasm() must be awaited first!");
29651         }
29652         const nativeResponseValue = wasm.TS_EffectiveCapacity_free(this_ptr);
29653         // debug statements here
29654 }
29655         // uintptr_t EffectiveCapacity_clone_ptr(LDKEffectiveCapacity *NONNULL_PTR arg);
29656 /* @internal */
29657 export function EffectiveCapacity_clone_ptr(arg: number): number {
29658         if(!isWasmInitialized) {
29659                 throw new Error("initializeWasm() must be awaited first!");
29660         }
29661         const nativeResponseValue = wasm.TS_EffectiveCapacity_clone_ptr(arg);
29662         return nativeResponseValue;
29663 }
29664         // struct LDKEffectiveCapacity EffectiveCapacity_clone(const struct LDKEffectiveCapacity *NONNULL_PTR orig);
29665 /* @internal */
29666 export function EffectiveCapacity_clone(orig: number): number {
29667         if(!isWasmInitialized) {
29668                 throw new Error("initializeWasm() must be awaited first!");
29669         }
29670         const nativeResponseValue = wasm.TS_EffectiveCapacity_clone(orig);
29671         return nativeResponseValue;
29672 }
29673         // struct LDKEffectiveCapacity EffectiveCapacity_exact_liquidity(uint64_t liquidity_msat);
29674 /* @internal */
29675 export function EffectiveCapacity_exact_liquidity(liquidity_msat: bigint): number {
29676         if(!isWasmInitialized) {
29677                 throw new Error("initializeWasm() must be awaited first!");
29678         }
29679         const nativeResponseValue = wasm.TS_EffectiveCapacity_exact_liquidity(liquidity_msat);
29680         return nativeResponseValue;
29681 }
29682         // struct LDKEffectiveCapacity EffectiveCapacity_maximum_htlc(uint64_t amount_msat);
29683 /* @internal */
29684 export function EffectiveCapacity_maximum_htlc(amount_msat: bigint): number {
29685         if(!isWasmInitialized) {
29686                 throw new Error("initializeWasm() must be awaited first!");
29687         }
29688         const nativeResponseValue = wasm.TS_EffectiveCapacity_maximum_htlc(amount_msat);
29689         return nativeResponseValue;
29690 }
29691         // struct LDKEffectiveCapacity EffectiveCapacity_total(uint64_t capacity_msat, struct LDKCOption_u64Z htlc_maximum_msat);
29692 /* @internal */
29693 export function EffectiveCapacity_total(capacity_msat: bigint, htlc_maximum_msat: number): number {
29694         if(!isWasmInitialized) {
29695                 throw new Error("initializeWasm() must be awaited first!");
29696         }
29697         const nativeResponseValue = wasm.TS_EffectiveCapacity_total(capacity_msat, htlc_maximum_msat);
29698         return nativeResponseValue;
29699 }
29700         // struct LDKEffectiveCapacity EffectiveCapacity_infinite(void);
29701 /* @internal */
29702 export function EffectiveCapacity_infinite(): number {
29703         if(!isWasmInitialized) {
29704                 throw new Error("initializeWasm() must be awaited first!");
29705         }
29706         const nativeResponseValue = wasm.TS_EffectiveCapacity_infinite();
29707         return nativeResponseValue;
29708 }
29709         // struct LDKEffectiveCapacity EffectiveCapacity_unknown(void);
29710 /* @internal */
29711 export function EffectiveCapacity_unknown(): number {
29712         if(!isWasmInitialized) {
29713                 throw new Error("initializeWasm() must be awaited first!");
29714         }
29715         const nativeResponseValue = wasm.TS_EffectiveCapacity_unknown();
29716         return nativeResponseValue;
29717 }
29718         // MUST_USE_RES uint64_t EffectiveCapacity_as_msat(const struct LDKEffectiveCapacity *NONNULL_PTR this_arg);
29719 /* @internal */
29720 export function EffectiveCapacity_as_msat(this_arg: number): bigint {
29721         if(!isWasmInitialized) {
29722                 throw new Error("initializeWasm() must be awaited first!");
29723         }
29724         const nativeResponseValue = wasm.TS_EffectiveCapacity_as_msat(this_arg);
29725         return nativeResponseValue;
29726 }
29727         // void RoutingFees_free(struct LDKRoutingFees this_obj);
29728 /* @internal */
29729 export function RoutingFees_free(this_obj: number): void {
29730         if(!isWasmInitialized) {
29731                 throw new Error("initializeWasm() must be awaited first!");
29732         }
29733         const nativeResponseValue = wasm.TS_RoutingFees_free(this_obj);
29734         // debug statements here
29735 }
29736         // uint32_t RoutingFees_get_base_msat(const struct LDKRoutingFees *NONNULL_PTR this_ptr);
29737 /* @internal */
29738 export function RoutingFees_get_base_msat(this_ptr: number): number {
29739         if(!isWasmInitialized) {
29740                 throw new Error("initializeWasm() must be awaited first!");
29741         }
29742         const nativeResponseValue = wasm.TS_RoutingFees_get_base_msat(this_ptr);
29743         return nativeResponseValue;
29744 }
29745         // void RoutingFees_set_base_msat(struct LDKRoutingFees *NONNULL_PTR this_ptr, uint32_t val);
29746 /* @internal */
29747 export function RoutingFees_set_base_msat(this_ptr: number, val: number): void {
29748         if(!isWasmInitialized) {
29749                 throw new Error("initializeWasm() must be awaited first!");
29750         }
29751         const nativeResponseValue = wasm.TS_RoutingFees_set_base_msat(this_ptr, val);
29752         // debug statements here
29753 }
29754         // uint32_t RoutingFees_get_proportional_millionths(const struct LDKRoutingFees *NONNULL_PTR this_ptr);
29755 /* @internal */
29756 export function RoutingFees_get_proportional_millionths(this_ptr: number): number {
29757         if(!isWasmInitialized) {
29758                 throw new Error("initializeWasm() must be awaited first!");
29759         }
29760         const nativeResponseValue = wasm.TS_RoutingFees_get_proportional_millionths(this_ptr);
29761         return nativeResponseValue;
29762 }
29763         // void RoutingFees_set_proportional_millionths(struct LDKRoutingFees *NONNULL_PTR this_ptr, uint32_t val);
29764 /* @internal */
29765 export function RoutingFees_set_proportional_millionths(this_ptr: number, val: number): void {
29766         if(!isWasmInitialized) {
29767                 throw new Error("initializeWasm() must be awaited first!");
29768         }
29769         const nativeResponseValue = wasm.TS_RoutingFees_set_proportional_millionths(this_ptr, val);
29770         // debug statements here
29771 }
29772         // MUST_USE_RES struct LDKRoutingFees RoutingFees_new(uint32_t base_msat_arg, uint32_t proportional_millionths_arg);
29773 /* @internal */
29774 export function RoutingFees_new(base_msat_arg: number, proportional_millionths_arg: number): number {
29775         if(!isWasmInitialized) {
29776                 throw new Error("initializeWasm() must be awaited first!");
29777         }
29778         const nativeResponseValue = wasm.TS_RoutingFees_new(base_msat_arg, proportional_millionths_arg);
29779         return nativeResponseValue;
29780 }
29781         // bool RoutingFees_eq(const struct LDKRoutingFees *NONNULL_PTR a, const struct LDKRoutingFees *NONNULL_PTR b);
29782 /* @internal */
29783 export function RoutingFees_eq(a: number, b: number): boolean {
29784         if(!isWasmInitialized) {
29785                 throw new Error("initializeWasm() must be awaited first!");
29786         }
29787         const nativeResponseValue = wasm.TS_RoutingFees_eq(a, b);
29788         return nativeResponseValue;
29789 }
29790         // uintptr_t RoutingFees_clone_ptr(LDKRoutingFees *NONNULL_PTR arg);
29791 /* @internal */
29792 export function RoutingFees_clone_ptr(arg: number): number {
29793         if(!isWasmInitialized) {
29794                 throw new Error("initializeWasm() must be awaited first!");
29795         }
29796         const nativeResponseValue = wasm.TS_RoutingFees_clone_ptr(arg);
29797         return nativeResponseValue;
29798 }
29799         // struct LDKRoutingFees RoutingFees_clone(const struct LDKRoutingFees *NONNULL_PTR orig);
29800 /* @internal */
29801 export function RoutingFees_clone(orig: number): number {
29802         if(!isWasmInitialized) {
29803                 throw new Error("initializeWasm() must be awaited first!");
29804         }
29805         const nativeResponseValue = wasm.TS_RoutingFees_clone(orig);
29806         return nativeResponseValue;
29807 }
29808         // uint64_t RoutingFees_hash(const struct LDKRoutingFees *NONNULL_PTR o);
29809 /* @internal */
29810 export function RoutingFees_hash(o: number): bigint {
29811         if(!isWasmInitialized) {
29812                 throw new Error("initializeWasm() must be awaited first!");
29813         }
29814         const nativeResponseValue = wasm.TS_RoutingFees_hash(o);
29815         return nativeResponseValue;
29816 }
29817         // struct LDKCVec_u8Z RoutingFees_write(const struct LDKRoutingFees *NONNULL_PTR obj);
29818 /* @internal */
29819 export function RoutingFees_write(obj: number): number {
29820         if(!isWasmInitialized) {
29821                 throw new Error("initializeWasm() must be awaited first!");
29822         }
29823         const nativeResponseValue = wasm.TS_RoutingFees_write(obj);
29824         return nativeResponseValue;
29825 }
29826         // struct LDKCResult_RoutingFeesDecodeErrorZ RoutingFees_read(struct LDKu8slice ser);
29827 /* @internal */
29828 export function RoutingFees_read(ser: number): number {
29829         if(!isWasmInitialized) {
29830                 throw new Error("initializeWasm() must be awaited first!");
29831         }
29832         const nativeResponseValue = wasm.TS_RoutingFees_read(ser);
29833         return nativeResponseValue;
29834 }
29835         // void NodeAnnouncementInfo_free(struct LDKNodeAnnouncementInfo this_obj);
29836 /* @internal */
29837 export function NodeAnnouncementInfo_free(this_obj: number): void {
29838         if(!isWasmInitialized) {
29839                 throw new Error("initializeWasm() must be awaited first!");
29840         }
29841         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_free(this_obj);
29842         // debug statements here
29843 }
29844         // struct LDKNodeFeatures NodeAnnouncementInfo_get_features(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
29845 /* @internal */
29846 export function NodeAnnouncementInfo_get_features(this_ptr: number): number {
29847         if(!isWasmInitialized) {
29848                 throw new Error("initializeWasm() must be awaited first!");
29849         }
29850         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_features(this_ptr);
29851         return nativeResponseValue;
29852 }
29853         // void NodeAnnouncementInfo_set_features(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
29854 /* @internal */
29855 export function NodeAnnouncementInfo_set_features(this_ptr: number, val: number): void {
29856         if(!isWasmInitialized) {
29857                 throw new Error("initializeWasm() must be awaited first!");
29858         }
29859         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_features(this_ptr, val);
29860         // debug statements here
29861 }
29862         // uint32_t NodeAnnouncementInfo_get_last_update(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
29863 /* @internal */
29864 export function NodeAnnouncementInfo_get_last_update(this_ptr: number): number {
29865         if(!isWasmInitialized) {
29866                 throw new Error("initializeWasm() must be awaited first!");
29867         }
29868         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_last_update(this_ptr);
29869         return nativeResponseValue;
29870 }
29871         // void NodeAnnouncementInfo_set_last_update(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, uint32_t val);
29872 /* @internal */
29873 export function NodeAnnouncementInfo_set_last_update(this_ptr: number, val: number): void {
29874         if(!isWasmInitialized) {
29875                 throw new Error("initializeWasm() must be awaited first!");
29876         }
29877         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_last_update(this_ptr, val);
29878         // debug statements here
29879 }
29880         // const uint8_t (*NodeAnnouncementInfo_get_rgb(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr))[3];
29881 /* @internal */
29882 export function NodeAnnouncementInfo_get_rgb(this_ptr: number): number {
29883         if(!isWasmInitialized) {
29884                 throw new Error("initializeWasm() must be awaited first!");
29885         }
29886         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_rgb(this_ptr);
29887         return nativeResponseValue;
29888 }
29889         // void NodeAnnouncementInfo_set_rgb(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKThreeBytes val);
29890 /* @internal */
29891 export function NodeAnnouncementInfo_set_rgb(this_ptr: number, val: number): void {
29892         if(!isWasmInitialized) {
29893                 throw new Error("initializeWasm() must be awaited first!");
29894         }
29895         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_rgb(this_ptr, val);
29896         // debug statements here
29897 }
29898         // struct LDKNodeAlias NodeAnnouncementInfo_get_alias(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
29899 /* @internal */
29900 export function NodeAnnouncementInfo_get_alias(this_ptr: number): number {
29901         if(!isWasmInitialized) {
29902                 throw new Error("initializeWasm() must be awaited first!");
29903         }
29904         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_alias(this_ptr);
29905         return nativeResponseValue;
29906 }
29907         // void NodeAnnouncementInfo_set_alias(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeAlias val);
29908 /* @internal */
29909 export function NodeAnnouncementInfo_set_alias(this_ptr: number, val: number): void {
29910         if(!isWasmInitialized) {
29911                 throw new Error("initializeWasm() must be awaited first!");
29912         }
29913         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_alias(this_ptr, val);
29914         // debug statements here
29915 }
29916         // struct LDKCVec_NetAddressZ NodeAnnouncementInfo_get_addresses(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
29917 /* @internal */
29918 export function NodeAnnouncementInfo_get_addresses(this_ptr: number): number {
29919         if(!isWasmInitialized) {
29920                 throw new Error("initializeWasm() must be awaited first!");
29921         }
29922         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_addresses(this_ptr);
29923         return nativeResponseValue;
29924 }
29925         // void NodeAnnouncementInfo_set_addresses(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKCVec_NetAddressZ val);
29926 /* @internal */
29927 export function NodeAnnouncementInfo_set_addresses(this_ptr: number, val: number): void {
29928         if(!isWasmInitialized) {
29929                 throw new Error("initializeWasm() must be awaited first!");
29930         }
29931         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_addresses(this_ptr, val);
29932         // debug statements here
29933 }
29934         // struct LDKNodeAnnouncement NodeAnnouncementInfo_get_announcement_message(const struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr);
29935 /* @internal */
29936 export function NodeAnnouncementInfo_get_announcement_message(this_ptr: number): number {
29937         if(!isWasmInitialized) {
29938                 throw new Error("initializeWasm() must be awaited first!");
29939         }
29940         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_get_announcement_message(this_ptr);
29941         return nativeResponseValue;
29942 }
29943         // void NodeAnnouncementInfo_set_announcement_message(struct LDKNodeAnnouncementInfo *NONNULL_PTR this_ptr, struct LDKNodeAnnouncement val);
29944 /* @internal */
29945 export function NodeAnnouncementInfo_set_announcement_message(this_ptr: number, val: number): void {
29946         if(!isWasmInitialized) {
29947                 throw new Error("initializeWasm() must be awaited first!");
29948         }
29949         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_set_announcement_message(this_ptr, val);
29950         // debug statements here
29951 }
29952         // MUST_USE_RES struct LDKNodeAnnouncementInfo NodeAnnouncementInfo_new(struct LDKNodeFeatures features_arg, uint32_t last_update_arg, struct LDKThreeBytes rgb_arg, struct LDKNodeAlias alias_arg, struct LDKCVec_NetAddressZ addresses_arg, struct LDKNodeAnnouncement announcement_message_arg);
29953 /* @internal */
29954 export function NodeAnnouncementInfo_new(features_arg: number, last_update_arg: number, rgb_arg: number, alias_arg: number, addresses_arg: number, announcement_message_arg: number): number {
29955         if(!isWasmInitialized) {
29956                 throw new Error("initializeWasm() must be awaited first!");
29957         }
29958         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_new(features_arg, last_update_arg, rgb_arg, alias_arg, addresses_arg, announcement_message_arg);
29959         return nativeResponseValue;
29960 }
29961         // uintptr_t NodeAnnouncementInfo_clone_ptr(LDKNodeAnnouncementInfo *NONNULL_PTR arg);
29962 /* @internal */
29963 export function NodeAnnouncementInfo_clone_ptr(arg: number): number {
29964         if(!isWasmInitialized) {
29965                 throw new Error("initializeWasm() must be awaited first!");
29966         }
29967         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_clone_ptr(arg);
29968         return nativeResponseValue;
29969 }
29970         // struct LDKNodeAnnouncementInfo NodeAnnouncementInfo_clone(const struct LDKNodeAnnouncementInfo *NONNULL_PTR orig);
29971 /* @internal */
29972 export function NodeAnnouncementInfo_clone(orig: number): number {
29973         if(!isWasmInitialized) {
29974                 throw new Error("initializeWasm() must be awaited first!");
29975         }
29976         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_clone(orig);
29977         return nativeResponseValue;
29978 }
29979         // struct LDKCVec_u8Z NodeAnnouncementInfo_write(const struct LDKNodeAnnouncementInfo *NONNULL_PTR obj);
29980 /* @internal */
29981 export function NodeAnnouncementInfo_write(obj: number): number {
29982         if(!isWasmInitialized) {
29983                 throw new Error("initializeWasm() must be awaited first!");
29984         }
29985         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_write(obj);
29986         return nativeResponseValue;
29987 }
29988         // struct LDKCResult_NodeAnnouncementInfoDecodeErrorZ NodeAnnouncementInfo_read(struct LDKu8slice ser);
29989 /* @internal */
29990 export function NodeAnnouncementInfo_read(ser: number): number {
29991         if(!isWasmInitialized) {
29992                 throw new Error("initializeWasm() must be awaited first!");
29993         }
29994         const nativeResponseValue = wasm.TS_NodeAnnouncementInfo_read(ser);
29995         return nativeResponseValue;
29996 }
29997         // void NodeAlias_free(struct LDKNodeAlias this_obj);
29998 /* @internal */
29999 export function NodeAlias_free(this_obj: number): void {
30000         if(!isWasmInitialized) {
30001                 throw new Error("initializeWasm() must be awaited first!");
30002         }
30003         const nativeResponseValue = wasm.TS_NodeAlias_free(this_obj);
30004         // debug statements here
30005 }
30006         // const uint8_t (*NodeAlias_get_a(const struct LDKNodeAlias *NONNULL_PTR this_ptr))[32];
30007 /* @internal */
30008 export function NodeAlias_get_a(this_ptr: number): number {
30009         if(!isWasmInitialized) {
30010                 throw new Error("initializeWasm() must be awaited first!");
30011         }
30012         const nativeResponseValue = wasm.TS_NodeAlias_get_a(this_ptr);
30013         return nativeResponseValue;
30014 }
30015         // void NodeAlias_set_a(struct LDKNodeAlias *NONNULL_PTR this_ptr, struct LDKThirtyTwoBytes val);
30016 /* @internal */
30017 export function NodeAlias_set_a(this_ptr: number, val: number): void {
30018         if(!isWasmInitialized) {
30019                 throw new Error("initializeWasm() must be awaited first!");
30020         }
30021         const nativeResponseValue = wasm.TS_NodeAlias_set_a(this_ptr, val);
30022         // debug statements here
30023 }
30024         // MUST_USE_RES struct LDKNodeAlias NodeAlias_new(struct LDKThirtyTwoBytes a_arg);
30025 /* @internal */
30026 export function NodeAlias_new(a_arg: number): number {
30027         if(!isWasmInitialized) {
30028                 throw new Error("initializeWasm() must be awaited first!");
30029         }
30030         const nativeResponseValue = wasm.TS_NodeAlias_new(a_arg);
30031         return nativeResponseValue;
30032 }
30033         // uintptr_t NodeAlias_clone_ptr(LDKNodeAlias *NONNULL_PTR arg);
30034 /* @internal */
30035 export function NodeAlias_clone_ptr(arg: number): number {
30036         if(!isWasmInitialized) {
30037                 throw new Error("initializeWasm() must be awaited first!");
30038         }
30039         const nativeResponseValue = wasm.TS_NodeAlias_clone_ptr(arg);
30040         return nativeResponseValue;
30041 }
30042         // struct LDKNodeAlias NodeAlias_clone(const struct LDKNodeAlias *NONNULL_PTR orig);
30043 /* @internal */
30044 export function NodeAlias_clone(orig: number): number {
30045         if(!isWasmInitialized) {
30046                 throw new Error("initializeWasm() must be awaited first!");
30047         }
30048         const nativeResponseValue = wasm.TS_NodeAlias_clone(orig);
30049         return nativeResponseValue;
30050 }
30051         // struct LDKCVec_u8Z NodeAlias_write(const struct LDKNodeAlias *NONNULL_PTR obj);
30052 /* @internal */
30053 export function NodeAlias_write(obj: number): number {
30054         if(!isWasmInitialized) {
30055                 throw new Error("initializeWasm() must be awaited first!");
30056         }
30057         const nativeResponseValue = wasm.TS_NodeAlias_write(obj);
30058         return nativeResponseValue;
30059 }
30060         // struct LDKCResult_NodeAliasDecodeErrorZ NodeAlias_read(struct LDKu8slice ser);
30061 /* @internal */
30062 export function NodeAlias_read(ser: number): number {
30063         if(!isWasmInitialized) {
30064                 throw new Error("initializeWasm() must be awaited first!");
30065         }
30066         const nativeResponseValue = wasm.TS_NodeAlias_read(ser);
30067         return nativeResponseValue;
30068 }
30069         // void NodeInfo_free(struct LDKNodeInfo this_obj);
30070 /* @internal */
30071 export function NodeInfo_free(this_obj: number): void {
30072         if(!isWasmInitialized) {
30073                 throw new Error("initializeWasm() must be awaited first!");
30074         }
30075         const nativeResponseValue = wasm.TS_NodeInfo_free(this_obj);
30076         // debug statements here
30077 }
30078         // struct LDKCVec_u64Z NodeInfo_get_channels(const struct LDKNodeInfo *NONNULL_PTR this_ptr);
30079 /* @internal */
30080 export function NodeInfo_get_channels(this_ptr: number): number {
30081         if(!isWasmInitialized) {
30082                 throw new Error("initializeWasm() must be awaited first!");
30083         }
30084         const nativeResponseValue = wasm.TS_NodeInfo_get_channels(this_ptr);
30085         return nativeResponseValue;
30086 }
30087         // void NodeInfo_set_channels(struct LDKNodeInfo *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
30088 /* @internal */
30089 export function NodeInfo_set_channels(this_ptr: number, val: number): void {
30090         if(!isWasmInitialized) {
30091                 throw new Error("initializeWasm() must be awaited first!");
30092         }
30093         const nativeResponseValue = wasm.TS_NodeInfo_set_channels(this_ptr, val);
30094         // debug statements here
30095 }
30096         // struct LDKRoutingFees NodeInfo_get_lowest_inbound_channel_fees(const struct LDKNodeInfo *NONNULL_PTR this_ptr);
30097 /* @internal */
30098 export function NodeInfo_get_lowest_inbound_channel_fees(this_ptr: number): number {
30099         if(!isWasmInitialized) {
30100                 throw new Error("initializeWasm() must be awaited first!");
30101         }
30102         const nativeResponseValue = wasm.TS_NodeInfo_get_lowest_inbound_channel_fees(this_ptr);
30103         return nativeResponseValue;
30104 }
30105         // void NodeInfo_set_lowest_inbound_channel_fees(struct LDKNodeInfo *NONNULL_PTR this_ptr, struct LDKRoutingFees val);
30106 /* @internal */
30107 export function NodeInfo_set_lowest_inbound_channel_fees(this_ptr: number, val: number): void {
30108         if(!isWasmInitialized) {
30109                 throw new Error("initializeWasm() must be awaited first!");
30110         }
30111         const nativeResponseValue = wasm.TS_NodeInfo_set_lowest_inbound_channel_fees(this_ptr, val);
30112         // debug statements here
30113 }
30114         // struct LDKNodeAnnouncementInfo NodeInfo_get_announcement_info(const struct LDKNodeInfo *NONNULL_PTR this_ptr);
30115 /* @internal */
30116 export function NodeInfo_get_announcement_info(this_ptr: number): number {
30117         if(!isWasmInitialized) {
30118                 throw new Error("initializeWasm() must be awaited first!");
30119         }
30120         const nativeResponseValue = wasm.TS_NodeInfo_get_announcement_info(this_ptr);
30121         return nativeResponseValue;
30122 }
30123         // void NodeInfo_set_announcement_info(struct LDKNodeInfo *NONNULL_PTR this_ptr, struct LDKNodeAnnouncementInfo val);
30124 /* @internal */
30125 export function NodeInfo_set_announcement_info(this_ptr: number, val: number): void {
30126         if(!isWasmInitialized) {
30127                 throw new Error("initializeWasm() must be awaited first!");
30128         }
30129         const nativeResponseValue = wasm.TS_NodeInfo_set_announcement_info(this_ptr, val);
30130         // debug statements here
30131 }
30132         // MUST_USE_RES struct LDKNodeInfo NodeInfo_new(struct LDKCVec_u64Z channels_arg, struct LDKRoutingFees lowest_inbound_channel_fees_arg, struct LDKNodeAnnouncementInfo announcement_info_arg);
30133 /* @internal */
30134 export function NodeInfo_new(channels_arg: number, lowest_inbound_channel_fees_arg: number, announcement_info_arg: number): number {
30135         if(!isWasmInitialized) {
30136                 throw new Error("initializeWasm() must be awaited first!");
30137         }
30138         const nativeResponseValue = wasm.TS_NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg, announcement_info_arg);
30139         return nativeResponseValue;
30140 }
30141         // uintptr_t NodeInfo_clone_ptr(LDKNodeInfo *NONNULL_PTR arg);
30142 /* @internal */
30143 export function NodeInfo_clone_ptr(arg: number): number {
30144         if(!isWasmInitialized) {
30145                 throw new Error("initializeWasm() must be awaited first!");
30146         }
30147         const nativeResponseValue = wasm.TS_NodeInfo_clone_ptr(arg);
30148         return nativeResponseValue;
30149 }
30150         // struct LDKNodeInfo NodeInfo_clone(const struct LDKNodeInfo *NONNULL_PTR orig);
30151 /* @internal */
30152 export function NodeInfo_clone(orig: number): number {
30153         if(!isWasmInitialized) {
30154                 throw new Error("initializeWasm() must be awaited first!");
30155         }
30156         const nativeResponseValue = wasm.TS_NodeInfo_clone(orig);
30157         return nativeResponseValue;
30158 }
30159         // struct LDKCVec_u8Z NodeInfo_write(const struct LDKNodeInfo *NONNULL_PTR obj);
30160 /* @internal */
30161 export function NodeInfo_write(obj: number): number {
30162         if(!isWasmInitialized) {
30163                 throw new Error("initializeWasm() must be awaited first!");
30164         }
30165         const nativeResponseValue = wasm.TS_NodeInfo_write(obj);
30166         return nativeResponseValue;
30167 }
30168         // struct LDKCResult_NodeInfoDecodeErrorZ NodeInfo_read(struct LDKu8slice ser);
30169 /* @internal */
30170 export function NodeInfo_read(ser: number): number {
30171         if(!isWasmInitialized) {
30172                 throw new Error("initializeWasm() must be awaited first!");
30173         }
30174         const nativeResponseValue = wasm.TS_NodeInfo_read(ser);
30175         return nativeResponseValue;
30176 }
30177         // struct LDKCVec_u8Z NetworkGraph_write(const struct LDKNetworkGraph *NONNULL_PTR obj);
30178 /* @internal */
30179 export function NetworkGraph_write(obj: number): number {
30180         if(!isWasmInitialized) {
30181                 throw new Error("initializeWasm() must be awaited first!");
30182         }
30183         const nativeResponseValue = wasm.TS_NetworkGraph_write(obj);
30184         return nativeResponseValue;
30185 }
30186         // struct LDKCResult_NetworkGraphDecodeErrorZ NetworkGraph_read(struct LDKu8slice ser, struct LDKLogger arg);
30187 /* @internal */
30188 export function NetworkGraph_read(ser: number, arg: number): number {
30189         if(!isWasmInitialized) {
30190                 throw new Error("initializeWasm() must be awaited first!");
30191         }
30192         const nativeResponseValue = wasm.TS_NetworkGraph_read(ser, arg);
30193         return nativeResponseValue;
30194 }
30195         // MUST_USE_RES struct LDKNetworkGraph NetworkGraph_new(struct LDKThirtyTwoBytes genesis_hash, struct LDKLogger logger);
30196 /* @internal */
30197 export function NetworkGraph_new(genesis_hash: number, logger: number): number {
30198         if(!isWasmInitialized) {
30199                 throw new Error("initializeWasm() must be awaited first!");
30200         }
30201         const nativeResponseValue = wasm.TS_NetworkGraph_new(genesis_hash, logger);
30202         return nativeResponseValue;
30203 }
30204         // MUST_USE_RES struct LDKReadOnlyNetworkGraph NetworkGraph_read_only(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
30205 /* @internal */
30206 export function NetworkGraph_read_only(this_arg: number): number {
30207         if(!isWasmInitialized) {
30208                 throw new Error("initializeWasm() must be awaited first!");
30209         }
30210         const nativeResponseValue = wasm.TS_NetworkGraph_read_only(this_arg);
30211         return nativeResponseValue;
30212 }
30213         // MUST_USE_RES struct LDKCOption_u32Z NetworkGraph_get_last_rapid_gossip_sync_timestamp(const struct LDKNetworkGraph *NONNULL_PTR this_arg);
30214 /* @internal */
30215 export function NetworkGraph_get_last_rapid_gossip_sync_timestamp(this_arg: number): number {
30216         if(!isWasmInitialized) {
30217                 throw new Error("initializeWasm() must be awaited first!");
30218         }
30219         const nativeResponseValue = wasm.TS_NetworkGraph_get_last_rapid_gossip_sync_timestamp(this_arg);
30220         return nativeResponseValue;
30221 }
30222         // void NetworkGraph_set_last_rapid_gossip_sync_timestamp(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint32_t last_rapid_gossip_sync_timestamp);
30223 /* @internal */
30224 export function NetworkGraph_set_last_rapid_gossip_sync_timestamp(this_arg: number, last_rapid_gossip_sync_timestamp: number): void {
30225         if(!isWasmInitialized) {
30226                 throw new Error("initializeWasm() must be awaited first!");
30227         }
30228         const nativeResponseValue = wasm.TS_NetworkGraph_set_last_rapid_gossip_sync_timestamp(this_arg, last_rapid_gossip_sync_timestamp);
30229         // debug statements here
30230 }
30231         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKNodeAnnouncement *NONNULL_PTR msg);
30232 /* @internal */
30233 export function NetworkGraph_update_node_from_announcement(this_arg: number, msg: number): number {
30234         if(!isWasmInitialized) {
30235                 throw new Error("initializeWasm() must be awaited first!");
30236         }
30237         const nativeResponseValue = wasm.TS_NetworkGraph_update_node_from_announcement(this_arg, msg);
30238         return nativeResponseValue;
30239 }
30240         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_node_from_unsigned_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedNodeAnnouncement *NONNULL_PTR msg);
30241 /* @internal */
30242 export function NetworkGraph_update_node_from_unsigned_announcement(this_arg: number, msg: number): number {
30243         if(!isWasmInitialized) {
30244                 throw new Error("initializeWasm() must be awaited first!");
30245         }
30246         const nativeResponseValue = wasm.TS_NetworkGraph_update_node_from_unsigned_announcement(this_arg, msg);
30247         return nativeResponseValue;
30248 }
30249         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKChannelAnnouncement *NONNULL_PTR msg, struct LDKCOption_AccessZ chain_access);
30250 /* @internal */
30251 export function NetworkGraph_update_channel_from_announcement(this_arg: number, msg: number, chain_access: number): number {
30252         if(!isWasmInitialized) {
30253                 throw new Error("initializeWasm() must be awaited first!");
30254         }
30255         const nativeResponseValue = wasm.TS_NetworkGraph_update_channel_from_announcement(this_arg, msg, chain_access);
30256         return nativeResponseValue;
30257 }
30258         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_from_unsigned_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedChannelAnnouncement *NONNULL_PTR msg, struct LDKCOption_AccessZ chain_access);
30259 /* @internal */
30260 export function NetworkGraph_update_channel_from_unsigned_announcement(this_arg: number, msg: number, chain_access: number): number {
30261         if(!isWasmInitialized) {
30262                 throw new Error("initializeWasm() must be awaited first!");
30263         }
30264         const nativeResponseValue = wasm.TS_NetworkGraph_update_channel_from_unsigned_announcement(this_arg, msg, chain_access);
30265         return nativeResponseValue;
30266 }
30267         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_add_channel_from_partial_announcement(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id, uint64_t timestamp, struct LDKChannelFeatures features, struct LDKPublicKey node_id_1, struct LDKPublicKey node_id_2);
30268 /* @internal */
30269 export function NetworkGraph_add_channel_from_partial_announcement(this_arg: number, short_channel_id: bigint, timestamp: bigint, features: number, node_id_1: number, node_id_2: number): number {
30270         if(!isWasmInitialized) {
30271                 throw new Error("initializeWasm() must be awaited first!");
30272         }
30273         const nativeResponseValue = wasm.TS_NetworkGraph_add_channel_from_partial_announcement(this_arg, short_channel_id, timestamp, features, node_id_1, node_id_2);
30274         return nativeResponseValue;
30275 }
30276         // void NetworkGraph_channel_failed(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id, bool is_permanent);
30277 /* @internal */
30278 export function NetworkGraph_channel_failed(this_arg: number, short_channel_id: bigint, is_permanent: boolean): void {
30279         if(!isWasmInitialized) {
30280                 throw new Error("initializeWasm() must be awaited first!");
30281         }
30282         const nativeResponseValue = wasm.TS_NetworkGraph_channel_failed(this_arg, short_channel_id, is_permanent);
30283         // debug statements here
30284 }
30285         // void NetworkGraph_node_failed(const struct LDKNetworkGraph *NONNULL_PTR this_arg, struct LDKPublicKey _node_id, bool is_permanent);
30286 /* @internal */
30287 export function NetworkGraph_node_failed(this_arg: number, _node_id: number, is_permanent: boolean): void {
30288         if(!isWasmInitialized) {
30289                 throw new Error("initializeWasm() must be awaited first!");
30290         }
30291         const nativeResponseValue = wasm.TS_NetworkGraph_node_failed(this_arg, _node_id, is_permanent);
30292         // debug statements here
30293 }
30294         // void NetworkGraph_remove_stale_channels_with_time(const struct LDKNetworkGraph *NONNULL_PTR this_arg, uint64_t current_time_unix);
30295 /* @internal */
30296 export function NetworkGraph_remove_stale_channels_with_time(this_arg: number, current_time_unix: bigint): void {
30297         if(!isWasmInitialized) {
30298                 throw new Error("initializeWasm() must be awaited first!");
30299         }
30300         const nativeResponseValue = wasm.TS_NetworkGraph_remove_stale_channels_with_time(this_arg, current_time_unix);
30301         // debug statements here
30302 }
30303         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKChannelUpdate *NONNULL_PTR msg);
30304 /* @internal */
30305 export function NetworkGraph_update_channel(this_arg: number, msg: number): number {
30306         if(!isWasmInitialized) {
30307                 throw new Error("initializeWasm() must be awaited first!");
30308         }
30309         const nativeResponseValue = wasm.TS_NetworkGraph_update_channel(this_arg, msg);
30310         return nativeResponseValue;
30311 }
30312         // MUST_USE_RES struct LDKCResult_NoneLightningErrorZ NetworkGraph_update_channel_unsigned(const struct LDKNetworkGraph *NONNULL_PTR this_arg, const struct LDKUnsignedChannelUpdate *NONNULL_PTR msg);
30313 /* @internal */
30314 export function NetworkGraph_update_channel_unsigned(this_arg: number, msg: number): number {
30315         if(!isWasmInitialized) {
30316                 throw new Error("initializeWasm() must be awaited first!");
30317         }
30318         const nativeResponseValue = wasm.TS_NetworkGraph_update_channel_unsigned(this_arg, msg);
30319         return nativeResponseValue;
30320 }
30321         // MUST_USE_RES struct LDKChannelInfo ReadOnlyNetworkGraph_channel(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, uint64_t short_channel_id);
30322 /* @internal */
30323 export function ReadOnlyNetworkGraph_channel(this_arg: number, short_channel_id: bigint): number {
30324         if(!isWasmInitialized) {
30325                 throw new Error("initializeWasm() must be awaited first!");
30326         }
30327         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_channel(this_arg, short_channel_id);
30328         return nativeResponseValue;
30329 }
30330         // MUST_USE_RES struct LDKCVec_u64Z ReadOnlyNetworkGraph_list_channels(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg);
30331 /* @internal */
30332 export function ReadOnlyNetworkGraph_list_channels(this_arg: number): number {
30333         if(!isWasmInitialized) {
30334                 throw new Error("initializeWasm() must be awaited first!");
30335         }
30336         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_list_channels(this_arg);
30337         return nativeResponseValue;
30338 }
30339         // MUST_USE_RES struct LDKNodeInfo ReadOnlyNetworkGraph_node(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
30340 /* @internal */
30341 export function ReadOnlyNetworkGraph_node(this_arg: number, node_id: number): number {
30342         if(!isWasmInitialized) {
30343                 throw new Error("initializeWasm() must be awaited first!");
30344         }
30345         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_node(this_arg, node_id);
30346         return nativeResponseValue;
30347 }
30348         // MUST_USE_RES struct LDKCVec_NodeIdZ ReadOnlyNetworkGraph_list_nodes(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg);
30349 /* @internal */
30350 export function ReadOnlyNetworkGraph_list_nodes(this_arg: number): number {
30351         if(!isWasmInitialized) {
30352                 throw new Error("initializeWasm() must be awaited first!");
30353         }
30354         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_list_nodes(this_arg);
30355         return nativeResponseValue;
30356 }
30357         // MUST_USE_RES struct LDKCOption_CVec_NetAddressZZ ReadOnlyNetworkGraph_get_addresses(const struct LDKReadOnlyNetworkGraph *NONNULL_PTR this_arg, struct LDKPublicKey pubkey);
30358 /* @internal */
30359 export function ReadOnlyNetworkGraph_get_addresses(this_arg: number, pubkey: number): number {
30360         if(!isWasmInitialized) {
30361                 throw new Error("initializeWasm() must be awaited first!");
30362         }
30363         const nativeResponseValue = wasm.TS_ReadOnlyNetworkGraph_get_addresses(this_arg, pubkey);
30364         return nativeResponseValue;
30365 }
30366         // void RouteHop_free(struct LDKRouteHop this_obj);
30367 /* @internal */
30368 export function RouteHop_free(this_obj: number): void {
30369         if(!isWasmInitialized) {
30370                 throw new Error("initializeWasm() must be awaited first!");
30371         }
30372         const nativeResponseValue = wasm.TS_RouteHop_free(this_obj);
30373         // debug statements here
30374 }
30375         // struct LDKPublicKey RouteHop_get_pubkey(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30376 /* @internal */
30377 export function RouteHop_get_pubkey(this_ptr: number): number {
30378         if(!isWasmInitialized) {
30379                 throw new Error("initializeWasm() must be awaited first!");
30380         }
30381         const nativeResponseValue = wasm.TS_RouteHop_get_pubkey(this_ptr);
30382         return nativeResponseValue;
30383 }
30384         // void RouteHop_set_pubkey(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKPublicKey val);
30385 /* @internal */
30386 export function RouteHop_set_pubkey(this_ptr: number, val: number): void {
30387         if(!isWasmInitialized) {
30388                 throw new Error("initializeWasm() must be awaited first!");
30389         }
30390         const nativeResponseValue = wasm.TS_RouteHop_set_pubkey(this_ptr, val);
30391         // debug statements here
30392 }
30393         // struct LDKNodeFeatures RouteHop_get_node_features(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30394 /* @internal */
30395 export function RouteHop_get_node_features(this_ptr: number): number {
30396         if(!isWasmInitialized) {
30397                 throw new Error("initializeWasm() must be awaited first!");
30398         }
30399         const nativeResponseValue = wasm.TS_RouteHop_get_node_features(this_ptr);
30400         return nativeResponseValue;
30401 }
30402         // void RouteHop_set_node_features(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKNodeFeatures val);
30403 /* @internal */
30404 export function RouteHop_set_node_features(this_ptr: number, val: number): void {
30405         if(!isWasmInitialized) {
30406                 throw new Error("initializeWasm() must be awaited first!");
30407         }
30408         const nativeResponseValue = wasm.TS_RouteHop_set_node_features(this_ptr, val);
30409         // debug statements here
30410 }
30411         // uint64_t RouteHop_get_short_channel_id(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30412 /* @internal */
30413 export function RouteHop_get_short_channel_id(this_ptr: number): bigint {
30414         if(!isWasmInitialized) {
30415                 throw new Error("initializeWasm() must be awaited first!");
30416         }
30417         const nativeResponseValue = wasm.TS_RouteHop_get_short_channel_id(this_ptr);
30418         return nativeResponseValue;
30419 }
30420         // void RouteHop_set_short_channel_id(struct LDKRouteHop *NONNULL_PTR this_ptr, uint64_t val);
30421 /* @internal */
30422 export function RouteHop_set_short_channel_id(this_ptr: number, val: bigint): void {
30423         if(!isWasmInitialized) {
30424                 throw new Error("initializeWasm() must be awaited first!");
30425         }
30426         const nativeResponseValue = wasm.TS_RouteHop_set_short_channel_id(this_ptr, val);
30427         // debug statements here
30428 }
30429         // struct LDKChannelFeatures RouteHop_get_channel_features(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30430 /* @internal */
30431 export function RouteHop_get_channel_features(this_ptr: number): number {
30432         if(!isWasmInitialized) {
30433                 throw new Error("initializeWasm() must be awaited first!");
30434         }
30435         const nativeResponseValue = wasm.TS_RouteHop_get_channel_features(this_ptr);
30436         return nativeResponseValue;
30437 }
30438         // void RouteHop_set_channel_features(struct LDKRouteHop *NONNULL_PTR this_ptr, struct LDKChannelFeatures val);
30439 /* @internal */
30440 export function RouteHop_set_channel_features(this_ptr: number, val: number): void {
30441         if(!isWasmInitialized) {
30442                 throw new Error("initializeWasm() must be awaited first!");
30443         }
30444         const nativeResponseValue = wasm.TS_RouteHop_set_channel_features(this_ptr, val);
30445         // debug statements here
30446 }
30447         // uint64_t RouteHop_get_fee_msat(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30448 /* @internal */
30449 export function RouteHop_get_fee_msat(this_ptr: number): bigint {
30450         if(!isWasmInitialized) {
30451                 throw new Error("initializeWasm() must be awaited first!");
30452         }
30453         const nativeResponseValue = wasm.TS_RouteHop_get_fee_msat(this_ptr);
30454         return nativeResponseValue;
30455 }
30456         // void RouteHop_set_fee_msat(struct LDKRouteHop *NONNULL_PTR this_ptr, uint64_t val);
30457 /* @internal */
30458 export function RouteHop_set_fee_msat(this_ptr: number, val: bigint): void {
30459         if(!isWasmInitialized) {
30460                 throw new Error("initializeWasm() must be awaited first!");
30461         }
30462         const nativeResponseValue = wasm.TS_RouteHop_set_fee_msat(this_ptr, val);
30463         // debug statements here
30464 }
30465         // uint32_t RouteHop_get_cltv_expiry_delta(const struct LDKRouteHop *NONNULL_PTR this_ptr);
30466 /* @internal */
30467 export function RouteHop_get_cltv_expiry_delta(this_ptr: number): number {
30468         if(!isWasmInitialized) {
30469                 throw new Error("initializeWasm() must be awaited first!");
30470         }
30471         const nativeResponseValue = wasm.TS_RouteHop_get_cltv_expiry_delta(this_ptr);
30472         return nativeResponseValue;
30473 }
30474         // void RouteHop_set_cltv_expiry_delta(struct LDKRouteHop *NONNULL_PTR this_ptr, uint32_t val);
30475 /* @internal */
30476 export function RouteHop_set_cltv_expiry_delta(this_ptr: number, val: number): void {
30477         if(!isWasmInitialized) {
30478                 throw new Error("initializeWasm() must be awaited first!");
30479         }
30480         const nativeResponseValue = wasm.TS_RouteHop_set_cltv_expiry_delta(this_ptr, val);
30481         // debug statements here
30482 }
30483         // MUST_USE_RES struct LDKRouteHop RouteHop_new(struct LDKPublicKey pubkey_arg, struct LDKNodeFeatures node_features_arg, uint64_t short_channel_id_arg, struct LDKChannelFeatures channel_features_arg, uint64_t fee_msat_arg, uint32_t cltv_expiry_delta_arg);
30484 /* @internal */
30485 export function RouteHop_new(pubkey_arg: number, node_features_arg: number, short_channel_id_arg: bigint, channel_features_arg: number, fee_msat_arg: bigint, cltv_expiry_delta_arg: number): number {
30486         if(!isWasmInitialized) {
30487                 throw new Error("initializeWasm() must be awaited first!");
30488         }
30489         const nativeResponseValue = wasm.TS_RouteHop_new(pubkey_arg, node_features_arg, short_channel_id_arg, channel_features_arg, fee_msat_arg, cltv_expiry_delta_arg);
30490         return nativeResponseValue;
30491 }
30492         // uintptr_t RouteHop_clone_ptr(LDKRouteHop *NONNULL_PTR arg);
30493 /* @internal */
30494 export function RouteHop_clone_ptr(arg: number): number {
30495         if(!isWasmInitialized) {
30496                 throw new Error("initializeWasm() must be awaited first!");
30497         }
30498         const nativeResponseValue = wasm.TS_RouteHop_clone_ptr(arg);
30499         return nativeResponseValue;
30500 }
30501         // struct LDKRouteHop RouteHop_clone(const struct LDKRouteHop *NONNULL_PTR orig);
30502 /* @internal */
30503 export function RouteHop_clone(orig: number): number {
30504         if(!isWasmInitialized) {
30505                 throw new Error("initializeWasm() must be awaited first!");
30506         }
30507         const nativeResponseValue = wasm.TS_RouteHop_clone(orig);
30508         return nativeResponseValue;
30509 }
30510         // uint64_t RouteHop_hash(const struct LDKRouteHop *NONNULL_PTR o);
30511 /* @internal */
30512 export function RouteHop_hash(o: number): bigint {
30513         if(!isWasmInitialized) {
30514                 throw new Error("initializeWasm() must be awaited first!");
30515         }
30516         const nativeResponseValue = wasm.TS_RouteHop_hash(o);
30517         return nativeResponseValue;
30518 }
30519         // bool RouteHop_eq(const struct LDKRouteHop *NONNULL_PTR a, const struct LDKRouteHop *NONNULL_PTR b);
30520 /* @internal */
30521 export function RouteHop_eq(a: number, b: number): boolean {
30522         if(!isWasmInitialized) {
30523                 throw new Error("initializeWasm() must be awaited first!");
30524         }
30525         const nativeResponseValue = wasm.TS_RouteHop_eq(a, b);
30526         return nativeResponseValue;
30527 }
30528         // struct LDKCVec_u8Z RouteHop_write(const struct LDKRouteHop *NONNULL_PTR obj);
30529 /* @internal */
30530 export function RouteHop_write(obj: number): number {
30531         if(!isWasmInitialized) {
30532                 throw new Error("initializeWasm() must be awaited first!");
30533         }
30534         const nativeResponseValue = wasm.TS_RouteHop_write(obj);
30535         return nativeResponseValue;
30536 }
30537         // struct LDKCResult_RouteHopDecodeErrorZ RouteHop_read(struct LDKu8slice ser);
30538 /* @internal */
30539 export function RouteHop_read(ser: number): number {
30540         if(!isWasmInitialized) {
30541                 throw new Error("initializeWasm() must be awaited first!");
30542         }
30543         const nativeResponseValue = wasm.TS_RouteHop_read(ser);
30544         return nativeResponseValue;
30545 }
30546         // void Route_free(struct LDKRoute this_obj);
30547 /* @internal */
30548 export function Route_free(this_obj: number): void {
30549         if(!isWasmInitialized) {
30550                 throw new Error("initializeWasm() must be awaited first!");
30551         }
30552         const nativeResponseValue = wasm.TS_Route_free(this_obj);
30553         // debug statements here
30554 }
30555         // struct LDKCVec_CVec_RouteHopZZ Route_get_paths(const struct LDKRoute *NONNULL_PTR this_ptr);
30556 /* @internal */
30557 export function Route_get_paths(this_ptr: number): number {
30558         if(!isWasmInitialized) {
30559                 throw new Error("initializeWasm() must be awaited first!");
30560         }
30561         const nativeResponseValue = wasm.TS_Route_get_paths(this_ptr);
30562         return nativeResponseValue;
30563 }
30564         // void Route_set_paths(struct LDKRoute *NONNULL_PTR this_ptr, struct LDKCVec_CVec_RouteHopZZ val);
30565 /* @internal */
30566 export function Route_set_paths(this_ptr: number, val: number): void {
30567         if(!isWasmInitialized) {
30568                 throw new Error("initializeWasm() must be awaited first!");
30569         }
30570         const nativeResponseValue = wasm.TS_Route_set_paths(this_ptr, val);
30571         // debug statements here
30572 }
30573         // struct LDKPaymentParameters Route_get_payment_params(const struct LDKRoute *NONNULL_PTR this_ptr);
30574 /* @internal */
30575 export function Route_get_payment_params(this_ptr: number): number {
30576         if(!isWasmInitialized) {
30577                 throw new Error("initializeWasm() must be awaited first!");
30578         }
30579         const nativeResponseValue = wasm.TS_Route_get_payment_params(this_ptr);
30580         return nativeResponseValue;
30581 }
30582         // void Route_set_payment_params(struct LDKRoute *NONNULL_PTR this_ptr, struct LDKPaymentParameters val);
30583 /* @internal */
30584 export function Route_set_payment_params(this_ptr: number, val: number): void {
30585         if(!isWasmInitialized) {
30586                 throw new Error("initializeWasm() must be awaited first!");
30587         }
30588         const nativeResponseValue = wasm.TS_Route_set_payment_params(this_ptr, val);
30589         // debug statements here
30590 }
30591         // MUST_USE_RES struct LDKRoute Route_new(struct LDKCVec_CVec_RouteHopZZ paths_arg, struct LDKPaymentParameters payment_params_arg);
30592 /* @internal */
30593 export function Route_new(paths_arg: number, payment_params_arg: number): number {
30594         if(!isWasmInitialized) {
30595                 throw new Error("initializeWasm() must be awaited first!");
30596         }
30597         const nativeResponseValue = wasm.TS_Route_new(paths_arg, payment_params_arg);
30598         return nativeResponseValue;
30599 }
30600         // uintptr_t Route_clone_ptr(LDKRoute *NONNULL_PTR arg);
30601 /* @internal */
30602 export function Route_clone_ptr(arg: number): number {
30603         if(!isWasmInitialized) {
30604                 throw new Error("initializeWasm() must be awaited first!");
30605         }
30606         const nativeResponseValue = wasm.TS_Route_clone_ptr(arg);
30607         return nativeResponseValue;
30608 }
30609         // struct LDKRoute Route_clone(const struct LDKRoute *NONNULL_PTR orig);
30610 /* @internal */
30611 export function Route_clone(orig: number): number {
30612         if(!isWasmInitialized) {
30613                 throw new Error("initializeWasm() must be awaited first!");
30614         }
30615         const nativeResponseValue = wasm.TS_Route_clone(orig);
30616         return nativeResponseValue;
30617 }
30618         // uint64_t Route_hash(const struct LDKRoute *NONNULL_PTR o);
30619 /* @internal */
30620 export function Route_hash(o: number): bigint {
30621         if(!isWasmInitialized) {
30622                 throw new Error("initializeWasm() must be awaited first!");
30623         }
30624         const nativeResponseValue = wasm.TS_Route_hash(o);
30625         return nativeResponseValue;
30626 }
30627         // bool Route_eq(const struct LDKRoute *NONNULL_PTR a, const struct LDKRoute *NONNULL_PTR b);
30628 /* @internal */
30629 export function Route_eq(a: number, b: number): boolean {
30630         if(!isWasmInitialized) {
30631                 throw new Error("initializeWasm() must be awaited first!");
30632         }
30633         const nativeResponseValue = wasm.TS_Route_eq(a, b);
30634         return nativeResponseValue;
30635 }
30636         // MUST_USE_RES uint64_t Route_get_total_fees(const struct LDKRoute *NONNULL_PTR this_arg);
30637 /* @internal */
30638 export function Route_get_total_fees(this_arg: number): bigint {
30639         if(!isWasmInitialized) {
30640                 throw new Error("initializeWasm() must be awaited first!");
30641         }
30642         const nativeResponseValue = wasm.TS_Route_get_total_fees(this_arg);
30643         return nativeResponseValue;
30644 }
30645         // MUST_USE_RES uint64_t Route_get_total_amount(const struct LDKRoute *NONNULL_PTR this_arg);
30646 /* @internal */
30647 export function Route_get_total_amount(this_arg: number): bigint {
30648         if(!isWasmInitialized) {
30649                 throw new Error("initializeWasm() must be awaited first!");
30650         }
30651         const nativeResponseValue = wasm.TS_Route_get_total_amount(this_arg);
30652         return nativeResponseValue;
30653 }
30654         // struct LDKCVec_u8Z Route_write(const struct LDKRoute *NONNULL_PTR obj);
30655 /* @internal */
30656 export function Route_write(obj: number): number {
30657         if(!isWasmInitialized) {
30658                 throw new Error("initializeWasm() must be awaited first!");
30659         }
30660         const nativeResponseValue = wasm.TS_Route_write(obj);
30661         return nativeResponseValue;
30662 }
30663         // struct LDKCResult_RouteDecodeErrorZ Route_read(struct LDKu8slice ser);
30664 /* @internal */
30665 export function Route_read(ser: number): number {
30666         if(!isWasmInitialized) {
30667                 throw new Error("initializeWasm() must be awaited first!");
30668         }
30669         const nativeResponseValue = wasm.TS_Route_read(ser);
30670         return nativeResponseValue;
30671 }
30672         // void RouteParameters_free(struct LDKRouteParameters this_obj);
30673 /* @internal */
30674 export function RouteParameters_free(this_obj: number): void {
30675         if(!isWasmInitialized) {
30676                 throw new Error("initializeWasm() must be awaited first!");
30677         }
30678         const nativeResponseValue = wasm.TS_RouteParameters_free(this_obj);
30679         // debug statements here
30680 }
30681         // struct LDKPaymentParameters RouteParameters_get_payment_params(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
30682 /* @internal */
30683 export function RouteParameters_get_payment_params(this_ptr: number): number {
30684         if(!isWasmInitialized) {
30685                 throw new Error("initializeWasm() must be awaited first!");
30686         }
30687         const nativeResponseValue = wasm.TS_RouteParameters_get_payment_params(this_ptr);
30688         return nativeResponseValue;
30689 }
30690         // void RouteParameters_set_payment_params(struct LDKRouteParameters *NONNULL_PTR this_ptr, struct LDKPaymentParameters val);
30691 /* @internal */
30692 export function RouteParameters_set_payment_params(this_ptr: number, val: number): void {
30693         if(!isWasmInitialized) {
30694                 throw new Error("initializeWasm() must be awaited first!");
30695         }
30696         const nativeResponseValue = wasm.TS_RouteParameters_set_payment_params(this_ptr, val);
30697         // debug statements here
30698 }
30699         // uint64_t RouteParameters_get_final_value_msat(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
30700 /* @internal */
30701 export function RouteParameters_get_final_value_msat(this_ptr: number): bigint {
30702         if(!isWasmInitialized) {
30703                 throw new Error("initializeWasm() must be awaited first!");
30704         }
30705         const nativeResponseValue = wasm.TS_RouteParameters_get_final_value_msat(this_ptr);
30706         return nativeResponseValue;
30707 }
30708         // void RouteParameters_set_final_value_msat(struct LDKRouteParameters *NONNULL_PTR this_ptr, uint64_t val);
30709 /* @internal */
30710 export function RouteParameters_set_final_value_msat(this_ptr: number, val: bigint): void {
30711         if(!isWasmInitialized) {
30712                 throw new Error("initializeWasm() must be awaited first!");
30713         }
30714         const nativeResponseValue = wasm.TS_RouteParameters_set_final_value_msat(this_ptr, val);
30715         // debug statements here
30716 }
30717         // uint32_t RouteParameters_get_final_cltv_expiry_delta(const struct LDKRouteParameters *NONNULL_PTR this_ptr);
30718 /* @internal */
30719 export function RouteParameters_get_final_cltv_expiry_delta(this_ptr: number): number {
30720         if(!isWasmInitialized) {
30721                 throw new Error("initializeWasm() must be awaited first!");
30722         }
30723         const nativeResponseValue = wasm.TS_RouteParameters_get_final_cltv_expiry_delta(this_ptr);
30724         return nativeResponseValue;
30725 }
30726         // void RouteParameters_set_final_cltv_expiry_delta(struct LDKRouteParameters *NONNULL_PTR this_ptr, uint32_t val);
30727 /* @internal */
30728 export function RouteParameters_set_final_cltv_expiry_delta(this_ptr: number, val: number): void {
30729         if(!isWasmInitialized) {
30730                 throw new Error("initializeWasm() must be awaited first!");
30731         }
30732         const nativeResponseValue = wasm.TS_RouteParameters_set_final_cltv_expiry_delta(this_ptr, val);
30733         // debug statements here
30734 }
30735         // MUST_USE_RES struct LDKRouteParameters RouteParameters_new(struct LDKPaymentParameters payment_params_arg, uint64_t final_value_msat_arg, uint32_t final_cltv_expiry_delta_arg);
30736 /* @internal */
30737 export function RouteParameters_new(payment_params_arg: number, final_value_msat_arg: bigint, final_cltv_expiry_delta_arg: number): number {
30738         if(!isWasmInitialized) {
30739                 throw new Error("initializeWasm() must be awaited first!");
30740         }
30741         const nativeResponseValue = wasm.TS_RouteParameters_new(payment_params_arg, final_value_msat_arg, final_cltv_expiry_delta_arg);
30742         return nativeResponseValue;
30743 }
30744         // uintptr_t RouteParameters_clone_ptr(LDKRouteParameters *NONNULL_PTR arg);
30745 /* @internal */
30746 export function RouteParameters_clone_ptr(arg: number): number {
30747         if(!isWasmInitialized) {
30748                 throw new Error("initializeWasm() must be awaited first!");
30749         }
30750         const nativeResponseValue = wasm.TS_RouteParameters_clone_ptr(arg);
30751         return nativeResponseValue;
30752 }
30753         // struct LDKRouteParameters RouteParameters_clone(const struct LDKRouteParameters *NONNULL_PTR orig);
30754 /* @internal */
30755 export function RouteParameters_clone(orig: number): number {
30756         if(!isWasmInitialized) {
30757                 throw new Error("initializeWasm() must be awaited first!");
30758         }
30759         const nativeResponseValue = wasm.TS_RouteParameters_clone(orig);
30760         return nativeResponseValue;
30761 }
30762         // struct LDKCVec_u8Z RouteParameters_write(const struct LDKRouteParameters *NONNULL_PTR obj);
30763 /* @internal */
30764 export function RouteParameters_write(obj: number): number {
30765         if(!isWasmInitialized) {
30766                 throw new Error("initializeWasm() must be awaited first!");
30767         }
30768         const nativeResponseValue = wasm.TS_RouteParameters_write(obj);
30769         return nativeResponseValue;
30770 }
30771         // struct LDKCResult_RouteParametersDecodeErrorZ RouteParameters_read(struct LDKu8slice ser);
30772 /* @internal */
30773 export function RouteParameters_read(ser: number): number {
30774         if(!isWasmInitialized) {
30775                 throw new Error("initializeWasm() must be awaited first!");
30776         }
30777         const nativeResponseValue = wasm.TS_RouteParameters_read(ser);
30778         return nativeResponseValue;
30779 }
30780         // void PaymentParameters_free(struct LDKPaymentParameters this_obj);
30781 /* @internal */
30782 export function PaymentParameters_free(this_obj: number): void {
30783         if(!isWasmInitialized) {
30784                 throw new Error("initializeWasm() must be awaited first!");
30785         }
30786         const nativeResponseValue = wasm.TS_PaymentParameters_free(this_obj);
30787         // debug statements here
30788 }
30789         // struct LDKPublicKey PaymentParameters_get_payee_pubkey(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30790 /* @internal */
30791 export function PaymentParameters_get_payee_pubkey(this_ptr: number): number {
30792         if(!isWasmInitialized) {
30793                 throw new Error("initializeWasm() must be awaited first!");
30794         }
30795         const nativeResponseValue = wasm.TS_PaymentParameters_get_payee_pubkey(this_ptr);
30796         return nativeResponseValue;
30797 }
30798         // void PaymentParameters_set_payee_pubkey(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKPublicKey val);
30799 /* @internal */
30800 export function PaymentParameters_set_payee_pubkey(this_ptr: number, val: number): void {
30801         if(!isWasmInitialized) {
30802                 throw new Error("initializeWasm() must be awaited first!");
30803         }
30804         const nativeResponseValue = wasm.TS_PaymentParameters_set_payee_pubkey(this_ptr, val);
30805         // debug statements here
30806 }
30807         // struct LDKInvoiceFeatures PaymentParameters_get_features(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30808 /* @internal */
30809 export function PaymentParameters_get_features(this_ptr: number): number {
30810         if(!isWasmInitialized) {
30811                 throw new Error("initializeWasm() must be awaited first!");
30812         }
30813         const nativeResponseValue = wasm.TS_PaymentParameters_get_features(this_ptr);
30814         return nativeResponseValue;
30815 }
30816         // void PaymentParameters_set_features(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKInvoiceFeatures val);
30817 /* @internal */
30818 export function PaymentParameters_set_features(this_ptr: number, val: number): void {
30819         if(!isWasmInitialized) {
30820                 throw new Error("initializeWasm() must be awaited first!");
30821         }
30822         const nativeResponseValue = wasm.TS_PaymentParameters_set_features(this_ptr, val);
30823         // debug statements here
30824 }
30825         // struct LDKCVec_RouteHintZ PaymentParameters_get_route_hints(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30826 /* @internal */
30827 export function PaymentParameters_get_route_hints(this_ptr: number): number {
30828         if(!isWasmInitialized) {
30829                 throw new Error("initializeWasm() must be awaited first!");
30830         }
30831         const nativeResponseValue = wasm.TS_PaymentParameters_get_route_hints(this_ptr);
30832         return nativeResponseValue;
30833 }
30834         // void PaymentParameters_set_route_hints(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKCVec_RouteHintZ val);
30835 /* @internal */
30836 export function PaymentParameters_set_route_hints(this_ptr: number, val: number): void {
30837         if(!isWasmInitialized) {
30838                 throw new Error("initializeWasm() must be awaited first!");
30839         }
30840         const nativeResponseValue = wasm.TS_PaymentParameters_set_route_hints(this_ptr, val);
30841         // debug statements here
30842 }
30843         // struct LDKCOption_u64Z PaymentParameters_get_expiry_time(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30844 /* @internal */
30845 export function PaymentParameters_get_expiry_time(this_ptr: number): number {
30846         if(!isWasmInitialized) {
30847                 throw new Error("initializeWasm() must be awaited first!");
30848         }
30849         const nativeResponseValue = wasm.TS_PaymentParameters_get_expiry_time(this_ptr);
30850         return nativeResponseValue;
30851 }
30852         // void PaymentParameters_set_expiry_time(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
30853 /* @internal */
30854 export function PaymentParameters_set_expiry_time(this_ptr: number, val: number): void {
30855         if(!isWasmInitialized) {
30856                 throw new Error("initializeWasm() must be awaited first!");
30857         }
30858         const nativeResponseValue = wasm.TS_PaymentParameters_set_expiry_time(this_ptr, val);
30859         // debug statements here
30860 }
30861         // uint32_t PaymentParameters_get_max_total_cltv_expiry_delta(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30862 /* @internal */
30863 export function PaymentParameters_get_max_total_cltv_expiry_delta(this_ptr: number): number {
30864         if(!isWasmInitialized) {
30865                 throw new Error("initializeWasm() must be awaited first!");
30866         }
30867         const nativeResponseValue = wasm.TS_PaymentParameters_get_max_total_cltv_expiry_delta(this_ptr);
30868         return nativeResponseValue;
30869 }
30870         // void PaymentParameters_set_max_total_cltv_expiry_delta(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint32_t val);
30871 /* @internal */
30872 export function PaymentParameters_set_max_total_cltv_expiry_delta(this_ptr: number, val: number): void {
30873         if(!isWasmInitialized) {
30874                 throw new Error("initializeWasm() must be awaited first!");
30875         }
30876         const nativeResponseValue = wasm.TS_PaymentParameters_set_max_total_cltv_expiry_delta(this_ptr, val);
30877         // debug statements here
30878 }
30879         // uint8_t PaymentParameters_get_max_path_count(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30880 /* @internal */
30881 export function PaymentParameters_get_max_path_count(this_ptr: number): number {
30882         if(!isWasmInitialized) {
30883                 throw new Error("initializeWasm() must be awaited first!");
30884         }
30885         const nativeResponseValue = wasm.TS_PaymentParameters_get_max_path_count(this_ptr);
30886         return nativeResponseValue;
30887 }
30888         // void PaymentParameters_set_max_path_count(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint8_t val);
30889 /* @internal */
30890 export function PaymentParameters_set_max_path_count(this_ptr: number, val: number): void {
30891         if(!isWasmInitialized) {
30892                 throw new Error("initializeWasm() must be awaited first!");
30893         }
30894         const nativeResponseValue = wasm.TS_PaymentParameters_set_max_path_count(this_ptr, val);
30895         // debug statements here
30896 }
30897         // uint8_t PaymentParameters_get_max_channel_saturation_power_of_half(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30898 /* @internal */
30899 export function PaymentParameters_get_max_channel_saturation_power_of_half(this_ptr: number): number {
30900         if(!isWasmInitialized) {
30901                 throw new Error("initializeWasm() must be awaited first!");
30902         }
30903         const nativeResponseValue = wasm.TS_PaymentParameters_get_max_channel_saturation_power_of_half(this_ptr);
30904         return nativeResponseValue;
30905 }
30906         // void PaymentParameters_set_max_channel_saturation_power_of_half(struct LDKPaymentParameters *NONNULL_PTR this_ptr, uint8_t val);
30907 /* @internal */
30908 export function PaymentParameters_set_max_channel_saturation_power_of_half(this_ptr: number, val: number): void {
30909         if(!isWasmInitialized) {
30910                 throw new Error("initializeWasm() must be awaited first!");
30911         }
30912         const nativeResponseValue = wasm.TS_PaymentParameters_set_max_channel_saturation_power_of_half(this_ptr, val);
30913         // debug statements here
30914 }
30915         // struct LDKCVec_u64Z PaymentParameters_get_previously_failed_channels(const struct LDKPaymentParameters *NONNULL_PTR this_ptr);
30916 /* @internal */
30917 export function PaymentParameters_get_previously_failed_channels(this_ptr: number): number {
30918         if(!isWasmInitialized) {
30919                 throw new Error("initializeWasm() must be awaited first!");
30920         }
30921         const nativeResponseValue = wasm.TS_PaymentParameters_get_previously_failed_channels(this_ptr);
30922         return nativeResponseValue;
30923 }
30924         // void PaymentParameters_set_previously_failed_channels(struct LDKPaymentParameters *NONNULL_PTR this_ptr, struct LDKCVec_u64Z val);
30925 /* @internal */
30926 export function PaymentParameters_set_previously_failed_channels(this_ptr: number, val: number): void {
30927         if(!isWasmInitialized) {
30928                 throw new Error("initializeWasm() must be awaited first!");
30929         }
30930         const nativeResponseValue = wasm.TS_PaymentParameters_set_previously_failed_channels(this_ptr, val);
30931         // debug statements here
30932 }
30933         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_new(struct LDKPublicKey payee_pubkey_arg, struct LDKInvoiceFeatures features_arg, struct LDKCVec_RouteHintZ route_hints_arg, struct LDKCOption_u64Z expiry_time_arg, uint32_t max_total_cltv_expiry_delta_arg, uint8_t max_path_count_arg, uint8_t max_channel_saturation_power_of_half_arg, struct LDKCVec_u64Z previously_failed_channels_arg);
30934 /* @internal */
30935 export function PaymentParameters_new(payee_pubkey_arg: number, features_arg: number, route_hints_arg: number, expiry_time_arg: number, max_total_cltv_expiry_delta_arg: number, max_path_count_arg: number, max_channel_saturation_power_of_half_arg: number, previously_failed_channels_arg: number): number {
30936         if(!isWasmInitialized) {
30937                 throw new Error("initializeWasm() must be awaited first!");
30938         }
30939         const nativeResponseValue = wasm.TS_PaymentParameters_new(payee_pubkey_arg, features_arg, route_hints_arg, expiry_time_arg, max_total_cltv_expiry_delta_arg, max_path_count_arg, max_channel_saturation_power_of_half_arg, previously_failed_channels_arg);
30940         return nativeResponseValue;
30941 }
30942         // uintptr_t PaymentParameters_clone_ptr(LDKPaymentParameters *NONNULL_PTR arg);
30943 /* @internal */
30944 export function PaymentParameters_clone_ptr(arg: number): number {
30945         if(!isWasmInitialized) {
30946                 throw new Error("initializeWasm() must be awaited first!");
30947         }
30948         const nativeResponseValue = wasm.TS_PaymentParameters_clone_ptr(arg);
30949         return nativeResponseValue;
30950 }
30951         // struct LDKPaymentParameters PaymentParameters_clone(const struct LDKPaymentParameters *NONNULL_PTR orig);
30952 /* @internal */
30953 export function PaymentParameters_clone(orig: number): number {
30954         if(!isWasmInitialized) {
30955                 throw new Error("initializeWasm() must be awaited first!");
30956         }
30957         const nativeResponseValue = wasm.TS_PaymentParameters_clone(orig);
30958         return nativeResponseValue;
30959 }
30960         // uint64_t PaymentParameters_hash(const struct LDKPaymentParameters *NONNULL_PTR o);
30961 /* @internal */
30962 export function PaymentParameters_hash(o: number): bigint {
30963         if(!isWasmInitialized) {
30964                 throw new Error("initializeWasm() must be awaited first!");
30965         }
30966         const nativeResponseValue = wasm.TS_PaymentParameters_hash(o);
30967         return nativeResponseValue;
30968 }
30969         // bool PaymentParameters_eq(const struct LDKPaymentParameters *NONNULL_PTR a, const struct LDKPaymentParameters *NONNULL_PTR b);
30970 /* @internal */
30971 export function PaymentParameters_eq(a: number, b: number): boolean {
30972         if(!isWasmInitialized) {
30973                 throw new Error("initializeWasm() must be awaited first!");
30974         }
30975         const nativeResponseValue = wasm.TS_PaymentParameters_eq(a, b);
30976         return nativeResponseValue;
30977 }
30978         // struct LDKCVec_u8Z PaymentParameters_write(const struct LDKPaymentParameters *NONNULL_PTR obj);
30979 /* @internal */
30980 export function PaymentParameters_write(obj: number): number {
30981         if(!isWasmInitialized) {
30982                 throw new Error("initializeWasm() must be awaited first!");
30983         }
30984         const nativeResponseValue = wasm.TS_PaymentParameters_write(obj);
30985         return nativeResponseValue;
30986 }
30987         // struct LDKCResult_PaymentParametersDecodeErrorZ PaymentParameters_read(struct LDKu8slice ser);
30988 /* @internal */
30989 export function PaymentParameters_read(ser: number): number {
30990         if(!isWasmInitialized) {
30991                 throw new Error("initializeWasm() must be awaited first!");
30992         }
30993         const nativeResponseValue = wasm.TS_PaymentParameters_read(ser);
30994         return nativeResponseValue;
30995 }
30996         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_from_node_id(struct LDKPublicKey payee_pubkey);
30997 /* @internal */
30998 export function PaymentParameters_from_node_id(payee_pubkey: number): number {
30999         if(!isWasmInitialized) {
31000                 throw new Error("initializeWasm() must be awaited first!");
31001         }
31002         const nativeResponseValue = wasm.TS_PaymentParameters_from_node_id(payee_pubkey);
31003         return nativeResponseValue;
31004 }
31005         // MUST_USE_RES struct LDKPaymentParameters PaymentParameters_for_keysend(struct LDKPublicKey payee_pubkey);
31006 /* @internal */
31007 export function PaymentParameters_for_keysend(payee_pubkey: number): number {
31008         if(!isWasmInitialized) {
31009                 throw new Error("initializeWasm() must be awaited first!");
31010         }
31011         const nativeResponseValue = wasm.TS_PaymentParameters_for_keysend(payee_pubkey);
31012         return nativeResponseValue;
31013 }
31014         // void RouteHint_free(struct LDKRouteHint this_obj);
31015 /* @internal */
31016 export function RouteHint_free(this_obj: number): void {
31017         if(!isWasmInitialized) {
31018                 throw new Error("initializeWasm() must be awaited first!");
31019         }
31020         const nativeResponseValue = wasm.TS_RouteHint_free(this_obj);
31021         // debug statements here
31022 }
31023         // struct LDKCVec_RouteHintHopZ RouteHint_get_a(const struct LDKRouteHint *NONNULL_PTR this_ptr);
31024 /* @internal */
31025 export function RouteHint_get_a(this_ptr: number): number {
31026         if(!isWasmInitialized) {
31027                 throw new Error("initializeWasm() must be awaited first!");
31028         }
31029         const nativeResponseValue = wasm.TS_RouteHint_get_a(this_ptr);
31030         return nativeResponseValue;
31031 }
31032         // void RouteHint_set_a(struct LDKRouteHint *NONNULL_PTR this_ptr, struct LDKCVec_RouteHintHopZ val);
31033 /* @internal */
31034 export function RouteHint_set_a(this_ptr: number, val: number): void {
31035         if(!isWasmInitialized) {
31036                 throw new Error("initializeWasm() must be awaited first!");
31037         }
31038         const nativeResponseValue = wasm.TS_RouteHint_set_a(this_ptr, val);
31039         // debug statements here
31040 }
31041         // MUST_USE_RES struct LDKRouteHint RouteHint_new(struct LDKCVec_RouteHintHopZ a_arg);
31042 /* @internal */
31043 export function RouteHint_new(a_arg: number): number {
31044         if(!isWasmInitialized) {
31045                 throw new Error("initializeWasm() must be awaited first!");
31046         }
31047         const nativeResponseValue = wasm.TS_RouteHint_new(a_arg);
31048         return nativeResponseValue;
31049 }
31050         // uintptr_t RouteHint_clone_ptr(LDKRouteHint *NONNULL_PTR arg);
31051 /* @internal */
31052 export function RouteHint_clone_ptr(arg: number): number {
31053         if(!isWasmInitialized) {
31054                 throw new Error("initializeWasm() must be awaited first!");
31055         }
31056         const nativeResponseValue = wasm.TS_RouteHint_clone_ptr(arg);
31057         return nativeResponseValue;
31058 }
31059         // struct LDKRouteHint RouteHint_clone(const struct LDKRouteHint *NONNULL_PTR orig);
31060 /* @internal */
31061 export function RouteHint_clone(orig: number): number {
31062         if(!isWasmInitialized) {
31063                 throw new Error("initializeWasm() must be awaited first!");
31064         }
31065         const nativeResponseValue = wasm.TS_RouteHint_clone(orig);
31066         return nativeResponseValue;
31067 }
31068         // uint64_t RouteHint_hash(const struct LDKRouteHint *NONNULL_PTR o);
31069 /* @internal */
31070 export function RouteHint_hash(o: number): bigint {
31071         if(!isWasmInitialized) {
31072                 throw new Error("initializeWasm() must be awaited first!");
31073         }
31074         const nativeResponseValue = wasm.TS_RouteHint_hash(o);
31075         return nativeResponseValue;
31076 }
31077         // bool RouteHint_eq(const struct LDKRouteHint *NONNULL_PTR a, const struct LDKRouteHint *NONNULL_PTR b);
31078 /* @internal */
31079 export function RouteHint_eq(a: number, b: number): boolean {
31080         if(!isWasmInitialized) {
31081                 throw new Error("initializeWasm() must be awaited first!");
31082         }
31083         const nativeResponseValue = wasm.TS_RouteHint_eq(a, b);
31084         return nativeResponseValue;
31085 }
31086         // struct LDKCVec_u8Z RouteHint_write(const struct LDKRouteHint *NONNULL_PTR obj);
31087 /* @internal */
31088 export function RouteHint_write(obj: number): number {
31089         if(!isWasmInitialized) {
31090                 throw new Error("initializeWasm() must be awaited first!");
31091         }
31092         const nativeResponseValue = wasm.TS_RouteHint_write(obj);
31093         return nativeResponseValue;
31094 }
31095         // struct LDKCResult_RouteHintDecodeErrorZ RouteHint_read(struct LDKu8slice ser);
31096 /* @internal */
31097 export function RouteHint_read(ser: number): number {
31098         if(!isWasmInitialized) {
31099                 throw new Error("initializeWasm() must be awaited first!");
31100         }
31101         const nativeResponseValue = wasm.TS_RouteHint_read(ser);
31102         return nativeResponseValue;
31103 }
31104         // void RouteHintHop_free(struct LDKRouteHintHop this_obj);
31105 /* @internal */
31106 export function RouteHintHop_free(this_obj: number): void {
31107         if(!isWasmInitialized) {
31108                 throw new Error("initializeWasm() must be awaited first!");
31109         }
31110         const nativeResponseValue = wasm.TS_RouteHintHop_free(this_obj);
31111         // debug statements here
31112 }
31113         // struct LDKPublicKey RouteHintHop_get_src_node_id(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31114 /* @internal */
31115 export function RouteHintHop_get_src_node_id(this_ptr: number): number {
31116         if(!isWasmInitialized) {
31117                 throw new Error("initializeWasm() must be awaited first!");
31118         }
31119         const nativeResponseValue = wasm.TS_RouteHintHop_get_src_node_id(this_ptr);
31120         return nativeResponseValue;
31121 }
31122         // void RouteHintHop_set_src_node_id(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKPublicKey val);
31123 /* @internal */
31124 export function RouteHintHop_set_src_node_id(this_ptr: number, val: number): void {
31125         if(!isWasmInitialized) {
31126                 throw new Error("initializeWasm() must be awaited first!");
31127         }
31128         const nativeResponseValue = wasm.TS_RouteHintHop_set_src_node_id(this_ptr, val);
31129         // debug statements here
31130 }
31131         // uint64_t RouteHintHop_get_short_channel_id(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31132 /* @internal */
31133 export function RouteHintHop_get_short_channel_id(this_ptr: number): bigint {
31134         if(!isWasmInitialized) {
31135                 throw new Error("initializeWasm() must be awaited first!");
31136         }
31137         const nativeResponseValue = wasm.TS_RouteHintHop_get_short_channel_id(this_ptr);
31138         return nativeResponseValue;
31139 }
31140         // void RouteHintHop_set_short_channel_id(struct LDKRouteHintHop *NONNULL_PTR this_ptr, uint64_t val);
31141 /* @internal */
31142 export function RouteHintHop_set_short_channel_id(this_ptr: number, val: bigint): void {
31143         if(!isWasmInitialized) {
31144                 throw new Error("initializeWasm() must be awaited first!");
31145         }
31146         const nativeResponseValue = wasm.TS_RouteHintHop_set_short_channel_id(this_ptr, val);
31147         // debug statements here
31148 }
31149         // struct LDKRoutingFees RouteHintHop_get_fees(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31150 /* @internal */
31151 export function RouteHintHop_get_fees(this_ptr: number): number {
31152         if(!isWasmInitialized) {
31153                 throw new Error("initializeWasm() must be awaited first!");
31154         }
31155         const nativeResponseValue = wasm.TS_RouteHintHop_get_fees(this_ptr);
31156         return nativeResponseValue;
31157 }
31158         // void RouteHintHop_set_fees(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKRoutingFees val);
31159 /* @internal */
31160 export function RouteHintHop_set_fees(this_ptr: number, val: number): void {
31161         if(!isWasmInitialized) {
31162                 throw new Error("initializeWasm() must be awaited first!");
31163         }
31164         const nativeResponseValue = wasm.TS_RouteHintHop_set_fees(this_ptr, val);
31165         // debug statements here
31166 }
31167         // uint16_t RouteHintHop_get_cltv_expiry_delta(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31168 /* @internal */
31169 export function RouteHintHop_get_cltv_expiry_delta(this_ptr: number): number {
31170         if(!isWasmInitialized) {
31171                 throw new Error("initializeWasm() must be awaited first!");
31172         }
31173         const nativeResponseValue = wasm.TS_RouteHintHop_get_cltv_expiry_delta(this_ptr);
31174         return nativeResponseValue;
31175 }
31176         // void RouteHintHop_set_cltv_expiry_delta(struct LDKRouteHintHop *NONNULL_PTR this_ptr, uint16_t val);
31177 /* @internal */
31178 export function RouteHintHop_set_cltv_expiry_delta(this_ptr: number, val: number): void {
31179         if(!isWasmInitialized) {
31180                 throw new Error("initializeWasm() must be awaited first!");
31181         }
31182         const nativeResponseValue = wasm.TS_RouteHintHop_set_cltv_expiry_delta(this_ptr, val);
31183         // debug statements here
31184 }
31185         // struct LDKCOption_u64Z RouteHintHop_get_htlc_minimum_msat(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31186 /* @internal */
31187 export function RouteHintHop_get_htlc_minimum_msat(this_ptr: number): number {
31188         if(!isWasmInitialized) {
31189                 throw new Error("initializeWasm() must be awaited first!");
31190         }
31191         const nativeResponseValue = wasm.TS_RouteHintHop_get_htlc_minimum_msat(this_ptr);
31192         return nativeResponseValue;
31193 }
31194         // void RouteHintHop_set_htlc_minimum_msat(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
31195 /* @internal */
31196 export function RouteHintHop_set_htlc_minimum_msat(this_ptr: number, val: number): void {
31197         if(!isWasmInitialized) {
31198                 throw new Error("initializeWasm() must be awaited first!");
31199         }
31200         const nativeResponseValue = wasm.TS_RouteHintHop_set_htlc_minimum_msat(this_ptr, val);
31201         // debug statements here
31202 }
31203         // struct LDKCOption_u64Z RouteHintHop_get_htlc_maximum_msat(const struct LDKRouteHintHop *NONNULL_PTR this_ptr);
31204 /* @internal */
31205 export function RouteHintHop_get_htlc_maximum_msat(this_ptr: number): number {
31206         if(!isWasmInitialized) {
31207                 throw new Error("initializeWasm() must be awaited first!");
31208         }
31209         const nativeResponseValue = wasm.TS_RouteHintHop_get_htlc_maximum_msat(this_ptr);
31210         return nativeResponseValue;
31211 }
31212         // void RouteHintHop_set_htlc_maximum_msat(struct LDKRouteHintHop *NONNULL_PTR this_ptr, struct LDKCOption_u64Z val);
31213 /* @internal */
31214 export function RouteHintHop_set_htlc_maximum_msat(this_ptr: number, val: number): void {
31215         if(!isWasmInitialized) {
31216                 throw new Error("initializeWasm() must be awaited first!");
31217         }
31218         const nativeResponseValue = wasm.TS_RouteHintHop_set_htlc_maximum_msat(this_ptr, val);
31219         // debug statements here
31220 }
31221         // MUST_USE_RES struct LDKRouteHintHop RouteHintHop_new(struct LDKPublicKey src_node_id_arg, uint64_t short_channel_id_arg, struct LDKRoutingFees fees_arg, uint16_t cltv_expiry_delta_arg, struct LDKCOption_u64Z htlc_minimum_msat_arg, struct LDKCOption_u64Z htlc_maximum_msat_arg);
31222 /* @internal */
31223 export function RouteHintHop_new(src_node_id_arg: number, short_channel_id_arg: bigint, fees_arg: number, cltv_expiry_delta_arg: number, htlc_minimum_msat_arg: number, htlc_maximum_msat_arg: number): number {
31224         if(!isWasmInitialized) {
31225                 throw new Error("initializeWasm() must be awaited first!");
31226         }
31227         const nativeResponseValue = wasm.TS_RouteHintHop_new(src_node_id_arg, short_channel_id_arg, fees_arg, cltv_expiry_delta_arg, htlc_minimum_msat_arg, htlc_maximum_msat_arg);
31228         return nativeResponseValue;
31229 }
31230         // uintptr_t RouteHintHop_clone_ptr(LDKRouteHintHop *NONNULL_PTR arg);
31231 /* @internal */
31232 export function RouteHintHop_clone_ptr(arg: number): number {
31233         if(!isWasmInitialized) {
31234                 throw new Error("initializeWasm() must be awaited first!");
31235         }
31236         const nativeResponseValue = wasm.TS_RouteHintHop_clone_ptr(arg);
31237         return nativeResponseValue;
31238 }
31239         // struct LDKRouteHintHop RouteHintHop_clone(const struct LDKRouteHintHop *NONNULL_PTR orig);
31240 /* @internal */
31241 export function RouteHintHop_clone(orig: number): number {
31242         if(!isWasmInitialized) {
31243                 throw new Error("initializeWasm() must be awaited first!");
31244         }
31245         const nativeResponseValue = wasm.TS_RouteHintHop_clone(orig);
31246         return nativeResponseValue;
31247 }
31248         // uint64_t RouteHintHop_hash(const struct LDKRouteHintHop *NONNULL_PTR o);
31249 /* @internal */
31250 export function RouteHintHop_hash(o: number): bigint {
31251         if(!isWasmInitialized) {
31252                 throw new Error("initializeWasm() must be awaited first!");
31253         }
31254         const nativeResponseValue = wasm.TS_RouteHintHop_hash(o);
31255         return nativeResponseValue;
31256 }
31257         // bool RouteHintHop_eq(const struct LDKRouteHintHop *NONNULL_PTR a, const struct LDKRouteHintHop *NONNULL_PTR b);
31258 /* @internal */
31259 export function RouteHintHop_eq(a: number, b: number): boolean {
31260         if(!isWasmInitialized) {
31261                 throw new Error("initializeWasm() must be awaited first!");
31262         }
31263         const nativeResponseValue = wasm.TS_RouteHintHop_eq(a, b);
31264         return nativeResponseValue;
31265 }
31266         // struct LDKCVec_u8Z RouteHintHop_write(const struct LDKRouteHintHop *NONNULL_PTR obj);
31267 /* @internal */
31268 export function RouteHintHop_write(obj: number): number {
31269         if(!isWasmInitialized) {
31270                 throw new Error("initializeWasm() must be awaited first!");
31271         }
31272         const nativeResponseValue = wasm.TS_RouteHintHop_write(obj);
31273         return nativeResponseValue;
31274 }
31275         // struct LDKCResult_RouteHintHopDecodeErrorZ RouteHintHop_read(struct LDKu8slice ser);
31276 /* @internal */
31277 export function RouteHintHop_read(ser: number): number {
31278         if(!isWasmInitialized) {
31279                 throw new Error("initializeWasm() must be awaited first!");
31280         }
31281         const nativeResponseValue = wasm.TS_RouteHintHop_read(ser);
31282         return nativeResponseValue;
31283 }
31284         // struct LDKCResult_RouteLightningErrorZ find_route(struct LDKPublicKey our_node_pubkey, const struct LDKRouteParameters *NONNULL_PTR route_params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKCVec_ChannelDetailsZ *first_hops, struct LDKLogger logger, const struct LDKScore *NONNULL_PTR scorer, const uint8_t (*random_seed_bytes)[32]);
31285 /* @internal */
31286 export function find_route(our_node_pubkey: number, route_params: number, network_graph: number, first_hops: number, logger: number, scorer: number, random_seed_bytes: number): number {
31287         if(!isWasmInitialized) {
31288                 throw new Error("initializeWasm() must be awaited first!");
31289         }
31290         const nativeResponseValue = wasm.TS_find_route(our_node_pubkey, route_params, network_graph, first_hops, logger, scorer, random_seed_bytes);
31291         return nativeResponseValue;
31292 }
31293         // struct LDKCResult_RouteLightningErrorZ build_route_from_hops(struct LDKPublicKey our_node_pubkey, struct LDKCVec_PublicKeyZ hops, const struct LDKRouteParameters *NONNULL_PTR route_params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger, const uint8_t (*random_seed_bytes)[32]);
31294 /* @internal */
31295 export function build_route_from_hops(our_node_pubkey: number, hops: number, route_params: number, network_graph: number, logger: number, random_seed_bytes: number): number {
31296         if(!isWasmInitialized) {
31297                 throw new Error("initializeWasm() must be awaited first!");
31298         }
31299         const nativeResponseValue = wasm.TS_build_route_from_hops(our_node_pubkey, hops, route_params, network_graph, logger, random_seed_bytes);
31300         return nativeResponseValue;
31301 }
31302         // void Score_free(struct LDKScore this_ptr);
31303 /* @internal */
31304 export function Score_free(this_ptr: number): void {
31305         if(!isWasmInitialized) {
31306                 throw new Error("initializeWasm() must be awaited first!");
31307         }
31308         const nativeResponseValue = wasm.TS_Score_free(this_ptr);
31309         // debug statements here
31310 }
31311         // void LockableScore_free(struct LDKLockableScore this_ptr);
31312 /* @internal */
31313 export function LockableScore_free(this_ptr: number): void {
31314         if(!isWasmInitialized) {
31315                 throw new Error("initializeWasm() must be awaited first!");
31316         }
31317         const nativeResponseValue = wasm.TS_LockableScore_free(this_ptr);
31318         // debug statements here
31319 }
31320         // void MultiThreadedLockableScore_free(struct LDKMultiThreadedLockableScore this_obj);
31321 /* @internal */
31322 export function MultiThreadedLockableScore_free(this_obj: number): void {
31323         if(!isWasmInitialized) {
31324                 throw new Error("initializeWasm() must be awaited first!");
31325         }
31326         const nativeResponseValue = wasm.TS_MultiThreadedLockableScore_free(this_obj);
31327         // debug statements here
31328 }
31329         // struct LDKCVec_u8Z MultiThreadedLockableScore_write(const struct LDKMultiThreadedLockableScore *NONNULL_PTR obj);
31330 /* @internal */
31331 export function MultiThreadedLockableScore_write(obj: number): number {
31332         if(!isWasmInitialized) {
31333                 throw new Error("initializeWasm() must be awaited first!");
31334         }
31335         const nativeResponseValue = wasm.TS_MultiThreadedLockableScore_write(obj);
31336         return nativeResponseValue;
31337 }
31338         // MUST_USE_RES struct LDKMultiThreadedLockableScore MultiThreadedLockableScore_new(struct LDKScore score);
31339 /* @internal */
31340 export function MultiThreadedLockableScore_new(score: number): number {
31341         if(!isWasmInitialized) {
31342                 throw new Error("initializeWasm() must be awaited first!");
31343         }
31344         const nativeResponseValue = wasm.TS_MultiThreadedLockableScore_new(score);
31345         return nativeResponseValue;
31346 }
31347         // void ChannelUsage_free(struct LDKChannelUsage this_obj);
31348 /* @internal */
31349 export function ChannelUsage_free(this_obj: number): void {
31350         if(!isWasmInitialized) {
31351                 throw new Error("initializeWasm() must be awaited first!");
31352         }
31353         const nativeResponseValue = wasm.TS_ChannelUsage_free(this_obj);
31354         // debug statements here
31355 }
31356         // uint64_t ChannelUsage_get_amount_msat(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
31357 /* @internal */
31358 export function ChannelUsage_get_amount_msat(this_ptr: number): bigint {
31359         if(!isWasmInitialized) {
31360                 throw new Error("initializeWasm() must be awaited first!");
31361         }
31362         const nativeResponseValue = wasm.TS_ChannelUsage_get_amount_msat(this_ptr);
31363         return nativeResponseValue;
31364 }
31365         // void ChannelUsage_set_amount_msat(struct LDKChannelUsage *NONNULL_PTR this_ptr, uint64_t val);
31366 /* @internal */
31367 export function ChannelUsage_set_amount_msat(this_ptr: number, val: bigint): void {
31368         if(!isWasmInitialized) {
31369                 throw new Error("initializeWasm() must be awaited first!");
31370         }
31371         const nativeResponseValue = wasm.TS_ChannelUsage_set_amount_msat(this_ptr, val);
31372         // debug statements here
31373 }
31374         // uint64_t ChannelUsage_get_inflight_htlc_msat(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
31375 /* @internal */
31376 export function ChannelUsage_get_inflight_htlc_msat(this_ptr: number): bigint {
31377         if(!isWasmInitialized) {
31378                 throw new Error("initializeWasm() must be awaited first!");
31379         }
31380         const nativeResponseValue = wasm.TS_ChannelUsage_get_inflight_htlc_msat(this_ptr);
31381         return nativeResponseValue;
31382 }
31383         // void ChannelUsage_set_inflight_htlc_msat(struct LDKChannelUsage *NONNULL_PTR this_ptr, uint64_t val);
31384 /* @internal */
31385 export function ChannelUsage_set_inflight_htlc_msat(this_ptr: number, val: bigint): void {
31386         if(!isWasmInitialized) {
31387                 throw new Error("initializeWasm() must be awaited first!");
31388         }
31389         const nativeResponseValue = wasm.TS_ChannelUsage_set_inflight_htlc_msat(this_ptr, val);
31390         // debug statements here
31391 }
31392         // struct LDKEffectiveCapacity ChannelUsage_get_effective_capacity(const struct LDKChannelUsage *NONNULL_PTR this_ptr);
31393 /* @internal */
31394 export function ChannelUsage_get_effective_capacity(this_ptr: number): number {
31395         if(!isWasmInitialized) {
31396                 throw new Error("initializeWasm() must be awaited first!");
31397         }
31398         const nativeResponseValue = wasm.TS_ChannelUsage_get_effective_capacity(this_ptr);
31399         return nativeResponseValue;
31400 }
31401         // void ChannelUsage_set_effective_capacity(struct LDKChannelUsage *NONNULL_PTR this_ptr, struct LDKEffectiveCapacity val);
31402 /* @internal */
31403 export function ChannelUsage_set_effective_capacity(this_ptr: number, val: number): void {
31404         if(!isWasmInitialized) {
31405                 throw new Error("initializeWasm() must be awaited first!");
31406         }
31407         const nativeResponseValue = wasm.TS_ChannelUsage_set_effective_capacity(this_ptr, val);
31408         // debug statements here
31409 }
31410         // MUST_USE_RES struct LDKChannelUsage ChannelUsage_new(uint64_t amount_msat_arg, uint64_t inflight_htlc_msat_arg, struct LDKEffectiveCapacity effective_capacity_arg);
31411 /* @internal */
31412 export function ChannelUsage_new(amount_msat_arg: bigint, inflight_htlc_msat_arg: bigint, effective_capacity_arg: number): number {
31413         if(!isWasmInitialized) {
31414                 throw new Error("initializeWasm() must be awaited first!");
31415         }
31416         const nativeResponseValue = wasm.TS_ChannelUsage_new(amount_msat_arg, inflight_htlc_msat_arg, effective_capacity_arg);
31417         return nativeResponseValue;
31418 }
31419         // uintptr_t ChannelUsage_clone_ptr(LDKChannelUsage *NONNULL_PTR arg);
31420 /* @internal */
31421 export function ChannelUsage_clone_ptr(arg: number): number {
31422         if(!isWasmInitialized) {
31423                 throw new Error("initializeWasm() must be awaited first!");
31424         }
31425         const nativeResponseValue = wasm.TS_ChannelUsage_clone_ptr(arg);
31426         return nativeResponseValue;
31427 }
31428         // struct LDKChannelUsage ChannelUsage_clone(const struct LDKChannelUsage *NONNULL_PTR orig);
31429 /* @internal */
31430 export function ChannelUsage_clone(orig: number): number {
31431         if(!isWasmInitialized) {
31432                 throw new Error("initializeWasm() must be awaited first!");
31433         }
31434         const nativeResponseValue = wasm.TS_ChannelUsage_clone(orig);
31435         return nativeResponseValue;
31436 }
31437         // void FixedPenaltyScorer_free(struct LDKFixedPenaltyScorer this_obj);
31438 /* @internal */
31439 export function FixedPenaltyScorer_free(this_obj: number): void {
31440         if(!isWasmInitialized) {
31441                 throw new Error("initializeWasm() must be awaited first!");
31442         }
31443         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_free(this_obj);
31444         // debug statements here
31445 }
31446         // uintptr_t FixedPenaltyScorer_clone_ptr(LDKFixedPenaltyScorer *NONNULL_PTR arg);
31447 /* @internal */
31448 export function FixedPenaltyScorer_clone_ptr(arg: number): number {
31449         if(!isWasmInitialized) {
31450                 throw new Error("initializeWasm() must be awaited first!");
31451         }
31452         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_clone_ptr(arg);
31453         return nativeResponseValue;
31454 }
31455         // struct LDKFixedPenaltyScorer FixedPenaltyScorer_clone(const struct LDKFixedPenaltyScorer *NONNULL_PTR orig);
31456 /* @internal */
31457 export function FixedPenaltyScorer_clone(orig: number): number {
31458         if(!isWasmInitialized) {
31459                 throw new Error("initializeWasm() must be awaited first!");
31460         }
31461         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_clone(orig);
31462         return nativeResponseValue;
31463 }
31464         // MUST_USE_RES struct LDKFixedPenaltyScorer FixedPenaltyScorer_with_penalty(uint64_t penalty_msat);
31465 /* @internal */
31466 export function FixedPenaltyScorer_with_penalty(penalty_msat: bigint): number {
31467         if(!isWasmInitialized) {
31468                 throw new Error("initializeWasm() must be awaited first!");
31469         }
31470         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_with_penalty(penalty_msat);
31471         return nativeResponseValue;
31472 }
31473         // struct LDKScore FixedPenaltyScorer_as_Score(const struct LDKFixedPenaltyScorer *NONNULL_PTR this_arg);
31474 /* @internal */
31475 export function FixedPenaltyScorer_as_Score(this_arg: number): number {
31476         if(!isWasmInitialized) {
31477                 throw new Error("initializeWasm() must be awaited first!");
31478         }
31479         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_as_Score(this_arg);
31480         return nativeResponseValue;
31481 }
31482         // struct LDKCVec_u8Z FixedPenaltyScorer_write(const struct LDKFixedPenaltyScorer *NONNULL_PTR obj);
31483 /* @internal */
31484 export function FixedPenaltyScorer_write(obj: number): number {
31485         if(!isWasmInitialized) {
31486                 throw new Error("initializeWasm() must be awaited first!");
31487         }
31488         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_write(obj);
31489         return nativeResponseValue;
31490 }
31491         // struct LDKCResult_FixedPenaltyScorerDecodeErrorZ FixedPenaltyScorer_read(struct LDKu8slice ser, uint64_t arg);
31492 /* @internal */
31493 export function FixedPenaltyScorer_read(ser: number, arg: bigint): number {
31494         if(!isWasmInitialized) {
31495                 throw new Error("initializeWasm() must be awaited first!");
31496         }
31497         const nativeResponseValue = wasm.TS_FixedPenaltyScorer_read(ser, arg);
31498         return nativeResponseValue;
31499 }
31500         // void ProbabilisticScorer_free(struct LDKProbabilisticScorer this_obj);
31501 /* @internal */
31502 export function ProbabilisticScorer_free(this_obj: number): void {
31503         if(!isWasmInitialized) {
31504                 throw new Error("initializeWasm() must be awaited first!");
31505         }
31506         const nativeResponseValue = wasm.TS_ProbabilisticScorer_free(this_obj);
31507         // debug statements here
31508 }
31509         // void ProbabilisticScoringParameters_free(struct LDKProbabilisticScoringParameters this_obj);
31510 /* @internal */
31511 export function ProbabilisticScoringParameters_free(this_obj: number): void {
31512         if(!isWasmInitialized) {
31513                 throw new Error("initializeWasm() must be awaited first!");
31514         }
31515         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_free(this_obj);
31516         // debug statements here
31517 }
31518         // uint64_t ProbabilisticScoringParameters_get_base_penalty_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31519 /* @internal */
31520 export function ProbabilisticScoringParameters_get_base_penalty_msat(this_ptr: number): bigint {
31521         if(!isWasmInitialized) {
31522                 throw new Error("initializeWasm() must be awaited first!");
31523         }
31524         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_base_penalty_msat(this_ptr);
31525         return nativeResponseValue;
31526 }
31527         // void ProbabilisticScoringParameters_set_base_penalty_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31528 /* @internal */
31529 export function ProbabilisticScoringParameters_set_base_penalty_msat(this_ptr: number, val: bigint): void {
31530         if(!isWasmInitialized) {
31531                 throw new Error("initializeWasm() must be awaited first!");
31532         }
31533         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_base_penalty_msat(this_ptr, val);
31534         // debug statements here
31535 }
31536         // uint64_t ProbabilisticScoringParameters_get_base_penalty_amount_multiplier_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31537 /* @internal */
31538 export function ProbabilisticScoringParameters_get_base_penalty_amount_multiplier_msat(this_ptr: number): bigint {
31539         if(!isWasmInitialized) {
31540                 throw new Error("initializeWasm() must be awaited first!");
31541         }
31542         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_base_penalty_amount_multiplier_msat(this_ptr);
31543         return nativeResponseValue;
31544 }
31545         // void ProbabilisticScoringParameters_set_base_penalty_amount_multiplier_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31546 /* @internal */
31547 export function ProbabilisticScoringParameters_set_base_penalty_amount_multiplier_msat(this_ptr: number, val: bigint): void {
31548         if(!isWasmInitialized) {
31549                 throw new Error("initializeWasm() must be awaited first!");
31550         }
31551         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_base_penalty_amount_multiplier_msat(this_ptr, val);
31552         // debug statements here
31553 }
31554         // uint64_t ProbabilisticScoringParameters_get_liquidity_penalty_multiplier_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31555 /* @internal */
31556 export function ProbabilisticScoringParameters_get_liquidity_penalty_multiplier_msat(this_ptr: number): bigint {
31557         if(!isWasmInitialized) {
31558                 throw new Error("initializeWasm() must be awaited first!");
31559         }
31560         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_liquidity_penalty_multiplier_msat(this_ptr);
31561         return nativeResponseValue;
31562 }
31563         // void ProbabilisticScoringParameters_set_liquidity_penalty_multiplier_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31564 /* @internal */
31565 export function ProbabilisticScoringParameters_set_liquidity_penalty_multiplier_msat(this_ptr: number, val: bigint): void {
31566         if(!isWasmInitialized) {
31567                 throw new Error("initializeWasm() must be awaited first!");
31568         }
31569         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_liquidity_penalty_multiplier_msat(this_ptr, val);
31570         // debug statements here
31571 }
31572         // uint64_t ProbabilisticScoringParameters_get_liquidity_offset_half_life(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31573 /* @internal */
31574 export function ProbabilisticScoringParameters_get_liquidity_offset_half_life(this_ptr: number): bigint {
31575         if(!isWasmInitialized) {
31576                 throw new Error("initializeWasm() must be awaited first!");
31577         }
31578         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_liquidity_offset_half_life(this_ptr);
31579         return nativeResponseValue;
31580 }
31581         // void ProbabilisticScoringParameters_set_liquidity_offset_half_life(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31582 /* @internal */
31583 export function ProbabilisticScoringParameters_set_liquidity_offset_half_life(this_ptr: number, val: bigint): void {
31584         if(!isWasmInitialized) {
31585                 throw new Error("initializeWasm() must be awaited first!");
31586         }
31587         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_liquidity_offset_half_life(this_ptr, val);
31588         // debug statements here
31589 }
31590         // uint64_t ProbabilisticScoringParameters_get_liquidity_penalty_amount_multiplier_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31591 /* @internal */
31592 export function ProbabilisticScoringParameters_get_liquidity_penalty_amount_multiplier_msat(this_ptr: number): bigint {
31593         if(!isWasmInitialized) {
31594                 throw new Error("initializeWasm() must be awaited first!");
31595         }
31596         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_liquidity_penalty_amount_multiplier_msat(this_ptr);
31597         return nativeResponseValue;
31598 }
31599         // void ProbabilisticScoringParameters_set_liquidity_penalty_amount_multiplier_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31600 /* @internal */
31601 export function ProbabilisticScoringParameters_set_liquidity_penalty_amount_multiplier_msat(this_ptr: number, val: bigint): void {
31602         if(!isWasmInitialized) {
31603                 throw new Error("initializeWasm() must be awaited first!");
31604         }
31605         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_liquidity_penalty_amount_multiplier_msat(this_ptr, val);
31606         // debug statements here
31607 }
31608         // uint64_t ProbabilisticScoringParameters_get_anti_probing_penalty_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31609 /* @internal */
31610 export function ProbabilisticScoringParameters_get_anti_probing_penalty_msat(this_ptr: number): bigint {
31611         if(!isWasmInitialized) {
31612                 throw new Error("initializeWasm() must be awaited first!");
31613         }
31614         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_anti_probing_penalty_msat(this_ptr);
31615         return nativeResponseValue;
31616 }
31617         // void ProbabilisticScoringParameters_set_anti_probing_penalty_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31618 /* @internal */
31619 export function ProbabilisticScoringParameters_set_anti_probing_penalty_msat(this_ptr: number, val: bigint): void {
31620         if(!isWasmInitialized) {
31621                 throw new Error("initializeWasm() must be awaited first!");
31622         }
31623         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_anti_probing_penalty_msat(this_ptr, val);
31624         // debug statements here
31625 }
31626         // uint64_t ProbabilisticScoringParameters_get_considered_impossible_penalty_msat(const struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr);
31627 /* @internal */
31628 export function ProbabilisticScoringParameters_get_considered_impossible_penalty_msat(this_ptr: number): bigint {
31629         if(!isWasmInitialized) {
31630                 throw new Error("initializeWasm() must be awaited first!");
31631         }
31632         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_get_considered_impossible_penalty_msat(this_ptr);
31633         return nativeResponseValue;
31634 }
31635         // void ProbabilisticScoringParameters_set_considered_impossible_penalty_msat(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_ptr, uint64_t val);
31636 /* @internal */
31637 export function ProbabilisticScoringParameters_set_considered_impossible_penalty_msat(this_ptr: number, val: bigint): void {
31638         if(!isWasmInitialized) {
31639                 throw new Error("initializeWasm() must be awaited first!");
31640         }
31641         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_set_considered_impossible_penalty_msat(this_ptr, val);
31642         // debug statements here
31643 }
31644         // uintptr_t ProbabilisticScoringParameters_clone_ptr(LDKProbabilisticScoringParameters *NONNULL_PTR arg);
31645 /* @internal */
31646 export function ProbabilisticScoringParameters_clone_ptr(arg: number): number {
31647         if(!isWasmInitialized) {
31648                 throw new Error("initializeWasm() must be awaited first!");
31649         }
31650         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_clone_ptr(arg);
31651         return nativeResponseValue;
31652 }
31653         // struct LDKProbabilisticScoringParameters ProbabilisticScoringParameters_clone(const struct LDKProbabilisticScoringParameters *NONNULL_PTR orig);
31654 /* @internal */
31655 export function ProbabilisticScoringParameters_clone(orig: number): number {
31656         if(!isWasmInitialized) {
31657                 throw new Error("initializeWasm() must be awaited first!");
31658         }
31659         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_clone(orig);
31660         return nativeResponseValue;
31661 }
31662         // MUST_USE_RES struct LDKProbabilisticScorer ProbabilisticScorer_new(struct LDKProbabilisticScoringParameters params, const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger);
31663 /* @internal */
31664 export function ProbabilisticScorer_new(params: number, network_graph: number, logger: number): number {
31665         if(!isWasmInitialized) {
31666                 throw new Error("initializeWasm() must be awaited first!");
31667         }
31668         const nativeResponseValue = wasm.TS_ProbabilisticScorer_new(params, network_graph, logger);
31669         return nativeResponseValue;
31670 }
31671         // void ProbabilisticScorer_debug_log_liquidity_stats(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
31672 /* @internal */
31673 export function ProbabilisticScorer_debug_log_liquidity_stats(this_arg: number): void {
31674         if(!isWasmInitialized) {
31675                 throw new Error("initializeWasm() must be awaited first!");
31676         }
31677         const nativeResponseValue = wasm.TS_ProbabilisticScorer_debug_log_liquidity_stats(this_arg);
31678         // debug statements here
31679 }
31680         // MUST_USE_RES struct LDKCOption_C2Tuple_u64u64ZZ ProbabilisticScorer_estimated_channel_liquidity_range(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg, uint64_t scid, const struct LDKNodeId *NONNULL_PTR target);
31681 /* @internal */
31682 export function ProbabilisticScorer_estimated_channel_liquidity_range(this_arg: number, scid: bigint, target: number): number {
31683         if(!isWasmInitialized) {
31684                 throw new Error("initializeWasm() must be awaited first!");
31685         }
31686         const nativeResponseValue = wasm.TS_ProbabilisticScorer_estimated_channel_liquidity_range(this_arg, scid, target);
31687         return nativeResponseValue;
31688 }
31689         // void ProbabilisticScorer_add_banned(struct LDKProbabilisticScorer *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
31690 /* @internal */
31691 export function ProbabilisticScorer_add_banned(this_arg: number, node_id: number): void {
31692         if(!isWasmInitialized) {
31693                 throw new Error("initializeWasm() must be awaited first!");
31694         }
31695         const nativeResponseValue = wasm.TS_ProbabilisticScorer_add_banned(this_arg, node_id);
31696         // debug statements here
31697 }
31698         // void ProbabilisticScorer_remove_banned(struct LDKProbabilisticScorer *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
31699 /* @internal */
31700 export function ProbabilisticScorer_remove_banned(this_arg: number, node_id: number): void {
31701         if(!isWasmInitialized) {
31702                 throw new Error("initializeWasm() must be awaited first!");
31703         }
31704         const nativeResponseValue = wasm.TS_ProbabilisticScorer_remove_banned(this_arg, node_id);
31705         // debug statements here
31706 }
31707         // void ProbabilisticScorer_set_manual_penalty(struct LDKProbabilisticScorer *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id, uint64_t penalty);
31708 /* @internal */
31709 export function ProbabilisticScorer_set_manual_penalty(this_arg: number, node_id: number, penalty: bigint): void {
31710         if(!isWasmInitialized) {
31711                 throw new Error("initializeWasm() must be awaited first!");
31712         }
31713         const nativeResponseValue = wasm.TS_ProbabilisticScorer_set_manual_penalty(this_arg, node_id, penalty);
31714         // debug statements here
31715 }
31716         // void ProbabilisticScorer_remove_manual_penalty(struct LDKProbabilisticScorer *NONNULL_PTR this_arg, const struct LDKNodeId *NONNULL_PTR node_id);
31717 /* @internal */
31718 export function ProbabilisticScorer_remove_manual_penalty(this_arg: number, node_id: number): void {
31719         if(!isWasmInitialized) {
31720                 throw new Error("initializeWasm() must be awaited first!");
31721         }
31722         const nativeResponseValue = wasm.TS_ProbabilisticScorer_remove_manual_penalty(this_arg, node_id);
31723         // debug statements here
31724 }
31725         // void ProbabilisticScorer_clear_manual_penalties(struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
31726 /* @internal */
31727 export function ProbabilisticScorer_clear_manual_penalties(this_arg: number): void {
31728         if(!isWasmInitialized) {
31729                 throw new Error("initializeWasm() must be awaited first!");
31730         }
31731         const nativeResponseValue = wasm.TS_ProbabilisticScorer_clear_manual_penalties(this_arg);
31732         // debug statements here
31733 }
31734         // void ProbabilisticScoringParameters_add_banned_from_list(struct LDKProbabilisticScoringParameters *NONNULL_PTR this_arg, struct LDKCVec_NodeIdZ node_ids);
31735 /* @internal */
31736 export function ProbabilisticScoringParameters_add_banned_from_list(this_arg: number, node_ids: number): void {
31737         if(!isWasmInitialized) {
31738                 throw new Error("initializeWasm() must be awaited first!");
31739         }
31740         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_add_banned_from_list(this_arg, node_ids);
31741         // debug statements here
31742 }
31743         // MUST_USE_RES struct LDKProbabilisticScoringParameters ProbabilisticScoringParameters_default(void);
31744 /* @internal */
31745 export function ProbabilisticScoringParameters_default(): number {
31746         if(!isWasmInitialized) {
31747                 throw new Error("initializeWasm() must be awaited first!");
31748         }
31749         const nativeResponseValue = wasm.TS_ProbabilisticScoringParameters_default();
31750         return nativeResponseValue;
31751 }
31752         // struct LDKScore ProbabilisticScorer_as_Score(const struct LDKProbabilisticScorer *NONNULL_PTR this_arg);
31753 /* @internal */
31754 export function ProbabilisticScorer_as_Score(this_arg: number): number {
31755         if(!isWasmInitialized) {
31756                 throw new Error("initializeWasm() must be awaited first!");
31757         }
31758         const nativeResponseValue = wasm.TS_ProbabilisticScorer_as_Score(this_arg);
31759         return nativeResponseValue;
31760 }
31761         // struct LDKCVec_u8Z ProbabilisticScorer_write(const struct LDKProbabilisticScorer *NONNULL_PTR obj);
31762 /* @internal */
31763 export function ProbabilisticScorer_write(obj: number): number {
31764         if(!isWasmInitialized) {
31765                 throw new Error("initializeWasm() must be awaited first!");
31766         }
31767         const nativeResponseValue = wasm.TS_ProbabilisticScorer_write(obj);
31768         return nativeResponseValue;
31769 }
31770         // struct LDKCResult_ProbabilisticScorerDecodeErrorZ ProbabilisticScorer_read(struct LDKu8slice ser, struct LDKProbabilisticScoringParameters arg_a, const struct LDKNetworkGraph *NONNULL_PTR arg_b, struct LDKLogger arg_c);
31771 /* @internal */
31772 export function ProbabilisticScorer_read(ser: number, arg_a: number, arg_b: number, arg_c: number): number {
31773         if(!isWasmInitialized) {
31774                 throw new Error("initializeWasm() must be awaited first!");
31775         }
31776         const nativeResponseValue = wasm.TS_ProbabilisticScorer_read(ser, arg_a, arg_b, arg_c);
31777         return nativeResponseValue;
31778 }
31779         // void ParseError_free(struct LDKParseError this_ptr);
31780 /* @internal */
31781 export function ParseError_free(this_ptr: number): void {
31782         if(!isWasmInitialized) {
31783                 throw new Error("initializeWasm() must be awaited first!");
31784         }
31785         const nativeResponseValue = wasm.TS_ParseError_free(this_ptr);
31786         // debug statements here
31787 }
31788         // uintptr_t ParseError_clone_ptr(LDKParseError *NONNULL_PTR arg);
31789 /* @internal */
31790 export function ParseError_clone_ptr(arg: number): number {
31791         if(!isWasmInitialized) {
31792                 throw new Error("initializeWasm() must be awaited first!");
31793         }
31794         const nativeResponseValue = wasm.TS_ParseError_clone_ptr(arg);
31795         return nativeResponseValue;
31796 }
31797         // struct LDKParseError ParseError_clone(const struct LDKParseError *NONNULL_PTR orig);
31798 /* @internal */
31799 export function ParseError_clone(orig: number): number {
31800         if(!isWasmInitialized) {
31801                 throw new Error("initializeWasm() must be awaited first!");
31802         }
31803         const nativeResponseValue = wasm.TS_ParseError_clone(orig);
31804         return nativeResponseValue;
31805 }
31806         // struct LDKParseError ParseError_bech32_error(struct LDKBech32Error a);
31807 /* @internal */
31808 export function ParseError_bech32_error(a: number): number {
31809         if(!isWasmInitialized) {
31810                 throw new Error("initializeWasm() must be awaited first!");
31811         }
31812         const nativeResponseValue = wasm.TS_ParseError_bech32_error(a);
31813         return nativeResponseValue;
31814 }
31815         // struct LDKParseError ParseError_parse_amount_error(struct LDKError a);
31816 /* @internal */
31817 export function ParseError_parse_amount_error(a: number): number {
31818         if(!isWasmInitialized) {
31819                 throw new Error("initializeWasm() must be awaited first!");
31820         }
31821         const nativeResponseValue = wasm.TS_ParseError_parse_amount_error(a);
31822         return nativeResponseValue;
31823 }
31824         // struct LDKParseError ParseError_malformed_signature(enum LDKSecp256k1Error a);
31825 /* @internal */
31826 export function ParseError_malformed_signature(a: Secp256k1Error): number {
31827         if(!isWasmInitialized) {
31828                 throw new Error("initializeWasm() must be awaited first!");
31829         }
31830         const nativeResponseValue = wasm.TS_ParseError_malformed_signature(a);
31831         return nativeResponseValue;
31832 }
31833         // struct LDKParseError ParseError_bad_prefix(void);
31834 /* @internal */
31835 export function ParseError_bad_prefix(): number {
31836         if(!isWasmInitialized) {
31837                 throw new Error("initializeWasm() must be awaited first!");
31838         }
31839         const nativeResponseValue = wasm.TS_ParseError_bad_prefix();
31840         return nativeResponseValue;
31841 }
31842         // struct LDKParseError ParseError_unknown_currency(void);
31843 /* @internal */
31844 export function ParseError_unknown_currency(): number {
31845         if(!isWasmInitialized) {
31846                 throw new Error("initializeWasm() must be awaited first!");
31847         }
31848         const nativeResponseValue = wasm.TS_ParseError_unknown_currency();
31849         return nativeResponseValue;
31850 }
31851         // struct LDKParseError ParseError_unknown_si_prefix(void);
31852 /* @internal */
31853 export function ParseError_unknown_si_prefix(): number {
31854         if(!isWasmInitialized) {
31855                 throw new Error("initializeWasm() must be awaited first!");
31856         }
31857         const nativeResponseValue = wasm.TS_ParseError_unknown_si_prefix();
31858         return nativeResponseValue;
31859 }
31860         // struct LDKParseError ParseError_malformed_hrp(void);
31861 /* @internal */
31862 export function ParseError_malformed_hrp(): number {
31863         if(!isWasmInitialized) {
31864                 throw new Error("initializeWasm() must be awaited first!");
31865         }
31866         const nativeResponseValue = wasm.TS_ParseError_malformed_hrp();
31867         return nativeResponseValue;
31868 }
31869         // struct LDKParseError ParseError_too_short_data_part(void);
31870 /* @internal */
31871 export function ParseError_too_short_data_part(): number {
31872         if(!isWasmInitialized) {
31873                 throw new Error("initializeWasm() must be awaited first!");
31874         }
31875         const nativeResponseValue = wasm.TS_ParseError_too_short_data_part();
31876         return nativeResponseValue;
31877 }
31878         // struct LDKParseError ParseError_unexpected_end_of_tagged_fields(void);
31879 /* @internal */
31880 export function ParseError_unexpected_end_of_tagged_fields(): number {
31881         if(!isWasmInitialized) {
31882                 throw new Error("initializeWasm() must be awaited first!");
31883         }
31884         const nativeResponseValue = wasm.TS_ParseError_unexpected_end_of_tagged_fields();
31885         return nativeResponseValue;
31886 }
31887         // struct LDKParseError ParseError_description_decode_error(struct LDKError a);
31888 /* @internal */
31889 export function ParseError_description_decode_error(a: number): number {
31890         if(!isWasmInitialized) {
31891                 throw new Error("initializeWasm() must be awaited first!");
31892         }
31893         const nativeResponseValue = wasm.TS_ParseError_description_decode_error(a);
31894         return nativeResponseValue;
31895 }
31896         // struct LDKParseError ParseError_padding_error(void);
31897 /* @internal */
31898 export function ParseError_padding_error(): number {
31899         if(!isWasmInitialized) {
31900                 throw new Error("initializeWasm() must be awaited first!");
31901         }
31902         const nativeResponseValue = wasm.TS_ParseError_padding_error();
31903         return nativeResponseValue;
31904 }
31905         // struct LDKParseError ParseError_integer_overflow_error(void);
31906 /* @internal */
31907 export function ParseError_integer_overflow_error(): number {
31908         if(!isWasmInitialized) {
31909                 throw new Error("initializeWasm() must be awaited first!");
31910         }
31911         const nativeResponseValue = wasm.TS_ParseError_integer_overflow_error();
31912         return nativeResponseValue;
31913 }
31914         // struct LDKParseError ParseError_invalid_seg_wit_program_length(void);
31915 /* @internal */
31916 export function ParseError_invalid_seg_wit_program_length(): number {
31917         if(!isWasmInitialized) {
31918                 throw new Error("initializeWasm() must be awaited first!");
31919         }
31920         const nativeResponseValue = wasm.TS_ParseError_invalid_seg_wit_program_length();
31921         return nativeResponseValue;
31922 }
31923         // struct LDKParseError ParseError_invalid_pub_key_hash_length(void);
31924 /* @internal */
31925 export function ParseError_invalid_pub_key_hash_length(): number {
31926         if(!isWasmInitialized) {
31927                 throw new Error("initializeWasm() must be awaited first!");
31928         }
31929         const nativeResponseValue = wasm.TS_ParseError_invalid_pub_key_hash_length();
31930         return nativeResponseValue;
31931 }
31932         // struct LDKParseError ParseError_invalid_script_hash_length(void);
31933 /* @internal */
31934 export function ParseError_invalid_script_hash_length(): number {
31935         if(!isWasmInitialized) {
31936                 throw new Error("initializeWasm() must be awaited first!");
31937         }
31938         const nativeResponseValue = wasm.TS_ParseError_invalid_script_hash_length();
31939         return nativeResponseValue;
31940 }
31941         // struct LDKParseError ParseError_invalid_recovery_id(void);
31942 /* @internal */
31943 export function ParseError_invalid_recovery_id(): number {
31944         if(!isWasmInitialized) {
31945                 throw new Error("initializeWasm() must be awaited first!");
31946         }
31947         const nativeResponseValue = wasm.TS_ParseError_invalid_recovery_id();
31948         return nativeResponseValue;
31949 }
31950         // struct LDKParseError ParseError_invalid_slice_length(struct LDKStr a);
31951 /* @internal */
31952 export function ParseError_invalid_slice_length(a: number): number {
31953         if(!isWasmInitialized) {
31954                 throw new Error("initializeWasm() must be awaited first!");
31955         }
31956         const nativeResponseValue = wasm.TS_ParseError_invalid_slice_length(a);
31957         return nativeResponseValue;
31958 }
31959         // struct LDKParseError ParseError_skip(void);
31960 /* @internal */
31961 export function ParseError_skip(): number {
31962         if(!isWasmInitialized) {
31963                 throw new Error("initializeWasm() must be awaited first!");
31964         }
31965         const nativeResponseValue = wasm.TS_ParseError_skip();
31966         return nativeResponseValue;
31967 }
31968         // void ParseOrSemanticError_free(struct LDKParseOrSemanticError this_ptr);
31969 /* @internal */
31970 export function ParseOrSemanticError_free(this_ptr: number): void {
31971         if(!isWasmInitialized) {
31972                 throw new Error("initializeWasm() must be awaited first!");
31973         }
31974         const nativeResponseValue = wasm.TS_ParseOrSemanticError_free(this_ptr);
31975         // debug statements here
31976 }
31977         // uintptr_t ParseOrSemanticError_clone_ptr(LDKParseOrSemanticError *NONNULL_PTR arg);
31978 /* @internal */
31979 export function ParseOrSemanticError_clone_ptr(arg: number): number {
31980         if(!isWasmInitialized) {
31981                 throw new Error("initializeWasm() must be awaited first!");
31982         }
31983         const nativeResponseValue = wasm.TS_ParseOrSemanticError_clone_ptr(arg);
31984         return nativeResponseValue;
31985 }
31986         // struct LDKParseOrSemanticError ParseOrSemanticError_clone(const struct LDKParseOrSemanticError *NONNULL_PTR orig);
31987 /* @internal */
31988 export function ParseOrSemanticError_clone(orig: number): number {
31989         if(!isWasmInitialized) {
31990                 throw new Error("initializeWasm() must be awaited first!");
31991         }
31992         const nativeResponseValue = wasm.TS_ParseOrSemanticError_clone(orig);
31993         return nativeResponseValue;
31994 }
31995         // struct LDKParseOrSemanticError ParseOrSemanticError_parse_error(struct LDKParseError a);
31996 /* @internal */
31997 export function ParseOrSemanticError_parse_error(a: number): number {
31998         if(!isWasmInitialized) {
31999                 throw new Error("initializeWasm() must be awaited first!");
32000         }
32001         const nativeResponseValue = wasm.TS_ParseOrSemanticError_parse_error(a);
32002         return nativeResponseValue;
32003 }
32004         // struct LDKParseOrSemanticError ParseOrSemanticError_semantic_error(enum LDKSemanticError a);
32005 /* @internal */
32006 export function ParseOrSemanticError_semantic_error(a: SemanticError): number {
32007         if(!isWasmInitialized) {
32008                 throw new Error("initializeWasm() must be awaited first!");
32009         }
32010         const nativeResponseValue = wasm.TS_ParseOrSemanticError_semantic_error(a);
32011         return nativeResponseValue;
32012 }
32013         // void Invoice_free(struct LDKInvoice this_obj);
32014 /* @internal */
32015 export function Invoice_free(this_obj: number): void {
32016         if(!isWasmInitialized) {
32017                 throw new Error("initializeWasm() must be awaited first!");
32018         }
32019         const nativeResponseValue = wasm.TS_Invoice_free(this_obj);
32020         // debug statements here
32021 }
32022         // bool Invoice_eq(const struct LDKInvoice *NONNULL_PTR a, const struct LDKInvoice *NONNULL_PTR b);
32023 /* @internal */
32024 export function Invoice_eq(a: number, b: number): boolean {
32025         if(!isWasmInitialized) {
32026                 throw new Error("initializeWasm() must be awaited first!");
32027         }
32028         const nativeResponseValue = wasm.TS_Invoice_eq(a, b);
32029         return nativeResponseValue;
32030 }
32031         // uintptr_t Invoice_clone_ptr(LDKInvoice *NONNULL_PTR arg);
32032 /* @internal */
32033 export function Invoice_clone_ptr(arg: number): number {
32034         if(!isWasmInitialized) {
32035                 throw new Error("initializeWasm() must be awaited first!");
32036         }
32037         const nativeResponseValue = wasm.TS_Invoice_clone_ptr(arg);
32038         return nativeResponseValue;
32039 }
32040         // struct LDKInvoice Invoice_clone(const struct LDKInvoice *NONNULL_PTR orig);
32041 /* @internal */
32042 export function Invoice_clone(orig: number): number {
32043         if(!isWasmInitialized) {
32044                 throw new Error("initializeWasm() must be awaited first!");
32045         }
32046         const nativeResponseValue = wasm.TS_Invoice_clone(orig);
32047         return nativeResponseValue;
32048 }
32049         // void SignedRawInvoice_free(struct LDKSignedRawInvoice this_obj);
32050 /* @internal */
32051 export function SignedRawInvoice_free(this_obj: number): void {
32052         if(!isWasmInitialized) {
32053                 throw new Error("initializeWasm() must be awaited first!");
32054         }
32055         const nativeResponseValue = wasm.TS_SignedRawInvoice_free(this_obj);
32056         // debug statements here
32057 }
32058         // bool SignedRawInvoice_eq(const struct LDKSignedRawInvoice *NONNULL_PTR a, const struct LDKSignedRawInvoice *NONNULL_PTR b);
32059 /* @internal */
32060 export function SignedRawInvoice_eq(a: number, b: number): boolean {
32061         if(!isWasmInitialized) {
32062                 throw new Error("initializeWasm() must be awaited first!");
32063         }
32064         const nativeResponseValue = wasm.TS_SignedRawInvoice_eq(a, b);
32065         return nativeResponseValue;
32066 }
32067         // uintptr_t SignedRawInvoice_clone_ptr(LDKSignedRawInvoice *NONNULL_PTR arg);
32068 /* @internal */
32069 export function SignedRawInvoice_clone_ptr(arg: number): number {
32070         if(!isWasmInitialized) {
32071                 throw new Error("initializeWasm() must be awaited first!");
32072         }
32073         const nativeResponseValue = wasm.TS_SignedRawInvoice_clone_ptr(arg);
32074         return nativeResponseValue;
32075 }
32076         // struct LDKSignedRawInvoice SignedRawInvoice_clone(const struct LDKSignedRawInvoice *NONNULL_PTR orig);
32077 /* @internal */
32078 export function SignedRawInvoice_clone(orig: number): number {
32079         if(!isWasmInitialized) {
32080                 throw new Error("initializeWasm() must be awaited first!");
32081         }
32082         const nativeResponseValue = wasm.TS_SignedRawInvoice_clone(orig);
32083         return nativeResponseValue;
32084 }
32085         // void RawInvoice_free(struct LDKRawInvoice this_obj);
32086 /* @internal */
32087 export function RawInvoice_free(this_obj: number): void {
32088         if(!isWasmInitialized) {
32089                 throw new Error("initializeWasm() must be awaited first!");
32090         }
32091         const nativeResponseValue = wasm.TS_RawInvoice_free(this_obj);
32092         // debug statements here
32093 }
32094         // struct LDKRawDataPart RawInvoice_get_data(const struct LDKRawInvoice *NONNULL_PTR this_ptr);
32095 /* @internal */
32096 export function RawInvoice_get_data(this_ptr: number): number {
32097         if(!isWasmInitialized) {
32098                 throw new Error("initializeWasm() must be awaited first!");
32099         }
32100         const nativeResponseValue = wasm.TS_RawInvoice_get_data(this_ptr);
32101         return nativeResponseValue;
32102 }
32103         // void RawInvoice_set_data(struct LDKRawInvoice *NONNULL_PTR this_ptr, struct LDKRawDataPart val);
32104 /* @internal */
32105 export function RawInvoice_set_data(this_ptr: number, val: number): void {
32106         if(!isWasmInitialized) {
32107                 throw new Error("initializeWasm() must be awaited first!");
32108         }
32109         const nativeResponseValue = wasm.TS_RawInvoice_set_data(this_ptr, val);
32110         // debug statements here
32111 }
32112         // bool RawInvoice_eq(const struct LDKRawInvoice *NONNULL_PTR a, const struct LDKRawInvoice *NONNULL_PTR b);
32113 /* @internal */
32114 export function RawInvoice_eq(a: number, b: number): boolean {
32115         if(!isWasmInitialized) {
32116                 throw new Error("initializeWasm() must be awaited first!");
32117         }
32118         const nativeResponseValue = wasm.TS_RawInvoice_eq(a, b);
32119         return nativeResponseValue;
32120 }
32121         // uintptr_t RawInvoice_clone_ptr(LDKRawInvoice *NONNULL_PTR arg);
32122 /* @internal */
32123 export function RawInvoice_clone_ptr(arg: number): number {
32124         if(!isWasmInitialized) {
32125                 throw new Error("initializeWasm() must be awaited first!");
32126         }
32127         const nativeResponseValue = wasm.TS_RawInvoice_clone_ptr(arg);
32128         return nativeResponseValue;
32129 }
32130         // struct LDKRawInvoice RawInvoice_clone(const struct LDKRawInvoice *NONNULL_PTR orig);
32131 /* @internal */
32132 export function RawInvoice_clone(orig: number): number {
32133         if(!isWasmInitialized) {
32134                 throw new Error("initializeWasm() must be awaited first!");
32135         }
32136         const nativeResponseValue = wasm.TS_RawInvoice_clone(orig);
32137         return nativeResponseValue;
32138 }
32139         // void RawDataPart_free(struct LDKRawDataPart this_obj);
32140 /* @internal */
32141 export function RawDataPart_free(this_obj: number): void {
32142         if(!isWasmInitialized) {
32143                 throw new Error("initializeWasm() must be awaited first!");
32144         }
32145         const nativeResponseValue = wasm.TS_RawDataPart_free(this_obj);
32146         // debug statements here
32147 }
32148         // struct LDKPositiveTimestamp RawDataPart_get_timestamp(const struct LDKRawDataPart *NONNULL_PTR this_ptr);
32149 /* @internal */
32150 export function RawDataPart_get_timestamp(this_ptr: number): number {
32151         if(!isWasmInitialized) {
32152                 throw new Error("initializeWasm() must be awaited first!");
32153         }
32154         const nativeResponseValue = wasm.TS_RawDataPart_get_timestamp(this_ptr);
32155         return nativeResponseValue;
32156 }
32157         // void RawDataPart_set_timestamp(struct LDKRawDataPart *NONNULL_PTR this_ptr, struct LDKPositiveTimestamp val);
32158 /* @internal */
32159 export function RawDataPart_set_timestamp(this_ptr: number, val: number): void {
32160         if(!isWasmInitialized) {
32161                 throw new Error("initializeWasm() must be awaited first!");
32162         }
32163         const nativeResponseValue = wasm.TS_RawDataPart_set_timestamp(this_ptr, val);
32164         // debug statements here
32165 }
32166         // bool RawDataPart_eq(const struct LDKRawDataPart *NONNULL_PTR a, const struct LDKRawDataPart *NONNULL_PTR b);
32167 /* @internal */
32168 export function RawDataPart_eq(a: number, b: number): boolean {
32169         if(!isWasmInitialized) {
32170                 throw new Error("initializeWasm() must be awaited first!");
32171         }
32172         const nativeResponseValue = wasm.TS_RawDataPart_eq(a, b);
32173         return nativeResponseValue;
32174 }
32175         // uintptr_t RawDataPart_clone_ptr(LDKRawDataPart *NONNULL_PTR arg);
32176 /* @internal */
32177 export function RawDataPart_clone_ptr(arg: number): number {
32178         if(!isWasmInitialized) {
32179                 throw new Error("initializeWasm() must be awaited first!");
32180         }
32181         const nativeResponseValue = wasm.TS_RawDataPart_clone_ptr(arg);
32182         return nativeResponseValue;
32183 }
32184         // struct LDKRawDataPart RawDataPart_clone(const struct LDKRawDataPart *NONNULL_PTR orig);
32185 /* @internal */
32186 export function RawDataPart_clone(orig: number): number {
32187         if(!isWasmInitialized) {
32188                 throw new Error("initializeWasm() must be awaited first!");
32189         }
32190         const nativeResponseValue = wasm.TS_RawDataPart_clone(orig);
32191         return nativeResponseValue;
32192 }
32193         // void PositiveTimestamp_free(struct LDKPositiveTimestamp this_obj);
32194 /* @internal */
32195 export function PositiveTimestamp_free(this_obj: number): void {
32196         if(!isWasmInitialized) {
32197                 throw new Error("initializeWasm() must be awaited first!");
32198         }
32199         const nativeResponseValue = wasm.TS_PositiveTimestamp_free(this_obj);
32200         // debug statements here
32201 }
32202         // bool PositiveTimestamp_eq(const struct LDKPositiveTimestamp *NONNULL_PTR a, const struct LDKPositiveTimestamp *NONNULL_PTR b);
32203 /* @internal */
32204 export function PositiveTimestamp_eq(a: number, b: number): boolean {
32205         if(!isWasmInitialized) {
32206                 throw new Error("initializeWasm() must be awaited first!");
32207         }
32208         const nativeResponseValue = wasm.TS_PositiveTimestamp_eq(a, b);
32209         return nativeResponseValue;
32210 }
32211         // uintptr_t PositiveTimestamp_clone_ptr(LDKPositiveTimestamp *NONNULL_PTR arg);
32212 /* @internal */
32213 export function PositiveTimestamp_clone_ptr(arg: number): number {
32214         if(!isWasmInitialized) {
32215                 throw new Error("initializeWasm() must be awaited first!");
32216         }
32217         const nativeResponseValue = wasm.TS_PositiveTimestamp_clone_ptr(arg);
32218         return nativeResponseValue;
32219 }
32220         // struct LDKPositiveTimestamp PositiveTimestamp_clone(const struct LDKPositiveTimestamp *NONNULL_PTR orig);
32221 /* @internal */
32222 export function PositiveTimestamp_clone(orig: number): number {
32223         if(!isWasmInitialized) {
32224                 throw new Error("initializeWasm() must be awaited first!");
32225         }
32226         const nativeResponseValue = wasm.TS_PositiveTimestamp_clone(orig);
32227         return nativeResponseValue;
32228 }
32229         // enum LDKSiPrefix SiPrefix_clone(const enum LDKSiPrefix *NONNULL_PTR orig);
32230 /* @internal */
32231 export function SiPrefix_clone(orig: number): SiPrefix {
32232         if(!isWasmInitialized) {
32233                 throw new Error("initializeWasm() must be awaited first!");
32234         }
32235         const nativeResponseValue = wasm.TS_SiPrefix_clone(orig);
32236         return nativeResponseValue;
32237 }
32238         // enum LDKSiPrefix SiPrefix_milli(void);
32239 /* @internal */
32240 export function SiPrefix_milli(): SiPrefix {
32241         if(!isWasmInitialized) {
32242                 throw new Error("initializeWasm() must be awaited first!");
32243         }
32244         const nativeResponseValue = wasm.TS_SiPrefix_milli();
32245         return nativeResponseValue;
32246 }
32247         // enum LDKSiPrefix SiPrefix_micro(void);
32248 /* @internal */
32249 export function SiPrefix_micro(): SiPrefix {
32250         if(!isWasmInitialized) {
32251                 throw new Error("initializeWasm() must be awaited first!");
32252         }
32253         const nativeResponseValue = wasm.TS_SiPrefix_micro();
32254         return nativeResponseValue;
32255 }
32256         // enum LDKSiPrefix SiPrefix_nano(void);
32257 /* @internal */
32258 export function SiPrefix_nano(): SiPrefix {
32259         if(!isWasmInitialized) {
32260                 throw new Error("initializeWasm() must be awaited first!");
32261         }
32262         const nativeResponseValue = wasm.TS_SiPrefix_nano();
32263         return nativeResponseValue;
32264 }
32265         // enum LDKSiPrefix SiPrefix_pico(void);
32266 /* @internal */
32267 export function SiPrefix_pico(): SiPrefix {
32268         if(!isWasmInitialized) {
32269                 throw new Error("initializeWasm() must be awaited first!");
32270         }
32271         const nativeResponseValue = wasm.TS_SiPrefix_pico();
32272         return nativeResponseValue;
32273 }
32274         // bool SiPrefix_eq(const enum LDKSiPrefix *NONNULL_PTR a, const enum LDKSiPrefix *NONNULL_PTR b);
32275 /* @internal */
32276 export function SiPrefix_eq(a: number, b: number): boolean {
32277         if(!isWasmInitialized) {
32278                 throw new Error("initializeWasm() must be awaited first!");
32279         }
32280         const nativeResponseValue = wasm.TS_SiPrefix_eq(a, b);
32281         return nativeResponseValue;
32282 }
32283         // MUST_USE_RES uint64_t SiPrefix_multiplier(const enum LDKSiPrefix *NONNULL_PTR this_arg);
32284 /* @internal */
32285 export function SiPrefix_multiplier(this_arg: number): bigint {
32286         if(!isWasmInitialized) {
32287                 throw new Error("initializeWasm() must be awaited first!");
32288         }
32289         const nativeResponseValue = wasm.TS_SiPrefix_multiplier(this_arg);
32290         return nativeResponseValue;
32291 }
32292         // enum LDKCurrency Currency_clone(const enum LDKCurrency *NONNULL_PTR orig);
32293 /* @internal */
32294 export function Currency_clone(orig: number): Currency {
32295         if(!isWasmInitialized) {
32296                 throw new Error("initializeWasm() must be awaited first!");
32297         }
32298         const nativeResponseValue = wasm.TS_Currency_clone(orig);
32299         return nativeResponseValue;
32300 }
32301         // enum LDKCurrency Currency_bitcoin(void);
32302 /* @internal */
32303 export function Currency_bitcoin(): Currency {
32304         if(!isWasmInitialized) {
32305                 throw new Error("initializeWasm() must be awaited first!");
32306         }
32307         const nativeResponseValue = wasm.TS_Currency_bitcoin();
32308         return nativeResponseValue;
32309 }
32310         // enum LDKCurrency Currency_bitcoin_testnet(void);
32311 /* @internal */
32312 export function Currency_bitcoin_testnet(): Currency {
32313         if(!isWasmInitialized) {
32314                 throw new Error("initializeWasm() must be awaited first!");
32315         }
32316         const nativeResponseValue = wasm.TS_Currency_bitcoin_testnet();
32317         return nativeResponseValue;
32318 }
32319         // enum LDKCurrency Currency_regtest(void);
32320 /* @internal */
32321 export function Currency_regtest(): Currency {
32322         if(!isWasmInitialized) {
32323                 throw new Error("initializeWasm() must be awaited first!");
32324         }
32325         const nativeResponseValue = wasm.TS_Currency_regtest();
32326         return nativeResponseValue;
32327 }
32328         // enum LDKCurrency Currency_simnet(void);
32329 /* @internal */
32330 export function Currency_simnet(): Currency {
32331         if(!isWasmInitialized) {
32332                 throw new Error("initializeWasm() must be awaited first!");
32333         }
32334         const nativeResponseValue = wasm.TS_Currency_simnet();
32335         return nativeResponseValue;
32336 }
32337         // enum LDKCurrency Currency_signet(void);
32338 /* @internal */
32339 export function Currency_signet(): Currency {
32340         if(!isWasmInitialized) {
32341                 throw new Error("initializeWasm() must be awaited first!");
32342         }
32343         const nativeResponseValue = wasm.TS_Currency_signet();
32344         return nativeResponseValue;
32345 }
32346         // uint64_t Currency_hash(const enum LDKCurrency *NONNULL_PTR o);
32347 /* @internal */
32348 export function Currency_hash(o: number): bigint {
32349         if(!isWasmInitialized) {
32350                 throw new Error("initializeWasm() must be awaited first!");
32351         }
32352         const nativeResponseValue = wasm.TS_Currency_hash(o);
32353         return nativeResponseValue;
32354 }
32355         // bool Currency_eq(const enum LDKCurrency *NONNULL_PTR a, const enum LDKCurrency *NONNULL_PTR b);
32356 /* @internal */
32357 export function Currency_eq(a: number, b: number): boolean {
32358         if(!isWasmInitialized) {
32359                 throw new Error("initializeWasm() must be awaited first!");
32360         }
32361         const nativeResponseValue = wasm.TS_Currency_eq(a, b);
32362         return nativeResponseValue;
32363 }
32364         // void Sha256_free(struct LDKSha256 this_obj);
32365 /* @internal */
32366 export function Sha256_free(this_obj: number): void {
32367         if(!isWasmInitialized) {
32368                 throw new Error("initializeWasm() must be awaited first!");
32369         }
32370         const nativeResponseValue = wasm.TS_Sha256_free(this_obj);
32371         // debug statements here
32372 }
32373         // uintptr_t Sha256_clone_ptr(LDKSha256 *NONNULL_PTR arg);
32374 /* @internal */
32375 export function Sha256_clone_ptr(arg: number): number {
32376         if(!isWasmInitialized) {
32377                 throw new Error("initializeWasm() must be awaited first!");
32378         }
32379         const nativeResponseValue = wasm.TS_Sha256_clone_ptr(arg);
32380         return nativeResponseValue;
32381 }
32382         // struct LDKSha256 Sha256_clone(const struct LDKSha256 *NONNULL_PTR orig);
32383 /* @internal */
32384 export function Sha256_clone(orig: number): number {
32385         if(!isWasmInitialized) {
32386                 throw new Error("initializeWasm() must be awaited first!");
32387         }
32388         const nativeResponseValue = wasm.TS_Sha256_clone(orig);
32389         return nativeResponseValue;
32390 }
32391         // uint64_t Sha256_hash(const struct LDKSha256 *NONNULL_PTR o);
32392 /* @internal */
32393 export function Sha256_hash(o: number): bigint {
32394         if(!isWasmInitialized) {
32395                 throw new Error("initializeWasm() must be awaited first!");
32396         }
32397         const nativeResponseValue = wasm.TS_Sha256_hash(o);
32398         return nativeResponseValue;
32399 }
32400         // bool Sha256_eq(const struct LDKSha256 *NONNULL_PTR a, const struct LDKSha256 *NONNULL_PTR b);
32401 /* @internal */
32402 export function Sha256_eq(a: number, b: number): boolean {
32403         if(!isWasmInitialized) {
32404                 throw new Error("initializeWasm() must be awaited first!");
32405         }
32406         const nativeResponseValue = wasm.TS_Sha256_eq(a, b);
32407         return nativeResponseValue;
32408 }
32409         // void Description_free(struct LDKDescription this_obj);
32410 /* @internal */
32411 export function Description_free(this_obj: number): void {
32412         if(!isWasmInitialized) {
32413                 throw new Error("initializeWasm() must be awaited first!");
32414         }
32415         const nativeResponseValue = wasm.TS_Description_free(this_obj);
32416         // debug statements here
32417 }
32418         // uintptr_t Description_clone_ptr(LDKDescription *NONNULL_PTR arg);
32419 /* @internal */
32420 export function Description_clone_ptr(arg: number): number {
32421         if(!isWasmInitialized) {
32422                 throw new Error("initializeWasm() must be awaited first!");
32423         }
32424         const nativeResponseValue = wasm.TS_Description_clone_ptr(arg);
32425         return nativeResponseValue;
32426 }
32427         // struct LDKDescription Description_clone(const struct LDKDescription *NONNULL_PTR orig);
32428 /* @internal */
32429 export function Description_clone(orig: number): number {
32430         if(!isWasmInitialized) {
32431                 throw new Error("initializeWasm() must be awaited first!");
32432         }
32433         const nativeResponseValue = wasm.TS_Description_clone(orig);
32434         return nativeResponseValue;
32435 }
32436         // uint64_t Description_hash(const struct LDKDescription *NONNULL_PTR o);
32437 /* @internal */
32438 export function Description_hash(o: number): bigint {
32439         if(!isWasmInitialized) {
32440                 throw new Error("initializeWasm() must be awaited first!");
32441         }
32442         const nativeResponseValue = wasm.TS_Description_hash(o);
32443         return nativeResponseValue;
32444 }
32445         // bool Description_eq(const struct LDKDescription *NONNULL_PTR a, const struct LDKDescription *NONNULL_PTR b);
32446 /* @internal */
32447 export function Description_eq(a: number, b: number): boolean {
32448         if(!isWasmInitialized) {
32449                 throw new Error("initializeWasm() must be awaited first!");
32450         }
32451         const nativeResponseValue = wasm.TS_Description_eq(a, b);
32452         return nativeResponseValue;
32453 }
32454         // void PayeePubKey_free(struct LDKPayeePubKey this_obj);
32455 /* @internal */
32456 export function PayeePubKey_free(this_obj: number): void {
32457         if(!isWasmInitialized) {
32458                 throw new Error("initializeWasm() must be awaited first!");
32459         }
32460         const nativeResponseValue = wasm.TS_PayeePubKey_free(this_obj);
32461         // debug statements here
32462 }
32463         // struct LDKPublicKey PayeePubKey_get_a(const struct LDKPayeePubKey *NONNULL_PTR this_ptr);
32464 /* @internal */
32465 export function PayeePubKey_get_a(this_ptr: number): number {
32466         if(!isWasmInitialized) {
32467                 throw new Error("initializeWasm() must be awaited first!");
32468         }
32469         const nativeResponseValue = wasm.TS_PayeePubKey_get_a(this_ptr);
32470         return nativeResponseValue;
32471 }
32472         // void PayeePubKey_set_a(struct LDKPayeePubKey *NONNULL_PTR this_ptr, struct LDKPublicKey val);
32473 /* @internal */
32474 export function PayeePubKey_set_a(this_ptr: number, val: number): void {
32475         if(!isWasmInitialized) {
32476                 throw new Error("initializeWasm() must be awaited first!");
32477         }
32478         const nativeResponseValue = wasm.TS_PayeePubKey_set_a(this_ptr, val);
32479         // debug statements here
32480 }
32481         // MUST_USE_RES struct LDKPayeePubKey PayeePubKey_new(struct LDKPublicKey a_arg);
32482 /* @internal */
32483 export function PayeePubKey_new(a_arg: number): number {
32484         if(!isWasmInitialized) {
32485                 throw new Error("initializeWasm() must be awaited first!");
32486         }
32487         const nativeResponseValue = wasm.TS_PayeePubKey_new(a_arg);
32488         return nativeResponseValue;
32489 }
32490         // uintptr_t PayeePubKey_clone_ptr(LDKPayeePubKey *NONNULL_PTR arg);
32491 /* @internal */
32492 export function PayeePubKey_clone_ptr(arg: number): number {
32493         if(!isWasmInitialized) {
32494                 throw new Error("initializeWasm() must be awaited first!");
32495         }
32496         const nativeResponseValue = wasm.TS_PayeePubKey_clone_ptr(arg);
32497         return nativeResponseValue;
32498 }
32499         // struct LDKPayeePubKey PayeePubKey_clone(const struct LDKPayeePubKey *NONNULL_PTR orig);
32500 /* @internal */
32501 export function PayeePubKey_clone(orig: number): number {
32502         if(!isWasmInitialized) {
32503                 throw new Error("initializeWasm() must be awaited first!");
32504         }
32505         const nativeResponseValue = wasm.TS_PayeePubKey_clone(orig);
32506         return nativeResponseValue;
32507 }
32508         // uint64_t PayeePubKey_hash(const struct LDKPayeePubKey *NONNULL_PTR o);
32509 /* @internal */
32510 export function PayeePubKey_hash(o: number): bigint {
32511         if(!isWasmInitialized) {
32512                 throw new Error("initializeWasm() must be awaited first!");
32513         }
32514         const nativeResponseValue = wasm.TS_PayeePubKey_hash(o);
32515         return nativeResponseValue;
32516 }
32517         // bool PayeePubKey_eq(const struct LDKPayeePubKey *NONNULL_PTR a, const struct LDKPayeePubKey *NONNULL_PTR b);
32518 /* @internal */
32519 export function PayeePubKey_eq(a: number, b: number): boolean {
32520         if(!isWasmInitialized) {
32521                 throw new Error("initializeWasm() must be awaited first!");
32522         }
32523         const nativeResponseValue = wasm.TS_PayeePubKey_eq(a, b);
32524         return nativeResponseValue;
32525 }
32526         // void ExpiryTime_free(struct LDKExpiryTime this_obj);
32527 /* @internal */
32528 export function ExpiryTime_free(this_obj: number): void {
32529         if(!isWasmInitialized) {
32530                 throw new Error("initializeWasm() must be awaited first!");
32531         }
32532         const nativeResponseValue = wasm.TS_ExpiryTime_free(this_obj);
32533         // debug statements here
32534 }
32535         // uintptr_t ExpiryTime_clone_ptr(LDKExpiryTime *NONNULL_PTR arg);
32536 /* @internal */
32537 export function ExpiryTime_clone_ptr(arg: number): number {
32538         if(!isWasmInitialized) {
32539                 throw new Error("initializeWasm() must be awaited first!");
32540         }
32541         const nativeResponseValue = wasm.TS_ExpiryTime_clone_ptr(arg);
32542         return nativeResponseValue;
32543 }
32544         // struct LDKExpiryTime ExpiryTime_clone(const struct LDKExpiryTime *NONNULL_PTR orig);
32545 /* @internal */
32546 export function ExpiryTime_clone(orig: number): number {
32547         if(!isWasmInitialized) {
32548                 throw new Error("initializeWasm() must be awaited first!");
32549         }
32550         const nativeResponseValue = wasm.TS_ExpiryTime_clone(orig);
32551         return nativeResponseValue;
32552 }
32553         // uint64_t ExpiryTime_hash(const struct LDKExpiryTime *NONNULL_PTR o);
32554 /* @internal */
32555 export function ExpiryTime_hash(o: number): bigint {
32556         if(!isWasmInitialized) {
32557                 throw new Error("initializeWasm() must be awaited first!");
32558         }
32559         const nativeResponseValue = wasm.TS_ExpiryTime_hash(o);
32560         return nativeResponseValue;
32561 }
32562         // bool ExpiryTime_eq(const struct LDKExpiryTime *NONNULL_PTR a, const struct LDKExpiryTime *NONNULL_PTR b);
32563 /* @internal */
32564 export function ExpiryTime_eq(a: number, b: number): boolean {
32565         if(!isWasmInitialized) {
32566                 throw new Error("initializeWasm() must be awaited first!");
32567         }
32568         const nativeResponseValue = wasm.TS_ExpiryTime_eq(a, b);
32569         return nativeResponseValue;
32570 }
32571         // void MinFinalCltvExpiry_free(struct LDKMinFinalCltvExpiry this_obj);
32572 /* @internal */
32573 export function MinFinalCltvExpiry_free(this_obj: number): void {
32574         if(!isWasmInitialized) {
32575                 throw new Error("initializeWasm() must be awaited first!");
32576         }
32577         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_free(this_obj);
32578         // debug statements here
32579 }
32580         // uint64_t MinFinalCltvExpiry_get_a(const struct LDKMinFinalCltvExpiry *NONNULL_PTR this_ptr);
32581 /* @internal */
32582 export function MinFinalCltvExpiry_get_a(this_ptr: number): bigint {
32583         if(!isWasmInitialized) {
32584                 throw new Error("initializeWasm() must be awaited first!");
32585         }
32586         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_get_a(this_ptr);
32587         return nativeResponseValue;
32588 }
32589         // void MinFinalCltvExpiry_set_a(struct LDKMinFinalCltvExpiry *NONNULL_PTR this_ptr, uint64_t val);
32590 /* @internal */
32591 export function MinFinalCltvExpiry_set_a(this_ptr: number, val: bigint): void {
32592         if(!isWasmInitialized) {
32593                 throw new Error("initializeWasm() must be awaited first!");
32594         }
32595         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_set_a(this_ptr, val);
32596         // debug statements here
32597 }
32598         // MUST_USE_RES struct LDKMinFinalCltvExpiry MinFinalCltvExpiry_new(uint64_t a_arg);
32599 /* @internal */
32600 export function MinFinalCltvExpiry_new(a_arg: bigint): number {
32601         if(!isWasmInitialized) {
32602                 throw new Error("initializeWasm() must be awaited first!");
32603         }
32604         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_new(a_arg);
32605         return nativeResponseValue;
32606 }
32607         // uintptr_t MinFinalCltvExpiry_clone_ptr(LDKMinFinalCltvExpiry *NONNULL_PTR arg);
32608 /* @internal */
32609 export function MinFinalCltvExpiry_clone_ptr(arg: number): number {
32610         if(!isWasmInitialized) {
32611                 throw new Error("initializeWasm() must be awaited first!");
32612         }
32613         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_clone_ptr(arg);
32614         return nativeResponseValue;
32615 }
32616         // struct LDKMinFinalCltvExpiry MinFinalCltvExpiry_clone(const struct LDKMinFinalCltvExpiry *NONNULL_PTR orig);
32617 /* @internal */
32618 export function MinFinalCltvExpiry_clone(orig: number): number {
32619         if(!isWasmInitialized) {
32620                 throw new Error("initializeWasm() must be awaited first!");
32621         }
32622         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_clone(orig);
32623         return nativeResponseValue;
32624 }
32625         // uint64_t MinFinalCltvExpiry_hash(const struct LDKMinFinalCltvExpiry *NONNULL_PTR o);
32626 /* @internal */
32627 export function MinFinalCltvExpiry_hash(o: number): bigint {
32628         if(!isWasmInitialized) {
32629                 throw new Error("initializeWasm() must be awaited first!");
32630         }
32631         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_hash(o);
32632         return nativeResponseValue;
32633 }
32634         // bool MinFinalCltvExpiry_eq(const struct LDKMinFinalCltvExpiry *NONNULL_PTR a, const struct LDKMinFinalCltvExpiry *NONNULL_PTR b);
32635 /* @internal */
32636 export function MinFinalCltvExpiry_eq(a: number, b: number): boolean {
32637         if(!isWasmInitialized) {
32638                 throw new Error("initializeWasm() must be awaited first!");
32639         }
32640         const nativeResponseValue = wasm.TS_MinFinalCltvExpiry_eq(a, b);
32641         return nativeResponseValue;
32642 }
32643         // void Fallback_free(struct LDKFallback this_ptr);
32644 /* @internal */
32645 export function Fallback_free(this_ptr: number): void {
32646         if(!isWasmInitialized) {
32647                 throw new Error("initializeWasm() must be awaited first!");
32648         }
32649         const nativeResponseValue = wasm.TS_Fallback_free(this_ptr);
32650         // debug statements here
32651 }
32652         // uintptr_t Fallback_clone_ptr(LDKFallback *NONNULL_PTR arg);
32653 /* @internal */
32654 export function Fallback_clone_ptr(arg: number): number {
32655         if(!isWasmInitialized) {
32656                 throw new Error("initializeWasm() must be awaited first!");
32657         }
32658         const nativeResponseValue = wasm.TS_Fallback_clone_ptr(arg);
32659         return nativeResponseValue;
32660 }
32661         // struct LDKFallback Fallback_clone(const struct LDKFallback *NONNULL_PTR orig);
32662 /* @internal */
32663 export function Fallback_clone(orig: number): number {
32664         if(!isWasmInitialized) {
32665                 throw new Error("initializeWasm() must be awaited first!");
32666         }
32667         const nativeResponseValue = wasm.TS_Fallback_clone(orig);
32668         return nativeResponseValue;
32669 }
32670         // struct LDKFallback Fallback_seg_wit_program(struct LDKu5 version, struct LDKCVec_u8Z program);
32671 /* @internal */
32672 export function Fallback_seg_wit_program(version: number, program: number): number {
32673         if(!isWasmInitialized) {
32674                 throw new Error("initializeWasm() must be awaited first!");
32675         }
32676         const nativeResponseValue = wasm.TS_Fallback_seg_wit_program(version, program);
32677         return nativeResponseValue;
32678 }
32679         // struct LDKFallback Fallback_pub_key_hash(struct LDKTwentyBytes a);
32680 /* @internal */
32681 export function Fallback_pub_key_hash(a: number): number {
32682         if(!isWasmInitialized) {
32683                 throw new Error("initializeWasm() must be awaited first!");
32684         }
32685         const nativeResponseValue = wasm.TS_Fallback_pub_key_hash(a);
32686         return nativeResponseValue;
32687 }
32688         // struct LDKFallback Fallback_script_hash(struct LDKTwentyBytes a);
32689 /* @internal */
32690 export function Fallback_script_hash(a: number): number {
32691         if(!isWasmInitialized) {
32692                 throw new Error("initializeWasm() must be awaited first!");
32693         }
32694         const nativeResponseValue = wasm.TS_Fallback_script_hash(a);
32695         return nativeResponseValue;
32696 }
32697         // uint64_t Fallback_hash(const struct LDKFallback *NONNULL_PTR o);
32698 /* @internal */
32699 export function Fallback_hash(o: number): bigint {
32700         if(!isWasmInitialized) {
32701                 throw new Error("initializeWasm() must be awaited first!");
32702         }
32703         const nativeResponseValue = wasm.TS_Fallback_hash(o);
32704         return nativeResponseValue;
32705 }
32706         // bool Fallback_eq(const struct LDKFallback *NONNULL_PTR a, const struct LDKFallback *NONNULL_PTR b);
32707 /* @internal */
32708 export function Fallback_eq(a: number, b: number): boolean {
32709         if(!isWasmInitialized) {
32710                 throw new Error("initializeWasm() must be awaited first!");
32711         }
32712         const nativeResponseValue = wasm.TS_Fallback_eq(a, b);
32713         return nativeResponseValue;
32714 }
32715         // void InvoiceSignature_free(struct LDKInvoiceSignature this_obj);
32716 /* @internal */
32717 export function InvoiceSignature_free(this_obj: number): void {
32718         if(!isWasmInitialized) {
32719                 throw new Error("initializeWasm() must be awaited first!");
32720         }
32721         const nativeResponseValue = wasm.TS_InvoiceSignature_free(this_obj);
32722         // debug statements here
32723 }
32724         // uintptr_t InvoiceSignature_clone_ptr(LDKInvoiceSignature *NONNULL_PTR arg);
32725 /* @internal */
32726 export function InvoiceSignature_clone_ptr(arg: number): number {
32727         if(!isWasmInitialized) {
32728                 throw new Error("initializeWasm() must be awaited first!");
32729         }
32730         const nativeResponseValue = wasm.TS_InvoiceSignature_clone_ptr(arg);
32731         return nativeResponseValue;
32732 }
32733         // struct LDKInvoiceSignature InvoiceSignature_clone(const struct LDKInvoiceSignature *NONNULL_PTR orig);
32734 /* @internal */
32735 export function InvoiceSignature_clone(orig: number): number {
32736         if(!isWasmInitialized) {
32737                 throw new Error("initializeWasm() must be awaited first!");
32738         }
32739         const nativeResponseValue = wasm.TS_InvoiceSignature_clone(orig);
32740         return nativeResponseValue;
32741 }
32742         // bool InvoiceSignature_eq(const struct LDKInvoiceSignature *NONNULL_PTR a, const struct LDKInvoiceSignature *NONNULL_PTR b);
32743 /* @internal */
32744 export function InvoiceSignature_eq(a: number, b: number): boolean {
32745         if(!isWasmInitialized) {
32746                 throw new Error("initializeWasm() must be awaited first!");
32747         }
32748         const nativeResponseValue = wasm.TS_InvoiceSignature_eq(a, b);
32749         return nativeResponseValue;
32750 }
32751         // void PrivateRoute_free(struct LDKPrivateRoute this_obj);
32752 /* @internal */
32753 export function PrivateRoute_free(this_obj: number): void {
32754         if(!isWasmInitialized) {
32755                 throw new Error("initializeWasm() must be awaited first!");
32756         }
32757         const nativeResponseValue = wasm.TS_PrivateRoute_free(this_obj);
32758         // debug statements here
32759 }
32760         // uintptr_t PrivateRoute_clone_ptr(LDKPrivateRoute *NONNULL_PTR arg);
32761 /* @internal */
32762 export function PrivateRoute_clone_ptr(arg: number): number {
32763         if(!isWasmInitialized) {
32764                 throw new Error("initializeWasm() must be awaited first!");
32765         }
32766         const nativeResponseValue = wasm.TS_PrivateRoute_clone_ptr(arg);
32767         return nativeResponseValue;
32768 }
32769         // struct LDKPrivateRoute PrivateRoute_clone(const struct LDKPrivateRoute *NONNULL_PTR orig);
32770 /* @internal */
32771 export function PrivateRoute_clone(orig: number): number {
32772         if(!isWasmInitialized) {
32773                 throw new Error("initializeWasm() must be awaited first!");
32774         }
32775         const nativeResponseValue = wasm.TS_PrivateRoute_clone(orig);
32776         return nativeResponseValue;
32777 }
32778         // uint64_t PrivateRoute_hash(const struct LDKPrivateRoute *NONNULL_PTR o);
32779 /* @internal */
32780 export function PrivateRoute_hash(o: number): bigint {
32781         if(!isWasmInitialized) {
32782                 throw new Error("initializeWasm() must be awaited first!");
32783         }
32784         const nativeResponseValue = wasm.TS_PrivateRoute_hash(o);
32785         return nativeResponseValue;
32786 }
32787         // bool PrivateRoute_eq(const struct LDKPrivateRoute *NONNULL_PTR a, const struct LDKPrivateRoute *NONNULL_PTR b);
32788 /* @internal */
32789 export function PrivateRoute_eq(a: number, b: number): boolean {
32790         if(!isWasmInitialized) {
32791                 throw new Error("initializeWasm() must be awaited first!");
32792         }
32793         const nativeResponseValue = wasm.TS_PrivateRoute_eq(a, b);
32794         return nativeResponseValue;
32795 }
32796         // MUST_USE_RES struct LDKC3Tuple_RawInvoice_u832InvoiceSignatureZ SignedRawInvoice_into_parts(struct LDKSignedRawInvoice this_arg);
32797 /* @internal */
32798 export function SignedRawInvoice_into_parts(this_arg: number): number {
32799         if(!isWasmInitialized) {
32800                 throw new Error("initializeWasm() must be awaited first!");
32801         }
32802         const nativeResponseValue = wasm.TS_SignedRawInvoice_into_parts(this_arg);
32803         return nativeResponseValue;
32804 }
32805         // MUST_USE_RES struct LDKRawInvoice SignedRawInvoice_raw_invoice(const struct LDKSignedRawInvoice *NONNULL_PTR this_arg);
32806 /* @internal */
32807 export function SignedRawInvoice_raw_invoice(this_arg: number): number {
32808         if(!isWasmInitialized) {
32809                 throw new Error("initializeWasm() must be awaited first!");
32810         }
32811         const nativeResponseValue = wasm.TS_SignedRawInvoice_raw_invoice(this_arg);
32812         return nativeResponseValue;
32813 }
32814         // MUST_USE_RES const uint8_t (*SignedRawInvoice_hash(const struct LDKSignedRawInvoice *NONNULL_PTR this_arg))[32];
32815 /* @internal */
32816 export function SignedRawInvoice_hash(this_arg: number): number {
32817         if(!isWasmInitialized) {
32818                 throw new Error("initializeWasm() must be awaited first!");
32819         }
32820         const nativeResponseValue = wasm.TS_SignedRawInvoice_hash(this_arg);
32821         return nativeResponseValue;
32822 }
32823         // MUST_USE_RES struct LDKInvoiceSignature SignedRawInvoice_signature(const struct LDKSignedRawInvoice *NONNULL_PTR this_arg);
32824 /* @internal */
32825 export function SignedRawInvoice_signature(this_arg: number): number {
32826         if(!isWasmInitialized) {
32827                 throw new Error("initializeWasm() must be awaited first!");
32828         }
32829         const nativeResponseValue = wasm.TS_SignedRawInvoice_signature(this_arg);
32830         return nativeResponseValue;
32831 }
32832         // MUST_USE_RES struct LDKCResult_PayeePubKeyErrorZ SignedRawInvoice_recover_payee_pub_key(const struct LDKSignedRawInvoice *NONNULL_PTR this_arg);
32833 /* @internal */
32834 export function SignedRawInvoice_recover_payee_pub_key(this_arg: number): number {
32835         if(!isWasmInitialized) {
32836                 throw new Error("initializeWasm() must be awaited first!");
32837         }
32838         const nativeResponseValue = wasm.TS_SignedRawInvoice_recover_payee_pub_key(this_arg);
32839         return nativeResponseValue;
32840 }
32841         // MUST_USE_RES bool SignedRawInvoice_check_signature(const struct LDKSignedRawInvoice *NONNULL_PTR this_arg);
32842 /* @internal */
32843 export function SignedRawInvoice_check_signature(this_arg: number): boolean {
32844         if(!isWasmInitialized) {
32845                 throw new Error("initializeWasm() must be awaited first!");
32846         }
32847         const nativeResponseValue = wasm.TS_SignedRawInvoice_check_signature(this_arg);
32848         return nativeResponseValue;
32849 }
32850         // MUST_USE_RES struct LDKThirtyTwoBytes RawInvoice_hash(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32851 /* @internal */
32852 export function RawInvoice_hash(this_arg: number): number {
32853         if(!isWasmInitialized) {
32854                 throw new Error("initializeWasm() must be awaited first!");
32855         }
32856         const nativeResponseValue = wasm.TS_RawInvoice_hash(this_arg);
32857         return nativeResponseValue;
32858 }
32859         // MUST_USE_RES struct LDKSha256 RawInvoice_payment_hash(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32860 /* @internal */
32861 export function RawInvoice_payment_hash(this_arg: number): number {
32862         if(!isWasmInitialized) {
32863                 throw new Error("initializeWasm() must be awaited first!");
32864         }
32865         const nativeResponseValue = wasm.TS_RawInvoice_payment_hash(this_arg);
32866         return nativeResponseValue;
32867 }
32868         // MUST_USE_RES struct LDKDescription RawInvoice_description(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32869 /* @internal */
32870 export function RawInvoice_description(this_arg: number): number {
32871         if(!isWasmInitialized) {
32872                 throw new Error("initializeWasm() must be awaited first!");
32873         }
32874         const nativeResponseValue = wasm.TS_RawInvoice_description(this_arg);
32875         return nativeResponseValue;
32876 }
32877         // MUST_USE_RES struct LDKPayeePubKey RawInvoice_payee_pub_key(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32878 /* @internal */
32879 export function RawInvoice_payee_pub_key(this_arg: number): number {
32880         if(!isWasmInitialized) {
32881                 throw new Error("initializeWasm() must be awaited first!");
32882         }
32883         const nativeResponseValue = wasm.TS_RawInvoice_payee_pub_key(this_arg);
32884         return nativeResponseValue;
32885 }
32886         // MUST_USE_RES struct LDKSha256 RawInvoice_description_hash(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32887 /* @internal */
32888 export function RawInvoice_description_hash(this_arg: number): number {
32889         if(!isWasmInitialized) {
32890                 throw new Error("initializeWasm() must be awaited first!");
32891         }
32892         const nativeResponseValue = wasm.TS_RawInvoice_description_hash(this_arg);
32893         return nativeResponseValue;
32894 }
32895         // MUST_USE_RES struct LDKExpiryTime RawInvoice_expiry_time(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32896 /* @internal */
32897 export function RawInvoice_expiry_time(this_arg: number): number {
32898         if(!isWasmInitialized) {
32899                 throw new Error("initializeWasm() must be awaited first!");
32900         }
32901         const nativeResponseValue = wasm.TS_RawInvoice_expiry_time(this_arg);
32902         return nativeResponseValue;
32903 }
32904         // MUST_USE_RES struct LDKMinFinalCltvExpiry RawInvoice_min_final_cltv_expiry(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32905 /* @internal */
32906 export function RawInvoice_min_final_cltv_expiry(this_arg: number): number {
32907         if(!isWasmInitialized) {
32908                 throw new Error("initializeWasm() must be awaited first!");
32909         }
32910         const nativeResponseValue = wasm.TS_RawInvoice_min_final_cltv_expiry(this_arg);
32911         return nativeResponseValue;
32912 }
32913         // MUST_USE_RES struct LDKThirtyTwoBytes RawInvoice_payment_secret(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32914 /* @internal */
32915 export function RawInvoice_payment_secret(this_arg: number): number {
32916         if(!isWasmInitialized) {
32917                 throw new Error("initializeWasm() must be awaited first!");
32918         }
32919         const nativeResponseValue = wasm.TS_RawInvoice_payment_secret(this_arg);
32920         return nativeResponseValue;
32921 }
32922         // MUST_USE_RES struct LDKInvoiceFeatures RawInvoice_features(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32923 /* @internal */
32924 export function RawInvoice_features(this_arg: number): number {
32925         if(!isWasmInitialized) {
32926                 throw new Error("initializeWasm() must be awaited first!");
32927         }
32928         const nativeResponseValue = wasm.TS_RawInvoice_features(this_arg);
32929         return nativeResponseValue;
32930 }
32931         // MUST_USE_RES struct LDKCVec_PrivateRouteZ RawInvoice_private_routes(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32932 /* @internal */
32933 export function RawInvoice_private_routes(this_arg: number): number {
32934         if(!isWasmInitialized) {
32935                 throw new Error("initializeWasm() must be awaited first!");
32936         }
32937         const nativeResponseValue = wasm.TS_RawInvoice_private_routes(this_arg);
32938         return nativeResponseValue;
32939 }
32940         // MUST_USE_RES struct LDKCOption_u64Z RawInvoice_amount_pico_btc(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32941 /* @internal */
32942 export function RawInvoice_amount_pico_btc(this_arg: number): number {
32943         if(!isWasmInitialized) {
32944                 throw new Error("initializeWasm() must be awaited first!");
32945         }
32946         const nativeResponseValue = wasm.TS_RawInvoice_amount_pico_btc(this_arg);
32947         return nativeResponseValue;
32948 }
32949         // MUST_USE_RES enum LDKCurrency RawInvoice_currency(const struct LDKRawInvoice *NONNULL_PTR this_arg);
32950 /* @internal */
32951 export function RawInvoice_currency(this_arg: number): Currency {
32952         if(!isWasmInitialized) {
32953                 throw new Error("initializeWasm() must be awaited first!");
32954         }
32955         const nativeResponseValue = wasm.TS_RawInvoice_currency(this_arg);
32956         return nativeResponseValue;
32957 }
32958         // MUST_USE_RES struct LDKCResult_PositiveTimestampCreationErrorZ PositiveTimestamp_from_unix_timestamp(uint64_t unix_seconds);
32959 /* @internal */
32960 export function PositiveTimestamp_from_unix_timestamp(unix_seconds: bigint): number {
32961         if(!isWasmInitialized) {
32962                 throw new Error("initializeWasm() must be awaited first!");
32963         }
32964         const nativeResponseValue = wasm.TS_PositiveTimestamp_from_unix_timestamp(unix_seconds);
32965         return nativeResponseValue;
32966 }
32967         // MUST_USE_RES struct LDKCResult_PositiveTimestampCreationErrorZ PositiveTimestamp_from_duration_since_epoch(uint64_t duration);
32968 /* @internal */
32969 export function PositiveTimestamp_from_duration_since_epoch(duration: bigint): number {
32970         if(!isWasmInitialized) {
32971                 throw new Error("initializeWasm() must be awaited first!");
32972         }
32973         const nativeResponseValue = wasm.TS_PositiveTimestamp_from_duration_since_epoch(duration);
32974         return nativeResponseValue;
32975 }
32976         // MUST_USE_RES uint64_t PositiveTimestamp_as_unix_timestamp(const struct LDKPositiveTimestamp *NONNULL_PTR this_arg);
32977 /* @internal */
32978 export function PositiveTimestamp_as_unix_timestamp(this_arg: number): bigint {
32979         if(!isWasmInitialized) {
32980                 throw new Error("initializeWasm() must be awaited first!");
32981         }
32982         const nativeResponseValue = wasm.TS_PositiveTimestamp_as_unix_timestamp(this_arg);
32983         return nativeResponseValue;
32984 }
32985         // MUST_USE_RES uint64_t PositiveTimestamp_as_duration_since_epoch(const struct LDKPositiveTimestamp *NONNULL_PTR this_arg);
32986 /* @internal */
32987 export function PositiveTimestamp_as_duration_since_epoch(this_arg: number): bigint {
32988         if(!isWasmInitialized) {
32989                 throw new Error("initializeWasm() must be awaited first!");
32990         }
32991         const nativeResponseValue = wasm.TS_PositiveTimestamp_as_duration_since_epoch(this_arg);
32992         return nativeResponseValue;
32993 }
32994         // MUST_USE_RES struct LDKSignedRawInvoice Invoice_into_signed_raw(struct LDKInvoice this_arg);
32995 /* @internal */
32996 export function Invoice_into_signed_raw(this_arg: number): number {
32997         if(!isWasmInitialized) {
32998                 throw new Error("initializeWasm() must be awaited first!");
32999         }
33000         const nativeResponseValue = wasm.TS_Invoice_into_signed_raw(this_arg);
33001         return nativeResponseValue;
33002 }
33003         // MUST_USE_RES struct LDKCResult_NoneSemanticErrorZ Invoice_check_signature(const struct LDKInvoice *NONNULL_PTR this_arg);
33004 /* @internal */
33005 export function Invoice_check_signature(this_arg: number): number {
33006         if(!isWasmInitialized) {
33007                 throw new Error("initializeWasm() must be awaited first!");
33008         }
33009         const nativeResponseValue = wasm.TS_Invoice_check_signature(this_arg);
33010         return nativeResponseValue;
33011 }
33012         // MUST_USE_RES struct LDKCResult_InvoiceSemanticErrorZ Invoice_from_signed(struct LDKSignedRawInvoice signed_invoice);
33013 /* @internal */
33014 export function Invoice_from_signed(signed_invoice: number): number {
33015         if(!isWasmInitialized) {
33016                 throw new Error("initializeWasm() must be awaited first!");
33017         }
33018         const nativeResponseValue = wasm.TS_Invoice_from_signed(signed_invoice);
33019         return nativeResponseValue;
33020 }
33021         // MUST_USE_RES uint64_t Invoice_duration_since_epoch(const struct LDKInvoice *NONNULL_PTR this_arg);
33022 /* @internal */
33023 export function Invoice_duration_since_epoch(this_arg: number): bigint {
33024         if(!isWasmInitialized) {
33025                 throw new Error("initializeWasm() must be awaited first!");
33026         }
33027         const nativeResponseValue = wasm.TS_Invoice_duration_since_epoch(this_arg);
33028         return nativeResponseValue;
33029 }
33030         // MUST_USE_RES const uint8_t (*Invoice_payment_hash(const struct LDKInvoice *NONNULL_PTR this_arg))[32];
33031 /* @internal */
33032 export function Invoice_payment_hash(this_arg: number): number {
33033         if(!isWasmInitialized) {
33034                 throw new Error("initializeWasm() must be awaited first!");
33035         }
33036         const nativeResponseValue = wasm.TS_Invoice_payment_hash(this_arg);
33037         return nativeResponseValue;
33038 }
33039         // MUST_USE_RES struct LDKPublicKey Invoice_payee_pub_key(const struct LDKInvoice *NONNULL_PTR this_arg);
33040 /* @internal */
33041 export function Invoice_payee_pub_key(this_arg: number): number {
33042         if(!isWasmInitialized) {
33043                 throw new Error("initializeWasm() must be awaited first!");
33044         }
33045         const nativeResponseValue = wasm.TS_Invoice_payee_pub_key(this_arg);
33046         return nativeResponseValue;
33047 }
33048         // MUST_USE_RES const uint8_t (*Invoice_payment_secret(const struct LDKInvoice *NONNULL_PTR this_arg))[32];
33049 /* @internal */
33050 export function Invoice_payment_secret(this_arg: number): number {
33051         if(!isWasmInitialized) {
33052                 throw new Error("initializeWasm() must be awaited first!");
33053         }
33054         const nativeResponseValue = wasm.TS_Invoice_payment_secret(this_arg);
33055         return nativeResponseValue;
33056 }
33057         // MUST_USE_RES struct LDKInvoiceFeatures Invoice_features(const struct LDKInvoice *NONNULL_PTR this_arg);
33058 /* @internal */
33059 export function Invoice_features(this_arg: number): number {
33060         if(!isWasmInitialized) {
33061                 throw new Error("initializeWasm() must be awaited first!");
33062         }
33063         const nativeResponseValue = wasm.TS_Invoice_features(this_arg);
33064         return nativeResponseValue;
33065 }
33066         // MUST_USE_RES struct LDKPublicKey Invoice_recover_payee_pub_key(const struct LDKInvoice *NONNULL_PTR this_arg);
33067 /* @internal */
33068 export function Invoice_recover_payee_pub_key(this_arg: number): number {
33069         if(!isWasmInitialized) {
33070                 throw new Error("initializeWasm() must be awaited first!");
33071         }
33072         const nativeResponseValue = wasm.TS_Invoice_recover_payee_pub_key(this_arg);
33073         return nativeResponseValue;
33074 }
33075         // MUST_USE_RES uint64_t Invoice_expiry_time(const struct LDKInvoice *NONNULL_PTR this_arg);
33076 /* @internal */
33077 export function Invoice_expiry_time(this_arg: number): bigint {
33078         if(!isWasmInitialized) {
33079                 throw new Error("initializeWasm() must be awaited first!");
33080         }
33081         const nativeResponseValue = wasm.TS_Invoice_expiry_time(this_arg);
33082         return nativeResponseValue;
33083 }
33084         // MUST_USE_RES bool Invoice_would_expire(const struct LDKInvoice *NONNULL_PTR this_arg, uint64_t at_time);
33085 /* @internal */
33086 export function Invoice_would_expire(this_arg: number, at_time: bigint): boolean {
33087         if(!isWasmInitialized) {
33088                 throw new Error("initializeWasm() must be awaited first!");
33089         }
33090         const nativeResponseValue = wasm.TS_Invoice_would_expire(this_arg, at_time);
33091         return nativeResponseValue;
33092 }
33093         // MUST_USE_RES uint64_t Invoice_min_final_cltv_expiry(const struct LDKInvoice *NONNULL_PTR this_arg);
33094 /* @internal */
33095 export function Invoice_min_final_cltv_expiry(this_arg: number): bigint {
33096         if(!isWasmInitialized) {
33097                 throw new Error("initializeWasm() must be awaited first!");
33098         }
33099         const nativeResponseValue = wasm.TS_Invoice_min_final_cltv_expiry(this_arg);
33100         return nativeResponseValue;
33101 }
33102         // MUST_USE_RES struct LDKCVec_PrivateRouteZ Invoice_private_routes(const struct LDKInvoice *NONNULL_PTR this_arg);
33103 /* @internal */
33104 export function Invoice_private_routes(this_arg: number): number {
33105         if(!isWasmInitialized) {
33106                 throw new Error("initializeWasm() must be awaited first!");
33107         }
33108         const nativeResponseValue = wasm.TS_Invoice_private_routes(this_arg);
33109         return nativeResponseValue;
33110 }
33111         // MUST_USE_RES struct LDKCVec_RouteHintZ Invoice_route_hints(const struct LDKInvoice *NONNULL_PTR this_arg);
33112 /* @internal */
33113 export function Invoice_route_hints(this_arg: number): number {
33114         if(!isWasmInitialized) {
33115                 throw new Error("initializeWasm() must be awaited first!");
33116         }
33117         const nativeResponseValue = wasm.TS_Invoice_route_hints(this_arg);
33118         return nativeResponseValue;
33119 }
33120         // MUST_USE_RES enum LDKCurrency Invoice_currency(const struct LDKInvoice *NONNULL_PTR this_arg);
33121 /* @internal */
33122 export function Invoice_currency(this_arg: number): Currency {
33123         if(!isWasmInitialized) {
33124                 throw new Error("initializeWasm() must be awaited first!");
33125         }
33126         const nativeResponseValue = wasm.TS_Invoice_currency(this_arg);
33127         return nativeResponseValue;
33128 }
33129         // MUST_USE_RES struct LDKCOption_u64Z Invoice_amount_milli_satoshis(const struct LDKInvoice *NONNULL_PTR this_arg);
33130 /* @internal */
33131 export function Invoice_amount_milli_satoshis(this_arg: number): number {
33132         if(!isWasmInitialized) {
33133                 throw new Error("initializeWasm() must be awaited first!");
33134         }
33135         const nativeResponseValue = wasm.TS_Invoice_amount_milli_satoshis(this_arg);
33136         return nativeResponseValue;
33137 }
33138         // MUST_USE_RES struct LDKCResult_DescriptionCreationErrorZ Description_new(struct LDKStr description);
33139 /* @internal */
33140 export function Description_new(description: number): number {
33141         if(!isWasmInitialized) {
33142                 throw new Error("initializeWasm() must be awaited first!");
33143         }
33144         const nativeResponseValue = wasm.TS_Description_new(description);
33145         return nativeResponseValue;
33146 }
33147         // MUST_USE_RES struct LDKStr Description_into_inner(struct LDKDescription this_arg);
33148 /* @internal */
33149 export function Description_into_inner(this_arg: number): number {
33150         if(!isWasmInitialized) {
33151                 throw new Error("initializeWasm() must be awaited first!");
33152         }
33153         const nativeResponseValue = wasm.TS_Description_into_inner(this_arg);
33154         return nativeResponseValue;
33155 }
33156         // MUST_USE_RES struct LDKExpiryTime ExpiryTime_from_seconds(uint64_t seconds);
33157 /* @internal */
33158 export function ExpiryTime_from_seconds(seconds: bigint): number {
33159         if(!isWasmInitialized) {
33160                 throw new Error("initializeWasm() must be awaited first!");
33161         }
33162         const nativeResponseValue = wasm.TS_ExpiryTime_from_seconds(seconds);
33163         return nativeResponseValue;
33164 }
33165         // MUST_USE_RES struct LDKExpiryTime ExpiryTime_from_duration(uint64_t duration);
33166 /* @internal */
33167 export function ExpiryTime_from_duration(duration: bigint): number {
33168         if(!isWasmInitialized) {
33169                 throw new Error("initializeWasm() must be awaited first!");
33170         }
33171         const nativeResponseValue = wasm.TS_ExpiryTime_from_duration(duration);
33172         return nativeResponseValue;
33173 }
33174         // MUST_USE_RES uint64_t ExpiryTime_as_seconds(const struct LDKExpiryTime *NONNULL_PTR this_arg);
33175 /* @internal */
33176 export function ExpiryTime_as_seconds(this_arg: number): bigint {
33177         if(!isWasmInitialized) {
33178                 throw new Error("initializeWasm() must be awaited first!");
33179         }
33180         const nativeResponseValue = wasm.TS_ExpiryTime_as_seconds(this_arg);
33181         return nativeResponseValue;
33182 }
33183         // MUST_USE_RES uint64_t ExpiryTime_as_duration(const struct LDKExpiryTime *NONNULL_PTR this_arg);
33184 /* @internal */
33185 export function ExpiryTime_as_duration(this_arg: number): bigint {
33186         if(!isWasmInitialized) {
33187                 throw new Error("initializeWasm() must be awaited first!");
33188         }
33189         const nativeResponseValue = wasm.TS_ExpiryTime_as_duration(this_arg);
33190         return nativeResponseValue;
33191 }
33192         // MUST_USE_RES struct LDKCResult_PrivateRouteCreationErrorZ PrivateRoute_new(struct LDKRouteHint hops);
33193 /* @internal */
33194 export function PrivateRoute_new(hops: number): number {
33195         if(!isWasmInitialized) {
33196                 throw new Error("initializeWasm() must be awaited first!");
33197         }
33198         const nativeResponseValue = wasm.TS_PrivateRoute_new(hops);
33199         return nativeResponseValue;
33200 }
33201         // MUST_USE_RES struct LDKRouteHint PrivateRoute_into_inner(struct LDKPrivateRoute this_arg);
33202 /* @internal */
33203 export function PrivateRoute_into_inner(this_arg: number): number {
33204         if(!isWasmInitialized) {
33205                 throw new Error("initializeWasm() must be awaited first!");
33206         }
33207         const nativeResponseValue = wasm.TS_PrivateRoute_into_inner(this_arg);
33208         return nativeResponseValue;
33209 }
33210         // enum LDKCreationError CreationError_clone(const enum LDKCreationError *NONNULL_PTR orig);
33211 /* @internal */
33212 export function CreationError_clone(orig: number): CreationError {
33213         if(!isWasmInitialized) {
33214                 throw new Error("initializeWasm() must be awaited first!");
33215         }
33216         const nativeResponseValue = wasm.TS_CreationError_clone(orig);
33217         return nativeResponseValue;
33218 }
33219         // enum LDKCreationError CreationError_description_too_long(void);
33220 /* @internal */
33221 export function CreationError_description_too_long(): CreationError {
33222         if(!isWasmInitialized) {
33223                 throw new Error("initializeWasm() must be awaited first!");
33224         }
33225         const nativeResponseValue = wasm.TS_CreationError_description_too_long();
33226         return nativeResponseValue;
33227 }
33228         // enum LDKCreationError CreationError_route_too_long(void);
33229 /* @internal */
33230 export function CreationError_route_too_long(): CreationError {
33231         if(!isWasmInitialized) {
33232                 throw new Error("initializeWasm() must be awaited first!");
33233         }
33234         const nativeResponseValue = wasm.TS_CreationError_route_too_long();
33235         return nativeResponseValue;
33236 }
33237         // enum LDKCreationError CreationError_timestamp_out_of_bounds(void);
33238 /* @internal */
33239 export function CreationError_timestamp_out_of_bounds(): CreationError {
33240         if(!isWasmInitialized) {
33241                 throw new Error("initializeWasm() must be awaited first!");
33242         }
33243         const nativeResponseValue = wasm.TS_CreationError_timestamp_out_of_bounds();
33244         return nativeResponseValue;
33245 }
33246         // enum LDKCreationError CreationError_invalid_amount(void);
33247 /* @internal */
33248 export function CreationError_invalid_amount(): CreationError {
33249         if(!isWasmInitialized) {
33250                 throw new Error("initializeWasm() must be awaited first!");
33251         }
33252         const nativeResponseValue = wasm.TS_CreationError_invalid_amount();
33253         return nativeResponseValue;
33254 }
33255         // enum LDKCreationError CreationError_missing_route_hints(void);
33256 /* @internal */
33257 export function CreationError_missing_route_hints(): CreationError {
33258         if(!isWasmInitialized) {
33259                 throw new Error("initializeWasm() must be awaited first!");
33260         }
33261         const nativeResponseValue = wasm.TS_CreationError_missing_route_hints();
33262         return nativeResponseValue;
33263 }
33264         // bool CreationError_eq(const enum LDKCreationError *NONNULL_PTR a, const enum LDKCreationError *NONNULL_PTR b);
33265 /* @internal */
33266 export function CreationError_eq(a: number, b: number): boolean {
33267         if(!isWasmInitialized) {
33268                 throw new Error("initializeWasm() must be awaited first!");
33269         }
33270         const nativeResponseValue = wasm.TS_CreationError_eq(a, b);
33271         return nativeResponseValue;
33272 }
33273         // struct LDKStr CreationError_to_str(const enum LDKCreationError *NONNULL_PTR o);
33274 /* @internal */
33275 export function CreationError_to_str(o: number): number {
33276         if(!isWasmInitialized) {
33277                 throw new Error("initializeWasm() must be awaited first!");
33278         }
33279         const nativeResponseValue = wasm.TS_CreationError_to_str(o);
33280         return nativeResponseValue;
33281 }
33282         // enum LDKSemanticError SemanticError_clone(const enum LDKSemanticError *NONNULL_PTR orig);
33283 /* @internal */
33284 export function SemanticError_clone(orig: number): SemanticError {
33285         if(!isWasmInitialized) {
33286                 throw new Error("initializeWasm() must be awaited first!");
33287         }
33288         const nativeResponseValue = wasm.TS_SemanticError_clone(orig);
33289         return nativeResponseValue;
33290 }
33291         // enum LDKSemanticError SemanticError_no_payment_hash(void);
33292 /* @internal */
33293 export function SemanticError_no_payment_hash(): SemanticError {
33294         if(!isWasmInitialized) {
33295                 throw new Error("initializeWasm() must be awaited first!");
33296         }
33297         const nativeResponseValue = wasm.TS_SemanticError_no_payment_hash();
33298         return nativeResponseValue;
33299 }
33300         // enum LDKSemanticError SemanticError_multiple_payment_hashes(void);
33301 /* @internal */
33302 export function SemanticError_multiple_payment_hashes(): SemanticError {
33303         if(!isWasmInitialized) {
33304                 throw new Error("initializeWasm() must be awaited first!");
33305         }
33306         const nativeResponseValue = wasm.TS_SemanticError_multiple_payment_hashes();
33307         return nativeResponseValue;
33308 }
33309         // enum LDKSemanticError SemanticError_no_description(void);
33310 /* @internal */
33311 export function SemanticError_no_description(): SemanticError {
33312         if(!isWasmInitialized) {
33313                 throw new Error("initializeWasm() must be awaited first!");
33314         }
33315         const nativeResponseValue = wasm.TS_SemanticError_no_description();
33316         return nativeResponseValue;
33317 }
33318         // enum LDKSemanticError SemanticError_multiple_descriptions(void);
33319 /* @internal */
33320 export function SemanticError_multiple_descriptions(): SemanticError {
33321         if(!isWasmInitialized) {
33322                 throw new Error("initializeWasm() must be awaited first!");
33323         }
33324         const nativeResponseValue = wasm.TS_SemanticError_multiple_descriptions();
33325         return nativeResponseValue;
33326 }
33327         // enum LDKSemanticError SemanticError_no_payment_secret(void);
33328 /* @internal */
33329 export function SemanticError_no_payment_secret(): SemanticError {
33330         if(!isWasmInitialized) {
33331                 throw new Error("initializeWasm() must be awaited first!");
33332         }
33333         const nativeResponseValue = wasm.TS_SemanticError_no_payment_secret();
33334         return nativeResponseValue;
33335 }
33336         // enum LDKSemanticError SemanticError_multiple_payment_secrets(void);
33337 /* @internal */
33338 export function SemanticError_multiple_payment_secrets(): SemanticError {
33339         if(!isWasmInitialized) {
33340                 throw new Error("initializeWasm() must be awaited first!");
33341         }
33342         const nativeResponseValue = wasm.TS_SemanticError_multiple_payment_secrets();
33343         return nativeResponseValue;
33344 }
33345         // enum LDKSemanticError SemanticError_invalid_features(void);
33346 /* @internal */
33347 export function SemanticError_invalid_features(): SemanticError {
33348         if(!isWasmInitialized) {
33349                 throw new Error("initializeWasm() must be awaited first!");
33350         }
33351         const nativeResponseValue = wasm.TS_SemanticError_invalid_features();
33352         return nativeResponseValue;
33353 }
33354         // enum LDKSemanticError SemanticError_invalid_recovery_id(void);
33355 /* @internal */
33356 export function SemanticError_invalid_recovery_id(): SemanticError {
33357         if(!isWasmInitialized) {
33358                 throw new Error("initializeWasm() must be awaited first!");
33359         }
33360         const nativeResponseValue = wasm.TS_SemanticError_invalid_recovery_id();
33361         return nativeResponseValue;
33362 }
33363         // enum LDKSemanticError SemanticError_invalid_signature(void);
33364 /* @internal */
33365 export function SemanticError_invalid_signature(): SemanticError {
33366         if(!isWasmInitialized) {
33367                 throw new Error("initializeWasm() must be awaited first!");
33368         }
33369         const nativeResponseValue = wasm.TS_SemanticError_invalid_signature();
33370         return nativeResponseValue;
33371 }
33372         // enum LDKSemanticError SemanticError_imprecise_amount(void);
33373 /* @internal */
33374 export function SemanticError_imprecise_amount(): SemanticError {
33375         if(!isWasmInitialized) {
33376                 throw new Error("initializeWasm() must be awaited first!");
33377         }
33378         const nativeResponseValue = wasm.TS_SemanticError_imprecise_amount();
33379         return nativeResponseValue;
33380 }
33381         // bool SemanticError_eq(const enum LDKSemanticError *NONNULL_PTR a, const enum LDKSemanticError *NONNULL_PTR b);
33382 /* @internal */
33383 export function SemanticError_eq(a: number, b: number): boolean {
33384         if(!isWasmInitialized) {
33385                 throw new Error("initializeWasm() must be awaited first!");
33386         }
33387         const nativeResponseValue = wasm.TS_SemanticError_eq(a, b);
33388         return nativeResponseValue;
33389 }
33390         // struct LDKStr SemanticError_to_str(const enum LDKSemanticError *NONNULL_PTR o);
33391 /* @internal */
33392 export function SemanticError_to_str(o: number): number {
33393         if(!isWasmInitialized) {
33394                 throw new Error("initializeWasm() must be awaited first!");
33395         }
33396         const nativeResponseValue = wasm.TS_SemanticError_to_str(o);
33397         return nativeResponseValue;
33398 }
33399         // void SignOrCreationError_free(struct LDKSignOrCreationError this_ptr);
33400 /* @internal */
33401 export function SignOrCreationError_free(this_ptr: number): void {
33402         if(!isWasmInitialized) {
33403                 throw new Error("initializeWasm() must be awaited first!");
33404         }
33405         const nativeResponseValue = wasm.TS_SignOrCreationError_free(this_ptr);
33406         // debug statements here
33407 }
33408         // uintptr_t SignOrCreationError_clone_ptr(LDKSignOrCreationError *NONNULL_PTR arg);
33409 /* @internal */
33410 export function SignOrCreationError_clone_ptr(arg: number): number {
33411         if(!isWasmInitialized) {
33412                 throw new Error("initializeWasm() must be awaited first!");
33413         }
33414         const nativeResponseValue = wasm.TS_SignOrCreationError_clone_ptr(arg);
33415         return nativeResponseValue;
33416 }
33417         // struct LDKSignOrCreationError SignOrCreationError_clone(const struct LDKSignOrCreationError *NONNULL_PTR orig);
33418 /* @internal */
33419 export function SignOrCreationError_clone(orig: number): number {
33420         if(!isWasmInitialized) {
33421                 throw new Error("initializeWasm() must be awaited first!");
33422         }
33423         const nativeResponseValue = wasm.TS_SignOrCreationError_clone(orig);
33424         return nativeResponseValue;
33425 }
33426         // struct LDKSignOrCreationError SignOrCreationError_sign_error(void);
33427 /* @internal */
33428 export function SignOrCreationError_sign_error(): number {
33429         if(!isWasmInitialized) {
33430                 throw new Error("initializeWasm() must be awaited first!");
33431         }
33432         const nativeResponseValue = wasm.TS_SignOrCreationError_sign_error();
33433         return nativeResponseValue;
33434 }
33435         // struct LDKSignOrCreationError SignOrCreationError_creation_error(enum LDKCreationError a);
33436 /* @internal */
33437 export function SignOrCreationError_creation_error(a: CreationError): number {
33438         if(!isWasmInitialized) {
33439                 throw new Error("initializeWasm() must be awaited first!");
33440         }
33441         const nativeResponseValue = wasm.TS_SignOrCreationError_creation_error(a);
33442         return nativeResponseValue;
33443 }
33444         // bool SignOrCreationError_eq(const struct LDKSignOrCreationError *NONNULL_PTR a, const struct LDKSignOrCreationError *NONNULL_PTR b);
33445 /* @internal */
33446 export function SignOrCreationError_eq(a: number, b: number): boolean {
33447         if(!isWasmInitialized) {
33448                 throw new Error("initializeWasm() must be awaited first!");
33449         }
33450         const nativeResponseValue = wasm.TS_SignOrCreationError_eq(a, b);
33451         return nativeResponseValue;
33452 }
33453         // struct LDKStr SignOrCreationError_to_str(const struct LDKSignOrCreationError *NONNULL_PTR o);
33454 /* @internal */
33455 export function SignOrCreationError_to_str(o: number): number {
33456         if(!isWasmInitialized) {
33457                 throw new Error("initializeWasm() must be awaited first!");
33458         }
33459         const nativeResponseValue = wasm.TS_SignOrCreationError_to_str(o);
33460         return nativeResponseValue;
33461 }
33462         // void InvoicePayer_free(struct LDKInvoicePayer this_obj);
33463 /* @internal */
33464 export function InvoicePayer_free(this_obj: number): void {
33465         if(!isWasmInitialized) {
33466                 throw new Error("initializeWasm() must be awaited first!");
33467         }
33468         const nativeResponseValue = wasm.TS_InvoicePayer_free(this_obj);
33469         // debug statements here
33470 }
33471         // void Payer_free(struct LDKPayer this_ptr);
33472 /* @internal */
33473 export function Payer_free(this_ptr: number): void {
33474         if(!isWasmInitialized) {
33475                 throw new Error("initializeWasm() must be awaited first!");
33476         }
33477         const nativeResponseValue = wasm.TS_Payer_free(this_ptr);
33478         // debug statements here
33479 }
33480         // void Router_free(struct LDKRouter this_ptr);
33481 /* @internal */
33482 export function Router_free(this_ptr: number): void {
33483         if(!isWasmInitialized) {
33484                 throw new Error("initializeWasm() must be awaited first!");
33485         }
33486         const nativeResponseValue = wasm.TS_Router_free(this_ptr);
33487         // debug statements here
33488 }
33489         // void Retry_free(struct LDKRetry this_ptr);
33490 /* @internal */
33491 export function Retry_free(this_ptr: number): void {
33492         if(!isWasmInitialized) {
33493                 throw new Error("initializeWasm() must be awaited first!");
33494         }
33495         const nativeResponseValue = wasm.TS_Retry_free(this_ptr);
33496         // debug statements here
33497 }
33498         // uintptr_t Retry_clone_ptr(LDKRetry *NONNULL_PTR arg);
33499 /* @internal */
33500 export function Retry_clone_ptr(arg: number): number {
33501         if(!isWasmInitialized) {
33502                 throw new Error("initializeWasm() must be awaited first!");
33503         }
33504         const nativeResponseValue = wasm.TS_Retry_clone_ptr(arg);
33505         return nativeResponseValue;
33506 }
33507         // struct LDKRetry Retry_clone(const struct LDKRetry *NONNULL_PTR orig);
33508 /* @internal */
33509 export function Retry_clone(orig: number): number {
33510         if(!isWasmInitialized) {
33511                 throw new Error("initializeWasm() must be awaited first!");
33512         }
33513         const nativeResponseValue = wasm.TS_Retry_clone(orig);
33514         return nativeResponseValue;
33515 }
33516         // struct LDKRetry Retry_attempts(uintptr_t a);
33517 /* @internal */
33518 export function Retry_attempts(a: number): number {
33519         if(!isWasmInitialized) {
33520                 throw new Error("initializeWasm() must be awaited first!");
33521         }
33522         const nativeResponseValue = wasm.TS_Retry_attempts(a);
33523         return nativeResponseValue;
33524 }
33525         // bool Retry_eq(const struct LDKRetry *NONNULL_PTR a, const struct LDKRetry *NONNULL_PTR b);
33526 /* @internal */
33527 export function Retry_eq(a: number, b: number): boolean {
33528         if(!isWasmInitialized) {
33529                 throw new Error("initializeWasm() must be awaited first!");
33530         }
33531         const nativeResponseValue = wasm.TS_Retry_eq(a, b);
33532         return nativeResponseValue;
33533 }
33534         // uint64_t Retry_hash(const struct LDKRetry *NONNULL_PTR o);
33535 /* @internal */
33536 export function Retry_hash(o: number): bigint {
33537         if(!isWasmInitialized) {
33538                 throw new Error("initializeWasm() must be awaited first!");
33539         }
33540         const nativeResponseValue = wasm.TS_Retry_hash(o);
33541         return nativeResponseValue;
33542 }
33543         // void PaymentError_free(struct LDKPaymentError this_ptr);
33544 /* @internal */
33545 export function PaymentError_free(this_ptr: number): void {
33546         if(!isWasmInitialized) {
33547                 throw new Error("initializeWasm() must be awaited first!");
33548         }
33549         const nativeResponseValue = wasm.TS_PaymentError_free(this_ptr);
33550         // debug statements here
33551 }
33552         // uintptr_t PaymentError_clone_ptr(LDKPaymentError *NONNULL_PTR arg);
33553 /* @internal */
33554 export function PaymentError_clone_ptr(arg: number): number {
33555         if(!isWasmInitialized) {
33556                 throw new Error("initializeWasm() must be awaited first!");
33557         }
33558         const nativeResponseValue = wasm.TS_PaymentError_clone_ptr(arg);
33559         return nativeResponseValue;
33560 }
33561         // struct LDKPaymentError PaymentError_clone(const struct LDKPaymentError *NONNULL_PTR orig);
33562 /* @internal */
33563 export function PaymentError_clone(orig: number): number {
33564         if(!isWasmInitialized) {
33565                 throw new Error("initializeWasm() must be awaited first!");
33566         }
33567         const nativeResponseValue = wasm.TS_PaymentError_clone(orig);
33568         return nativeResponseValue;
33569 }
33570         // struct LDKPaymentError PaymentError_invoice(struct LDKStr a);
33571 /* @internal */
33572 export function PaymentError_invoice(a: number): number {
33573         if(!isWasmInitialized) {
33574                 throw new Error("initializeWasm() must be awaited first!");
33575         }
33576         const nativeResponseValue = wasm.TS_PaymentError_invoice(a);
33577         return nativeResponseValue;
33578 }
33579         // struct LDKPaymentError PaymentError_routing(struct LDKLightningError a);
33580 /* @internal */
33581 export function PaymentError_routing(a: number): number {
33582         if(!isWasmInitialized) {
33583                 throw new Error("initializeWasm() must be awaited first!");
33584         }
33585         const nativeResponseValue = wasm.TS_PaymentError_routing(a);
33586         return nativeResponseValue;
33587 }
33588         // struct LDKPaymentError PaymentError_sending(struct LDKPaymentSendFailure a);
33589 /* @internal */
33590 export function PaymentError_sending(a: number): number {
33591         if(!isWasmInitialized) {
33592                 throw new Error("initializeWasm() must be awaited first!");
33593         }
33594         const nativeResponseValue = wasm.TS_PaymentError_sending(a);
33595         return nativeResponseValue;
33596 }
33597         // MUST_USE_RES struct LDKInvoicePayer InvoicePayer_new(struct LDKPayer payer, struct LDKRouter router, const struct LDKMultiThreadedLockableScore *NONNULL_PTR scorer, struct LDKLogger logger, struct LDKEventHandler event_handler, struct LDKRetry retry);
33598 /* @internal */
33599 export function InvoicePayer_new(payer: number, router: number, scorer: number, logger: number, event_handler: number, retry: number): number {
33600         if(!isWasmInitialized) {
33601                 throw new Error("initializeWasm() must be awaited first!");
33602         }
33603         const nativeResponseValue = wasm.TS_InvoicePayer_new(payer, router, scorer, logger, event_handler, retry);
33604         return nativeResponseValue;
33605 }
33606         // MUST_USE_RES struct LDKCResult_PaymentIdPaymentErrorZ InvoicePayer_pay_invoice(const struct LDKInvoicePayer *NONNULL_PTR this_arg, const struct LDKInvoice *NONNULL_PTR invoice);
33607 /* @internal */
33608 export function InvoicePayer_pay_invoice(this_arg: number, invoice: number): number {
33609         if(!isWasmInitialized) {
33610                 throw new Error("initializeWasm() must be awaited first!");
33611         }
33612         const nativeResponseValue = wasm.TS_InvoicePayer_pay_invoice(this_arg, invoice);
33613         return nativeResponseValue;
33614 }
33615         // MUST_USE_RES struct LDKCResult_PaymentIdPaymentErrorZ InvoicePayer_pay_zero_value_invoice(const struct LDKInvoicePayer *NONNULL_PTR this_arg, const struct LDKInvoice *NONNULL_PTR invoice, uint64_t amount_msats);
33616 /* @internal */
33617 export function InvoicePayer_pay_zero_value_invoice(this_arg: number, invoice: number, amount_msats: bigint): number {
33618         if(!isWasmInitialized) {
33619                 throw new Error("initializeWasm() must be awaited first!");
33620         }
33621         const nativeResponseValue = wasm.TS_InvoicePayer_pay_zero_value_invoice(this_arg, invoice, amount_msats);
33622         return nativeResponseValue;
33623 }
33624         // MUST_USE_RES struct LDKCResult_PaymentIdPaymentErrorZ InvoicePayer_pay_pubkey(const struct LDKInvoicePayer *NONNULL_PTR this_arg, struct LDKPublicKey pubkey, struct LDKThirtyTwoBytes payment_preimage, uint64_t amount_msats, uint32_t final_cltv_expiry_delta);
33625 /* @internal */
33626 export function InvoicePayer_pay_pubkey(this_arg: number, pubkey: number, payment_preimage: number, amount_msats: bigint, final_cltv_expiry_delta: number): number {
33627         if(!isWasmInitialized) {
33628                 throw new Error("initializeWasm() must be awaited first!");
33629         }
33630         const nativeResponseValue = wasm.TS_InvoicePayer_pay_pubkey(this_arg, pubkey, payment_preimage, amount_msats, final_cltv_expiry_delta);
33631         return nativeResponseValue;
33632 }
33633         // void InvoicePayer_remove_cached_payment(const struct LDKInvoicePayer *NONNULL_PTR this_arg, const uint8_t (*payment_hash)[32]);
33634 /* @internal */
33635 export function InvoicePayer_remove_cached_payment(this_arg: number, payment_hash: number): void {
33636         if(!isWasmInitialized) {
33637                 throw new Error("initializeWasm() must be awaited first!");
33638         }
33639         const nativeResponseValue = wasm.TS_InvoicePayer_remove_cached_payment(this_arg, payment_hash);
33640         // debug statements here
33641 }
33642         // struct LDKEventHandler InvoicePayer_as_EventHandler(const struct LDKInvoicePayer *NONNULL_PTR this_arg);
33643 /* @internal */
33644 export function InvoicePayer_as_EventHandler(this_arg: number): number {
33645         if(!isWasmInitialized) {
33646                 throw new Error("initializeWasm() must be awaited first!");
33647         }
33648         const nativeResponseValue = wasm.TS_InvoicePayer_as_EventHandler(this_arg);
33649         return nativeResponseValue;
33650 }
33651         // struct LDKCResult_InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKKeysInterface keys_manager, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKSha256 description_hash, uint64_t duration_since_epoch, uint32_t invoice_expiry_delta_secs);
33652 /* @internal */
33653 export function create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(channelmanager: number, keys_manager: number, network: Currency, amt_msat: number, description_hash: number, duration_since_epoch: bigint, invoice_expiry_delta_secs: number): number {
33654         if(!isWasmInitialized) {
33655                 throw new Error("initializeWasm() must be awaited first!");
33656         }
33657         const nativeResponseValue = wasm.TS_create_invoice_from_channelmanager_with_description_hash_and_duration_since_epoch(channelmanager, keys_manager, network, amt_msat, description_hash, duration_since_epoch, invoice_expiry_delta_secs);
33658         return nativeResponseValue;
33659 }
33660         // struct LDKCResult_InvoiceSignOrCreationErrorZ create_invoice_from_channelmanager_and_duration_since_epoch(const struct LDKChannelManager *NONNULL_PTR channelmanager, struct LDKKeysInterface keys_manager, enum LDKCurrency network, struct LDKCOption_u64Z amt_msat, struct LDKStr description, uint64_t duration_since_epoch, uint32_t invoice_expiry_delta_secs);
33661 /* @internal */
33662 export function create_invoice_from_channelmanager_and_duration_since_epoch(channelmanager: number, keys_manager: number, network: Currency, amt_msat: number, description: number, duration_since_epoch: bigint, invoice_expiry_delta_secs: number): number {
33663         if(!isWasmInitialized) {
33664                 throw new Error("initializeWasm() must be awaited first!");
33665         }
33666         const nativeResponseValue = wasm.TS_create_invoice_from_channelmanager_and_duration_since_epoch(channelmanager, keys_manager, network, amt_msat, description, duration_since_epoch, invoice_expiry_delta_secs);
33667         return nativeResponseValue;
33668 }
33669         // void DefaultRouter_free(struct LDKDefaultRouter this_obj);
33670 /* @internal */
33671 export function DefaultRouter_free(this_obj: number): void {
33672         if(!isWasmInitialized) {
33673                 throw new Error("initializeWasm() must be awaited first!");
33674         }
33675         const nativeResponseValue = wasm.TS_DefaultRouter_free(this_obj);
33676         // debug statements here
33677 }
33678         // MUST_USE_RES struct LDKDefaultRouter DefaultRouter_new(const struct LDKNetworkGraph *NONNULL_PTR network_graph, struct LDKLogger logger, struct LDKThirtyTwoBytes random_seed_bytes);
33679 /* @internal */
33680 export function DefaultRouter_new(network_graph: number, logger: number, random_seed_bytes: number): number {
33681         if(!isWasmInitialized) {
33682                 throw new Error("initializeWasm() must be awaited first!");
33683         }
33684         const nativeResponseValue = wasm.TS_DefaultRouter_new(network_graph, logger, random_seed_bytes);
33685         return nativeResponseValue;
33686 }
33687         // struct LDKRouter DefaultRouter_as_Router(const struct LDKDefaultRouter *NONNULL_PTR this_arg);
33688 /* @internal */
33689 export function DefaultRouter_as_Router(this_arg: number): number {
33690         if(!isWasmInitialized) {
33691                 throw new Error("initializeWasm() must be awaited first!");
33692         }
33693         const nativeResponseValue = wasm.TS_DefaultRouter_as_Router(this_arg);
33694         return nativeResponseValue;
33695 }
33696         // struct LDKPayer ChannelManager_as_Payer(const struct LDKChannelManager *NONNULL_PTR this_arg);
33697 /* @internal */
33698 export function ChannelManager_as_Payer(this_arg: number): number {
33699         if(!isWasmInitialized) {
33700                 throw new Error("initializeWasm() must be awaited first!");
33701         }
33702         const nativeResponseValue = wasm.TS_ChannelManager_as_Payer(this_arg);
33703         return nativeResponseValue;
33704 }
33705         // struct LDKCResult_SiPrefixParseErrorZ SiPrefix_from_str(struct LDKStr s);
33706 /* @internal */
33707 export function SiPrefix_from_str(s: number): number {
33708         if(!isWasmInitialized) {
33709                 throw new Error("initializeWasm() must be awaited first!");
33710         }
33711         const nativeResponseValue = wasm.TS_SiPrefix_from_str(s);
33712         return nativeResponseValue;
33713 }
33714         // struct LDKCResult_InvoiceParseOrSemanticErrorZ Invoice_from_str(struct LDKStr s);
33715 /* @internal */
33716 export function Invoice_from_str(s: number): number {
33717         if(!isWasmInitialized) {
33718                 throw new Error("initializeWasm() must be awaited first!");
33719         }
33720         const nativeResponseValue = wasm.TS_Invoice_from_str(s);
33721         return nativeResponseValue;
33722 }
33723         // struct LDKCResult_SignedRawInvoiceParseErrorZ SignedRawInvoice_from_str(struct LDKStr s);
33724 /* @internal */
33725 export function SignedRawInvoice_from_str(s: number): number {
33726         if(!isWasmInitialized) {
33727                 throw new Error("initializeWasm() must be awaited first!");
33728         }
33729         const nativeResponseValue = wasm.TS_SignedRawInvoice_from_str(s);
33730         return nativeResponseValue;
33731 }
33732         // struct LDKStr ParseError_to_str(const struct LDKParseError *NONNULL_PTR o);
33733 /* @internal */
33734 export function ParseError_to_str(o: number): number {
33735         if(!isWasmInitialized) {
33736                 throw new Error("initializeWasm() must be awaited first!");
33737         }
33738         const nativeResponseValue = wasm.TS_ParseError_to_str(o);
33739         return nativeResponseValue;
33740 }
33741         // struct LDKStr ParseOrSemanticError_to_str(const struct LDKParseOrSemanticError *NONNULL_PTR o);
33742 /* @internal */
33743 export function ParseOrSemanticError_to_str(o: number): number {
33744         if(!isWasmInitialized) {
33745                 throw new Error("initializeWasm() must be awaited first!");
33746         }
33747         const nativeResponseValue = wasm.TS_ParseOrSemanticError_to_str(o);
33748         return nativeResponseValue;
33749 }
33750         // struct LDKStr Invoice_to_str(const struct LDKInvoice *NONNULL_PTR o);
33751 /* @internal */
33752 export function Invoice_to_str(o: number): number {
33753         if(!isWasmInitialized) {
33754                 throw new Error("initializeWasm() must be awaited first!");
33755         }
33756         const nativeResponseValue = wasm.TS_Invoice_to_str(o);
33757         return nativeResponseValue;
33758 }
33759         // struct LDKStr SignedRawInvoice_to_str(const struct LDKSignedRawInvoice *NONNULL_PTR o);
33760 /* @internal */
33761 export function SignedRawInvoice_to_str(o: number): number {
33762         if(!isWasmInitialized) {
33763                 throw new Error("initializeWasm() must be awaited first!");
33764         }
33765         const nativeResponseValue = wasm.TS_SignedRawInvoice_to_str(o);
33766         return nativeResponseValue;
33767 }
33768         // struct LDKStr Currency_to_str(const enum LDKCurrency *NONNULL_PTR o);
33769 /* @internal */
33770 export function Currency_to_str(o: number): number {
33771         if(!isWasmInitialized) {
33772                 throw new Error("initializeWasm() must be awaited first!");
33773         }
33774         const nativeResponseValue = wasm.TS_Currency_to_str(o);
33775         return nativeResponseValue;
33776 }
33777         // struct LDKStr SiPrefix_to_str(const enum LDKSiPrefix *NONNULL_PTR o);
33778 /* @internal */
33779 export function SiPrefix_to_str(o: number): number {
33780         if(!isWasmInitialized) {
33781                 throw new Error("initializeWasm() must be awaited first!");
33782         }
33783         const nativeResponseValue = wasm.TS_SiPrefix_to_str(o);
33784         return nativeResponseValue;
33785 }
33786
33787
33788 js_invoke = function(obj_ptr: number, fn_id: number, arg1: bigint|number, arg2: bigint|number, arg3: bigint|number, arg4: bigint|number, arg5: bigint|number, arg6: bigint|number, arg7: bigint|number, arg8: bigint|number, arg9: bigint|number, arg10: bigint|number) {
33789         const weak: WeakRef<object> = js_objs[obj_ptr];
33790         if (weak == null || weak == undefined) {
33791                 console.error("Got function call on unknown/free'd JS object!");
33792                 throw new Error("Got function call on unknown/free'd JS object!");
33793         }
33794         const obj: object = weak.deref();
33795         if (obj == null || obj == undefined) {
33796                 console.error("Got function call on GC'd JS object!");
33797                 throw new Error("Got function call on GC'd JS object!");
33798         }
33799         var fn;
33800         switch (fn_id) {
33801                 case 0: fn = Object.getOwnPropertyDescriptor(obj, "log"); break;
33802                 case 1: fn = Object.getOwnPropertyDescriptor(obj, "get_utxo"); break;
33803                 case 2: fn = Object.getOwnPropertyDescriptor(obj, "get_per_commitment_point"); break;
33804                 case 3: fn = Object.getOwnPropertyDescriptor(obj, "release_commitment_secret"); break;
33805                 case 4: fn = Object.getOwnPropertyDescriptor(obj, "validate_holder_commitment"); break;
33806                 case 5: fn = Object.getOwnPropertyDescriptor(obj, "channel_keys_id"); break;
33807                 case 6: fn = Object.getOwnPropertyDescriptor(obj, "sign_counterparty_commitment"); break;
33808                 case 7: fn = Object.getOwnPropertyDescriptor(obj, "validate_counterparty_revocation"); break;
33809                 case 8: fn = Object.getOwnPropertyDescriptor(obj, "sign_holder_commitment_and_htlcs"); break;
33810                 case 9: fn = Object.getOwnPropertyDescriptor(obj, "sign_justice_revoked_output"); break;
33811                 case 10: fn = Object.getOwnPropertyDescriptor(obj, "sign_justice_revoked_htlc"); break;
33812                 case 11: fn = Object.getOwnPropertyDescriptor(obj, "sign_counterparty_htlc_transaction"); break;
33813                 case 12: fn = Object.getOwnPropertyDescriptor(obj, "sign_closing_transaction"); break;
33814                 case 13: fn = Object.getOwnPropertyDescriptor(obj, "sign_channel_announcement"); break;
33815                 case 14: fn = Object.getOwnPropertyDescriptor(obj, "ready_channel"); break;
33816                 case 15: fn = Object.getOwnPropertyDescriptor(obj, "write"); break;
33817                 case 16: fn = Object.getOwnPropertyDescriptor(obj, "watch_channel"); break;
33818                 case 17: fn = Object.getOwnPropertyDescriptor(obj, "update_channel"); break;
33819                 case 18: fn = Object.getOwnPropertyDescriptor(obj, "release_pending_monitor_events"); break;
33820                 case 19: fn = Object.getOwnPropertyDescriptor(obj, "broadcast_transaction"); break;
33821                 case 20: fn = Object.getOwnPropertyDescriptor(obj, "get_node_secret"); break;
33822                 case 21: fn = Object.getOwnPropertyDescriptor(obj, "get_destination_script"); break;
33823                 case 22: fn = Object.getOwnPropertyDescriptor(obj, "get_shutdown_scriptpubkey"); break;
33824                 case 23: fn = Object.getOwnPropertyDescriptor(obj, "get_channel_signer"); break;
33825                 case 24: fn = Object.getOwnPropertyDescriptor(obj, "get_secure_random_bytes"); break;
33826                 case 25: fn = Object.getOwnPropertyDescriptor(obj, "read_chan_signer"); break;
33827                 case 26: fn = Object.getOwnPropertyDescriptor(obj, "sign_invoice"); break;
33828                 case 27: fn = Object.getOwnPropertyDescriptor(obj, "get_inbound_payment_key_material"); break;
33829                 case 28: fn = Object.getOwnPropertyDescriptor(obj, "get_est_sat_per_1000_weight"); break;
33830                 case 29: fn = Object.getOwnPropertyDescriptor(obj, "type_id"); break;
33831                 case 30: fn = Object.getOwnPropertyDescriptor(obj, "debug_str"); break;
33832                 case 31: fn = Object.getOwnPropertyDescriptor(obj, "write"); break;
33833                 case 32: fn = Object.getOwnPropertyDescriptor(obj, "register_tx"); break;
33834                 case 33: fn = Object.getOwnPropertyDescriptor(obj, "register_output"); break;
33835                 case 34: fn = Object.getOwnPropertyDescriptor(obj, "get_and_clear_pending_msg_events"); break;
33836                 case 35: fn = Object.getOwnPropertyDescriptor(obj, "handle_event"); break;
33837                 case 36: fn = Object.getOwnPropertyDescriptor(obj, "process_pending_events"); break;
33838                 case 37: fn = Object.getOwnPropertyDescriptor(obj, "channel_penalty_msat"); break;
33839                 case 38: fn = Object.getOwnPropertyDescriptor(obj, "payment_path_failed"); break;
33840                 case 39: fn = Object.getOwnPropertyDescriptor(obj, "payment_path_successful"); break;
33841                 case 40: fn = Object.getOwnPropertyDescriptor(obj, "probe_failed"); break;
33842                 case 41: fn = Object.getOwnPropertyDescriptor(obj, "probe_successful"); break;
33843                 case 42: fn = Object.getOwnPropertyDescriptor(obj, "write"); break;
33844                 case 43: fn = Object.getOwnPropertyDescriptor(obj, "persist_manager"); break;
33845                 case 44: fn = Object.getOwnPropertyDescriptor(obj, "persist_graph"); break;
33846                 case 45: fn = Object.getOwnPropertyDescriptor(obj, "persist_scorer"); break;
33847                 case 46: fn = Object.getOwnPropertyDescriptor(obj, "filtered_block_connected"); break;
33848                 case 47: fn = Object.getOwnPropertyDescriptor(obj, "block_connected"); break;
33849                 case 48: fn = Object.getOwnPropertyDescriptor(obj, "block_disconnected"); break;
33850                 case 49: fn = Object.getOwnPropertyDescriptor(obj, "transactions_confirmed"); break;
33851                 case 50: fn = Object.getOwnPropertyDescriptor(obj, "transaction_unconfirmed"); break;
33852                 case 51: fn = Object.getOwnPropertyDescriptor(obj, "best_block_updated"); break;
33853                 case 52: fn = Object.getOwnPropertyDescriptor(obj, "get_relevant_txids"); break;
33854                 case 53: fn = Object.getOwnPropertyDescriptor(obj, "persist_new_channel"); break;
33855                 case 54: fn = Object.getOwnPropertyDescriptor(obj, "update_persisted_channel"); break;
33856                 case 55: fn = Object.getOwnPropertyDescriptor(obj, "handle_open_channel"); break;
33857                 case 56: fn = Object.getOwnPropertyDescriptor(obj, "handle_accept_channel"); break;
33858                 case 57: fn = Object.getOwnPropertyDescriptor(obj, "handle_funding_created"); break;
33859                 case 58: fn = Object.getOwnPropertyDescriptor(obj, "handle_funding_signed"); break;
33860                 case 59: fn = Object.getOwnPropertyDescriptor(obj, "handle_channel_ready"); break;
33861                 case 60: fn = Object.getOwnPropertyDescriptor(obj, "handle_shutdown"); break;
33862                 case 61: fn = Object.getOwnPropertyDescriptor(obj, "handle_closing_signed"); break;
33863                 case 62: fn = Object.getOwnPropertyDescriptor(obj, "handle_update_add_htlc"); break;
33864                 case 63: fn = Object.getOwnPropertyDescriptor(obj, "handle_update_fulfill_htlc"); break;
33865                 case 64: fn = Object.getOwnPropertyDescriptor(obj, "handle_update_fail_htlc"); break;
33866                 case 65: fn = Object.getOwnPropertyDescriptor(obj, "handle_update_fail_malformed_htlc"); break;
33867                 case 66: fn = Object.getOwnPropertyDescriptor(obj, "handle_commitment_signed"); break;
33868                 case 67: fn = Object.getOwnPropertyDescriptor(obj, "handle_revoke_and_ack"); break;
33869                 case 68: fn = Object.getOwnPropertyDescriptor(obj, "handle_update_fee"); break;
33870                 case 69: fn = Object.getOwnPropertyDescriptor(obj, "handle_announcement_signatures"); break;
33871                 case 70: fn = Object.getOwnPropertyDescriptor(obj, "peer_disconnected"); break;
33872                 case 71: fn = Object.getOwnPropertyDescriptor(obj, "peer_connected"); break;
33873                 case 72: fn = Object.getOwnPropertyDescriptor(obj, "handle_channel_reestablish"); break;
33874                 case 73: fn = Object.getOwnPropertyDescriptor(obj, "handle_channel_update"); break;
33875                 case 74: fn = Object.getOwnPropertyDescriptor(obj, "handle_error"); break;
33876                 case 75: fn = Object.getOwnPropertyDescriptor(obj, "handle_node_announcement"); break;
33877                 case 76: fn = Object.getOwnPropertyDescriptor(obj, "handle_channel_announcement"); break;
33878                 case 77: fn = Object.getOwnPropertyDescriptor(obj, "handle_channel_update"); break;
33879                 case 78: fn = Object.getOwnPropertyDescriptor(obj, "get_next_channel_announcements"); break;
33880                 case 79: fn = Object.getOwnPropertyDescriptor(obj, "get_next_node_announcements"); break;
33881                 case 80: fn = Object.getOwnPropertyDescriptor(obj, "peer_connected"); break;
33882                 case 81: fn = Object.getOwnPropertyDescriptor(obj, "handle_reply_channel_range"); break;
33883                 case 82: fn = Object.getOwnPropertyDescriptor(obj, "handle_reply_short_channel_ids_end"); break;
33884                 case 83: fn = Object.getOwnPropertyDescriptor(obj, "handle_query_channel_range"); break;
33885                 case 84: fn = Object.getOwnPropertyDescriptor(obj, "handle_query_short_channel_ids"); break;
33886                 case 85: fn = Object.getOwnPropertyDescriptor(obj, "read"); break;
33887                 case 86: fn = Object.getOwnPropertyDescriptor(obj, "handle_custom_message"); break;
33888                 case 87: fn = Object.getOwnPropertyDescriptor(obj, "get_and_clear_pending_msg"); break;
33889                 case 88: fn = Object.getOwnPropertyDescriptor(obj, "send_data"); break;
33890                 case 89: fn = Object.getOwnPropertyDescriptor(obj, "disconnect_socket"); break;
33891                 case 90: fn = Object.getOwnPropertyDescriptor(obj, "eq"); break;
33892                 case 91: fn = Object.getOwnPropertyDescriptor(obj, "hash"); break;
33893                 case 92: fn = Object.getOwnPropertyDescriptor(obj, "lock"); break;
33894                 case 93: fn = Object.getOwnPropertyDescriptor(obj, "node_id"); break;
33895                 case 94: fn = Object.getOwnPropertyDescriptor(obj, "first_hops"); break;
33896                 case 95: fn = Object.getOwnPropertyDescriptor(obj, "send_payment"); break;
33897                 case 96: fn = Object.getOwnPropertyDescriptor(obj, "send_spontaneous_payment"); break;
33898                 case 97: fn = Object.getOwnPropertyDescriptor(obj, "retry_payment"); break;
33899                 case 98: fn = Object.getOwnPropertyDescriptor(obj, "abandon_payment"); break;
33900                 case 99: fn = Object.getOwnPropertyDescriptor(obj, "find_route"); break;
33901                 default:
33902                         console.error("Got unknown function call from C!");
33903                         throw new Error("Got unknown function call from C!");
33904         }
33905         if (fn == null || fn == undefined) {
33906                 console.error("Got function call on incorrect JS object!");
33907                 throw new Error("Got function call on incorrect JS object!");
33908         }
33909         const ret = fn.value.bind(obj)(arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10);
33910         if (ret === undefined || ret === null) return BigInt(0);
33911         return BigInt(ret);
33912 }