[TS] Update auto-generated TypeScript Bindings
[ldk-java] / ts / structs / NodeId.mts
index 2faf5cef2588d622f7be2979b1ed0efef0887ce3..0148cab31e6d95dcf89bd75df36e55f22cef83b2 100644 (file)
@@ -279,9 +279,11 @@ import { MultiThreadedLockableScore } from '../structs/MultiThreadedLockableScor
 
 import CommonBase from './CommonBase.mjs';
 import * as bindings from '../bindings.mjs'
-import * as InternalUtils from '../InternalUtils.mjs'
 
 
+/**
+ * Represents the compressed public key of a node
+ */
 export class NodeId extends CommonBase {
        /* @internal */
        public constructor(_dummy: object, ptr: number) {
@@ -293,6 +295,9 @@ export class NodeId extends CommonBase {
                return ret;
        }
 
+       /**
+        * Creates a copy of the NodeId
+        */
        public clone(): NodeId {
                const ret: number = bindings.NodeId_clone(this.ptr);
                const ret_hu_conv: NodeId = new NodeId(null, ret);
@@ -300,30 +305,47 @@ export class NodeId extends CommonBase {
                return ret_hu_conv;
        }
 
+       /**
+        * Create a new NodeId from a public key
+        */
        public static constructor_from_pubkey(pubkey: Uint8Array): NodeId {
-               const ret: number = bindings.NodeId_from_pubkey(InternalUtils.check_arr_len(pubkey, 33));
+               const ret: number = bindings.NodeId_from_pubkey(bindings.encodeUint8Array(bindings.check_arr_len(pubkey, 33)));
                const ret_hu_conv: NodeId = new NodeId(null, ret);
                CommonBase.add_ref_from(ret_hu_conv, ret_hu_conv);
                return ret_hu_conv;
        }
 
+       /**
+        * Get the public key slice from this NodeId
+        */
        public as_slice(): Uint8Array {
-               const ret: Uint8Array = bindings.NodeId_as_slice(this.ptr);
-               return ret;
+               const ret: number = bindings.NodeId_as_slice(this.ptr);
+               const ret_conv: Uint8Array = bindings.decodeUint8Array(ret);
+               return ret_conv;
        }
 
-       public hash(): number {
-               const ret: number = bindings.NodeId_hash(this.ptr);
+       /**
+        * Checks if two NodeIds contain equal inner contents.
+        */
+       public hash(): bigint {
+               const ret: bigint = bindings.NodeId_hash(this.ptr);
                return ret;
        }
 
+       /**
+        * Serialize the NodeId object into a byte array which can be read by NodeId_read
+        */
        public write(): Uint8Array {
-               const ret: Uint8Array = bindings.NodeId_write(this.ptr);
-               return ret;
+               const ret: number = bindings.NodeId_write(this.ptr);
+               const ret_conv: Uint8Array = bindings.decodeUint8Array(ret);
+               return ret_conv;
        }
 
+       /**
+        * Read a NodeId from a byte array, created by NodeId_write
+        */
        public static constructor_read(ser: Uint8Array): Result_NodeIdDecodeErrorZ {
-               const ret: number = bindings.NodeId_read(ser);
+               const ret: number = bindings.NodeId_read(bindings.encodeUint8Array(ser));
                const ret_hu_conv: Result_NodeIdDecodeErrorZ = Result_NodeIdDecodeErrorZ.constr_from_ptr(ret);
                return ret_hu_conv;
        }