View Source Stellar.TxBuild.Signature (Elixir Stellar SDK v0.22.0)

Signature struct definition.

Summary

Types

@type key() :: String.t() | {String.t(), String.t()}
@type raw_key() :: binary() | {binary(), binary()}
@type t() :: %Stellar.TxBuild.Signature{
  hint: binary(),
  key: key(),
  raw_key: raw_key(),
  type: type()
}
@type type() :: :ed25519 | :hash_x | :signed_payload

Functions

Link to this function

to_xdr(signature, base_signature)

View Source
@spec to_xdr(signature :: t(), base_signature :: binary()) ::
  StellarBase.XDR.DecoratedSignature.t()