org.ldk.structs.BuiltCommitmentTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ldk-java Show documentation
Show all versions of ldk-java Show documentation
LDK Java Bindings and Release Binaries
package org.ldk.structs;
import org.ldk.impl.bindings;
import org.ldk.enums.*;
import org.ldk.util.*;
import java.util.Arrays;
import java.lang.ref.Reference;
import javax.annotation.Nullable;
/**
* A pre-built Bitcoin commitment transaction and its txid.
*/
@SuppressWarnings("unchecked") // We correctly assign various generic arrays
public class BuiltCommitmentTransaction extends CommonBase {
BuiltCommitmentTransaction(Object _dummy, long ptr) { super(ptr); }
@Override @SuppressWarnings("deprecation")
protected void finalize() throws Throwable {
super.finalize();
if (ptr != 0) { bindings.BuiltCommitmentTransaction_free(ptr); }
}
/**
* The commitment transaction
*/
public byte[] get_transaction() {
byte[] ret = bindings.BuiltCommitmentTransaction_get_transaction(this.ptr);
Reference.reachabilityFence(this);
return ret;
}
/**
* The commitment transaction
*/
public void set_transaction(byte[] val) {
bindings.BuiltCommitmentTransaction_set_transaction(this.ptr, val);
Reference.reachabilityFence(this);
Reference.reachabilityFence(val);
}
/**
* The txid for the commitment transaction.
*
* This is provided as a performance optimization, instead of calling transaction.txid()
* multiple times.
*/
public byte[] get_txid() {
byte[] ret = bindings.BuiltCommitmentTransaction_get_txid(this.ptr);
Reference.reachabilityFence(this);
return ret;
}
/**
* The txid for the commitment transaction.
*
* This is provided as a performance optimization, instead of calling transaction.txid()
* multiple times.
*/
public void set_txid(byte[] val) {
bindings.BuiltCommitmentTransaction_set_txid(this.ptr, InternalUtils.check_arr_len(val, 32));
Reference.reachabilityFence(this);
Reference.reachabilityFence(val);
}
/**
* Constructs a new BuiltCommitmentTransaction given each field
*/
public static BuiltCommitmentTransaction of(byte[] transaction_arg, byte[] txid_arg) {
long ret = bindings.BuiltCommitmentTransaction_new(transaction_arg, InternalUtils.check_arr_len(txid_arg, 32));
Reference.reachabilityFence(transaction_arg);
Reference.reachabilityFence(txid_arg);
if (ret >= 0 && ret <= 4096) { return null; }
org.ldk.structs.BuiltCommitmentTransaction ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BuiltCommitmentTransaction(null, ret); }
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(ret_hu_conv); };
return ret_hu_conv;
}
long clone_ptr() {
long ret = bindings.BuiltCommitmentTransaction_clone_ptr(this.ptr);
Reference.reachabilityFence(this);
return ret;
}
/**
* Creates a copy of the BuiltCommitmentTransaction
*/
public BuiltCommitmentTransaction clone() {
long ret = bindings.BuiltCommitmentTransaction_clone(this.ptr);
Reference.reachabilityFence(this);
if (ret >= 0 && ret <= 4096) { return null; }
org.ldk.structs.BuiltCommitmentTransaction ret_hu_conv = null; if (ret < 0 || ret > 4096) { ret_hu_conv = new org.ldk.structs.BuiltCommitmentTransaction(null, ret); }
if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(this); };
return ret_hu_conv;
}
/**
* Serialize the BuiltCommitmentTransaction object into a byte array which can be read by BuiltCommitmentTransaction_read
*/
public byte[] write() {
byte[] ret = bindings.BuiltCommitmentTransaction_write(this.ptr);
Reference.reachabilityFence(this);
return ret;
}
/**
* Read a BuiltCommitmentTransaction from a byte array, created by BuiltCommitmentTransaction_write
*/
public static Result_BuiltCommitmentTransactionDecodeErrorZ read(byte[] ser) {
long ret = bindings.BuiltCommitmentTransaction_read(ser);
Reference.reachabilityFence(ser);
if (ret >= 0 && ret <= 4096) { return null; }
Result_BuiltCommitmentTransactionDecodeErrorZ ret_hu_conv = Result_BuiltCommitmentTransactionDecodeErrorZ.constr_from_ptr(ret);
return ret_hu_conv;
}
/**
* Get the SIGHASH_ALL sighash value of the transaction.
*
* This can be used to verify a signature.
*/
public byte[] get_sighash_all(byte[] funding_redeemscript, long channel_value_satoshis) {
byte[] ret = bindings.BuiltCommitmentTransaction_get_sighash_all(this.ptr, funding_redeemscript, channel_value_satoshis);
Reference.reachabilityFence(this);
Reference.reachabilityFence(funding_redeemscript);
Reference.reachabilityFence(channel_value_satoshis);
return ret;
}
/**
* Signs the counterparty's commitment transaction.
*/
public byte[] sign_counterparty_commitment(byte[] funding_key, byte[] funding_redeemscript, long channel_value_satoshis) {
byte[] ret = bindings.BuiltCommitmentTransaction_sign_counterparty_commitment(this.ptr, InternalUtils.check_arr_len(funding_key, 32), funding_redeemscript, channel_value_satoshis);
Reference.reachabilityFence(this);
Reference.reachabilityFence(funding_key);
Reference.reachabilityFence(funding_redeemscript);
Reference.reachabilityFence(channel_value_satoshis);
return ret;
}
/**
* Signs the holder commitment transaction because we are about to broadcast it.
*/
public byte[] sign_holder_commitment(byte[] funding_key, byte[] funding_redeemscript, long channel_value_satoshis, org.ldk.structs.EntropySource entropy_source) {
byte[] ret = bindings.BuiltCommitmentTransaction_sign_holder_commitment(this.ptr, InternalUtils.check_arr_len(funding_key, 32), funding_redeemscript, channel_value_satoshis, entropy_source.ptr);
Reference.reachabilityFence(this);
Reference.reachabilityFence(funding_key);
Reference.reachabilityFence(funding_redeemscript);
Reference.reachabilityFence(channel_value_satoshis);
Reference.reachabilityFence(entropy_source);
if (this != null) { this.ptrs_to.add(entropy_source); };
return ret;
}
}