Interface SignedTransaction<T extends Transaction>

  • Type Parameters:
    T - The type of Transaction that was signed.
    All Known Implementing Classes:
    ImmutableSignedTransaction

    @Immutable
    @Deprecated
    public interface SignedTransaction<T extends Transaction>
    Deprecated.
    Prefer SignedTransaction from xrpl4j-crypto instead.
    Represents a transaction that has been signed.
    • Field Detail

      • SIGNED_TRANSACTION_HASH_PREFIX

        static final String SIGNED_TRANSACTION_HASH_PREFIX
        Deprecated.
        The hash prefix used by the XRPL to identify transaction hashes.
        See Also:
        Constant Field Values
    • Method Detail

      • signedTransaction

        T signedTransaction()
        Deprecated.
        The signed transaction.
        Returns:
        A transaction that has been signed.
      • signedTransactionBlob

        String signedTransactionBlob()
        Deprecated.
        The signed transaction, as a hex encoded binary string.
        Returns:
        A String containing the signed transaction blob.
      • hash

        @Derived
        default Hash256 hash()
        Deprecated.
        The hash of the signed transaction. This field is derived by computing the SHA512Half of the Signed Transaction hash prefix concatenated with the signed transaction blob.
        Returns:
        A Hash256 containing the transaction hash.