Skip to content

Commit 657fba6

Browse files
committed
update sign in with base
1 parent 9e11fb3 commit 657fba6

File tree

2 files changed

+37
-3
lines changed

2 files changed

+37
-3
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
.env
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts
37+

base-account/base-account-wagmi-template/src/components/SignInWithBase.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,10 @@ export function SignInWithBase({ connector }: SignInWithBaseProps) {
3737
});
3838

3939
const walletAddress = accounts.accounts[0].address;
40-
console.log("walletAddress", walletAddress);
4140
const signature =
4241
accounts.accounts[0].capabilities.signInWithEthereum.signature;
4342
const message =
4443
accounts.accounts[0].capabilities.signInWithEthereum.message;
45-
console.log("message", message);
46-
console.log("signature", signature);
4744
// Verify the signature on the backend
4845
const verifyResponse = await fetch("/api/auth/verify", {
4946
method: "POST",

0 commit comments

Comments
 (0)