You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.use("/sign_transaction", SignTransactionHandler(req: SignTransactionRequest, resp: SignTransactionResponse) => {
// decide whether or not to sign() or reject() the request.
}, secret),
has a missing ( right after SignTransactionHandler
It contains syntax errors:
should be
and
has a missing
(right afterSignTransactionHandler