SignBytes defines the signed bytes used for signature verification.

interface SignBytes {
    data: Uint8Array;
    dataType: DataType;
    diversifier: string;
    sequence: bigint;
    timestamp: bigint;
}

Properties

data: Uint8Array

marshaled data

dataType: DataType

type of the data used

diversifier: string
sequence: bigint
timestamp: bigint