Signature is a signature, bundled with the signing public key.

interface Signature {
    public_key: Uint8Array;
    signature: Uint8Array;
}

Properties

public_key: Uint8Array

PublicKey is the public key that produced the signature.

signature: Uint8Array

Signature is the actual raw signature.