[C#] Update auto-generated files
[ldk-java] / c_sharp / src / org / ldk / structs / AnchorDescriptor.cs
diff --git a/c_sharp/src/org/ldk/structs/AnchorDescriptor.cs b/c_sharp/src/org/ldk/structs/AnchorDescriptor.cs
new file mode 100644 (file)
index 0000000..d1821b3
--- /dev/null
@@ -0,0 +1,173 @@
+using org.ldk.impl;
+using org.ldk.enums;
+using org.ldk.util;
+using System;
+
+namespace org { namespace ldk { namespace structs {
+
+
+/**
+ * A descriptor used to sign for a commitment transaction's anchor output.
+ */
+public class AnchorDescriptor : CommonBase {
+       internal AnchorDescriptor(object _dummy, long ptr) : base(ptr) { }
+       ~AnchorDescriptor() {
+               if (ptr != 0) { bindings.AnchorDescriptor_free(ptr); }
+       }
+
+       /**
+        * The parameters required to derive the signer for the anchor input.
+        */
+       public ChannelDerivationParameters get_channel_derivation_parameters() {
+               long ret = bindings.AnchorDescriptor_get_channel_derivation_parameters(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.ChannelDerivationParameters ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.ChannelDerivationParameters(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * The parameters required to derive the signer for the anchor input.
+        */
+       public void set_channel_derivation_parameters(org.ldk.structs.ChannelDerivationParameters val) {
+               bindings.AnchorDescriptor_set_channel_derivation_parameters(this.ptr, val == null ? 0 : val.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(val);
+               if (this != null) { this.ptrs_to.AddLast(val); };
+       }
+
+       /**
+        * The transaction input's outpoint corresponding to the commitment transaction's anchor
+        * output.
+        */
+       public OutPoint get_outpoint() {
+               long ret = bindings.AnchorDescriptor_get_outpoint(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.OutPoint ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.OutPoint(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * The transaction input's outpoint corresponding to the commitment transaction's anchor
+        * output.
+        */
+       public void set_outpoint(org.ldk.structs.OutPoint val) {
+               bindings.AnchorDescriptor_set_outpoint(this.ptr, val == null ? 0 : val.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(val);
+               if (this != null) { this.ptrs_to.AddLast(val); };
+       }
+
+       /**
+        * Constructs a new AnchorDescriptor given each field
+        */
+       public static AnchorDescriptor of(org.ldk.structs.ChannelDerivationParameters channel_derivation_parameters_arg, org.ldk.structs.OutPoint outpoint_arg) {
+               long ret = bindings.AnchorDescriptor_new(channel_derivation_parameters_arg == null ? 0 : channel_derivation_parameters_arg.ptr, outpoint_arg == null ? 0 : outpoint_arg.ptr);
+               GC.KeepAlive(channel_derivation_parameters_arg);
+               GC.KeepAlive(outpoint_arg);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.AnchorDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.AnchorDescriptor(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(ret_hu_conv); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(channel_derivation_parameters_arg); };
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(outpoint_arg); };
+               return ret_hu_conv;
+       }
+
+       internal long clone_ptr() {
+               long ret = bindings.AnchorDescriptor_clone_ptr(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Creates a copy of the AnchorDescriptor
+        */
+       public AnchorDescriptor clone() {
+               long ret = bindings.AnchorDescriptor_clone(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               org.ldk.structs.AnchorDescriptor ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.AnchorDescriptor(null, ret); }
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               return ret_hu_conv;
+       }
+
+       /**
+        * Checks if two AnchorDescriptors contain equal inner contents.
+        * This ignores pointers and is_owned flags and looks at the values in fields.
+        * Two objects with NULL inner values will be considered "equal" here.
+        */
+       public bool eq(org.ldk.structs.AnchorDescriptor b) {
+               bool ret = bindings.AnchorDescriptor_eq(this.ptr, b == null ? 0 : b.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(b);
+               if (this != null) { this.ptrs_to.AddLast(b); };
+               return ret;
+       }
+
+       public override bool Equals(object o) {
+               if (!(o is AnchorDescriptor)) return false;
+               return this.eq((AnchorDescriptor)o);
+       }
+       /**
+        * Returns the UTXO to be spent by the anchor input, which can be obtained via
+        * [`Self::unsigned_tx_input`].
+        */
+       public TxOut previous_utxo() {
+               long ret = bindings.AnchorDescriptor_previous_utxo(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               TxOut ret_conv = new TxOut(null, ret);
+               return ret_conv;
+       }
+
+       /**
+        * Returns the unsigned transaction input spending the anchor output in the commitment
+        * transaction.
+        */
+       public TxIn unsigned_tx_input() {
+               long ret = bindings.AnchorDescriptor_unsigned_tx_input(this.ptr);
+               GC.KeepAlive(this);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               TxIn ret_conv = new TxIn(null, ret);
+               return ret_conv;
+       }
+
+       /**
+        * Returns the witness script of the anchor output in the commitment transaction.
+        */
+       public byte[] witness_script() {
+               byte[] ret = bindings.AnchorDescriptor_witness_script(this.ptr);
+               GC.KeepAlive(this);
+               return ret;
+       }
+
+       /**
+        * Returns the fully signed witness required to spend the anchor output in the commitment
+        * transaction.
+        */
+       public byte[] tx_input_witness(byte[] signature) {
+               byte[] ret = bindings.AnchorDescriptor_tx_input_witness(this.ptr, InternalUtils.check_arr_len(signature, 64));
+               GC.KeepAlive(this);
+               GC.KeepAlive(signature);
+               return ret;
+       }
+
+       /**
+        * Derives the channel signer required to sign the anchor input.
+        */
+       public WriteableEcdsaChannelSigner derive_channel_signer(org.ldk.structs.SignerProvider signer_provider) {
+               long ret = bindings.AnchorDescriptor_derive_channel_signer(this.ptr, signer_provider.ptr);
+               GC.KeepAlive(this);
+               GC.KeepAlive(signer_provider);
+               if (ret >= 0 && ret <= 4096) { return null; }
+               WriteableEcdsaChannelSigner ret_hu_conv = new WriteableEcdsaChannelSigner(null, ret);
+               if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.AddLast(this); };
+               if (this != null) { this.ptrs_to.AddLast(signer_provider); };
+               return ret_hu_conv;
+       }
+
+}
+} } }