A payload signed by an address.

Export

PayloadSignature

interface PayloadSignature {
    address_id: string;
    payload_signature_id: string;
    signature?: string;
    status: PayloadSignatureStatusEnum;
    unsigned_payload: string;
    wallet_id: string;
}

Properties

address_id: string

The onchain address of the signer.

Memberof

PayloadSignature

payload_signature_id: string

The ID of the payload signature.

Memberof

PayloadSignature

signature?: string

The signature of the payload.

Memberof

PayloadSignature

The status of the payload signature.

Memberof

PayloadSignature

unsigned_payload: string

The unsigned payload. This is the payload that needs to be signed by the signer address.

Memberof

PayloadSignature

wallet_id: string

The ID of the wallet that owns the address.

Memberof

PayloadSignature