Base protocol frame

interface MessageSentResponse {
    payload: {
        l2psStatus: "failed" | "submitted";
        messageHash: string;
    };
    requestId?: string;
    timestamp: number;
    type: "message_sent";
}

Hierarchy (view full)

Properties

payload: {
    l2psStatus: "failed" | "submitted";
    messageHash: string;
}

Type declaration

  • l2psStatus: "failed" | "submitted"

    L2PS mempool status

  • messageHash: string
requestId?: string

Request correlation ID for request/response flows

timestamp: number
type