Notification payload for signatureSubscribe.

1.0.0

interface SignatureNotification {
    result: {
        context: {
            slot: Slot;
        };
        value: {
            err: unknown;
        } | "receivedSignature";
    };
    subscription: number;
}

Properties

Properties

result: {
    context: {
        slot: Slot;
    };
    value: {
        err: unknown;
    } | "receivedSignature";
}
subscription: number