interface SignedMessage {
    data: Uint8Array;
    from: PeerId;
    key: PublicKey;
    sequenceNumber: bigint;
    signature: Uint8Array;
    topic: string;
    type: "signed";
}

Properties

from: PeerId
sequenceNumber: bigint
signature: Uint8Array
topic: string
type: "signed"