3 import CommonBase from './CommonBase';
4 import * as bindings from '../bindings' // TODO: figure out location
8 export default class DelayedPaymentOutputDescriptor extends CommonBase {
9 constructor(_dummy: object, ptr: number) {
14 protected finalize() {
18 bindings.DelayedPaymentOutputDescriptor_free(this.ptr);
21 public OutPoint get_outpoint() {
22 number ret = bindings.DelayedPaymentOutputDescriptor_get_outpoint(this.ptr);
23 const ret_hu_conv: OutPoint = new OutPoint(null, ret);
24 ret_hu_conv.ptrs_to.add(this);
28 public void set_outpoint(OutPoint val) {
29 bindings.DelayedPaymentOutputDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr & ~1);
30 this.ptrs_to.add(val);
33 public Uint8Array get_per_commitment_point() {
34 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_per_commitment_point(this.ptr);
38 public void set_per_commitment_point(Uint8Array val) {
39 bindings.DelayedPaymentOutputDescriptor_set_per_commitment_point(this.ptr, val);
42 public number get_to_self_delay() {
43 number ret = bindings.DelayedPaymentOutputDescriptor_get_to_self_delay(this.ptr);
47 public void set_to_self_delay(number val) {
48 bindings.DelayedPaymentOutputDescriptor_set_to_self_delay(this.ptr, val);
51 public void set_output(TxOut val) {
52 bindings.DelayedPaymentOutputDescriptor_set_output(this.ptr, val.ptr);
55 public Uint8Array get_revocation_pubkey() {
56 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_revocation_pubkey(this.ptr);
60 public void set_revocation_pubkey(Uint8Array val) {
61 bindings.DelayedPaymentOutputDescriptor_set_revocation_pubkey(this.ptr, val);
64 public Uint8Array get_channel_keys_id() {
65 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_get_channel_keys_id(this.ptr);
69 public void set_channel_keys_id(Uint8Array val) {
70 bindings.DelayedPaymentOutputDescriptor_set_channel_keys_id(this.ptr, val);
73 public number get_channel_value_satoshis() {
74 number ret = bindings.DelayedPaymentOutputDescriptor_get_channel_value_satoshis(this.ptr);
78 public void set_channel_value_satoshis(number val) {
79 bindings.DelayedPaymentOutputDescriptor_set_channel_value_satoshis(this.ptr, val);
82 public static DelayedPaymentOutputDescriptor constructor_new(OutPoint outpoint_arg, Uint8Array per_commitment_point_arg, number to_self_delay_arg, TxOut output_arg, Uint8Array revocation_pubkey_arg, Uint8Array channel_keys_id_arg, number channel_value_satoshis_arg) {
83 number ret = bindings.DelayedPaymentOutputDescriptor_new(outpoint_arg == null ? 0 : outpoint_arg.ptr & ~1, per_commitment_point_arg, to_self_delay_arg, output_arg.ptr, revocation_pubkey_arg, channel_keys_id_arg, channel_value_satoshis_arg);
84 const ret_hu_conv: DelayedPaymentOutputDescriptor = new DelayedPaymentOutputDescriptor(null, ret);
85 ret_hu_conv.ptrs_to.add(ret_hu_conv);
86 ret_hu_conv.ptrs_to.add(outpoint_arg);
90 public DelayedPaymentOutputDescriptor clone() {
91 number ret = bindings.DelayedPaymentOutputDescriptor_clone(this.ptr);
92 const ret_hu_conv: DelayedPaymentOutputDescriptor = new DelayedPaymentOutputDescriptor(null, ret);
93 ret_hu_conv.ptrs_to.add(this);
97 public Uint8Array write() {
98 Uint8Array ret = bindings.DelayedPaymentOutputDescriptor_write(this.ptr);
102 public static Result_DelayedPaymentOutputDescriptorDecodeErrorZ constructor_read(Uint8Array ser) {
103 number ret = bindings.DelayedPaymentOutputDescriptor_read(ser);
104 Result_DelayedPaymentOutputDescriptorDecodeErrorZ ret_hu_conv = Result_DelayedPaymentOutputDescriptorDecodeErrorZ.constr_from_ptr(ret);