3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class NodeInfo extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.NodeInfo_free(this.ptr);
21 public void set_channels(number[] val) {
22 bindings.NodeInfo_set_channels(this.ptr, val);
25 public RoutingFees get_lowest_inbound_channel_fees() {
26 number ret = bindings.NodeInfo_get_lowest_inbound_channel_fees(this.ptr);
27 const ret_hu_conv: RoutingFees = new RoutingFees(null, ret);
28 ret_hu_conv.ptrs_to.add(this);
32 public void set_lowest_inbound_channel_fees(RoutingFees val) {
33 bindings.NodeInfo_set_lowest_inbound_channel_fees(this.ptr, val == null ? 0 : val.ptr & ~1);
36 public NodeAnnouncementInfo get_announcement_info() {
37 number ret = bindings.NodeInfo_get_announcement_info(this.ptr);
38 const ret_hu_conv: NodeAnnouncementInfo = new NodeAnnouncementInfo(null, ret);
39 ret_hu_conv.ptrs_to.add(this);
43 public void set_announcement_info(NodeAnnouncementInfo val) {
44 bindings.NodeInfo_set_announcement_info(this.ptr, val == null ? 0 : val.ptr & ~1);
47 public static NodeInfo constructor_new(number[] channels_arg, RoutingFees lowest_inbound_channel_fees_arg, NodeAnnouncementInfo announcement_info_arg) {
48 number ret = bindings.NodeInfo_new(channels_arg, lowest_inbound_channel_fees_arg == null ? 0 : lowest_inbound_channel_fees_arg.ptr & ~1, announcement_info_arg == null ? 0 : announcement_info_arg.ptr & ~1);
49 const ret_hu_conv: NodeInfo = new NodeInfo(null, ret);
50 ret_hu_conv.ptrs_to.add(ret_hu_conv);
54 public number clone_ptr() {
55 number ret = bindings.NodeInfo_clone_ptr(this.ptr);
59 public NodeInfo clone() {
60 number ret = bindings.NodeInfo_clone(this.ptr);
61 const ret_hu_conv: NodeInfo = new NodeInfo(null, ret);
62 ret_hu_conv.ptrs_to.add(this);
66 public Uint8Array write() {
67 Uint8Array ret = bindings.NodeInfo_write(this.ptr);
71 public static Result_NodeInfoDecodeErrorZ constructor_read(Uint8Array ser) {
72 number ret = bindings.NodeInfo_read(ser);
73 Result_NodeInfoDecodeErrorZ ret_hu_conv = Result_NodeInfoDecodeErrorZ.constr_from_ptr(ret);