Interface ISignedMessage

Represents a signed message.

See

  • public_key - The public key of the node.
  • signature - The signature of the message.
interface ISignedMessage {
    public_key: string;
    signature: string;
}

Properties

public_key: string
signature: string

Generated using TypeDoc