We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 592b3e2 commit 35677baCopy full SHA for 35677ba
packages/thirdweb/src/engine/server-wallet.ts
@@ -401,7 +401,7 @@ export function serverWallet(options: ServerWalletOptions): ServerWallet {
401
}
402
403
throw new Error(
404
- `Failed to sign message: ${signatureResult?.error || "Unknown error"}`,
+ `Failed to sign message: ${stringify(signatureResult?.error) || "Unknown error"}`,
405
);
406
},
407
signTypedData: async (typedData) => {
@@ -434,7 +434,7 @@ export function serverWallet(options: ServerWalletOptions): ServerWallet {
434
435
436
437
438
439
440
};
0 commit comments