View Source StellarBase.XDR.FromEd25519PublicKey (Elixir Stellar Base v0.9.0)

Representation of Stellar FromEd25519PublicKey type.

Link to this section Summary

Link to this section Types

@type t() :: %StellarBase.XDR.FromEd25519PublicKey{
  key: StellarBase.XDR.UInt256.t(),
  salt: StellarBase.XDR.UInt256.t(),
  signature: StellarBase.XDR.Signature.t()
}

Link to this section Functions

Link to this function

new(key, signature, salt)

View Source
@spec new(
  key :: StellarBase.XDR.UInt256.t(),
  signature :: StellarBase.XDR.Signature.t(),
  salt :: StellarBase.XDR.UInt256.t()
) :: t()