View Source Kadena.Types.SignCommand (Kadena v0.19.0)

SignCommand struct definition.

Link to this section Summary

Link to this section Types

@type hash() :: String.t()
@type pub_key() :: String.t() | nil
@type sig() :: String.t() | nil
@type sig_type() :: :unsigned_signature | :signed_signature
@type sig_with_hash() :: Kadena.Types.SignatureWithHash.t()
@type t() :: %Kadena.Types.SignCommand{
  hash: hash(),
  pub_key: pub_key(),
  sig: sig(),
  type: sig_type()
}