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 51909d3 commit 75c0891Copy full SHA for 75c0891
apps/customer/app/test/page.tsx
@@ -647,7 +647,7 @@ export default function Test() {
647
const authorizeSiwe = () => {
648
const siwe_message = siweMessage({
649
domain: 'localhost:3000',
650
- address: walletAddress,
+ address: `${walletAddress}`,
651
appName: 'SDK TEST APP',
652
redirectUri: 'http://localhost:3000/dashboard',
653
chainId: chainId,
packages/sdk/src/utils.ts
@@ -163,8 +163,8 @@ export const siweMessage = ({
163
appName: string;
164
redirectUri: string;
165
chainId: EvmChainId;
166
- issuedAt: string;
167
- expiryAt: string;
+ issuedAt?: string;
+ expiryAt?: string;
168
privacyPolicyUrl: string;
169
termsOfServiceUrl: string;
170
}) => {
0 commit comments