Notification payload for logsSubscribe.

1.0.0

interface LogsNotification {
    result: {
        context: {
            slot: Slot;
        };
        value: {
            err: unknown;
            logs: string[];
            signature: never;
        };
    };
    subscription: number;
}

Properties

Properties

result: {
    context: {
        slot: Slot;
    };
    value: {
        err: unknown;
        logs: string[];
        signature: never;
    };
}
subscription: number