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
Copy file name to clipboardExpand all lines: docs/mini-apps/core-concepts/base-account.mdx
+30-3Lines changed: 30 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -149,6 +149,36 @@ The next section lists the methods and capabilities that are not supported in Mi
149
149
</Steps>
150
150
---
151
151
152
+
## Verify social accounts with Base Verify
153
+
154
+
[Base Verify](/base-account/guides/verify-social-accounts) lets your Mini App users prove ownership of verified accounts (X, Coinbase, Instagram, TikTok) without sharing credentials. You receive a deterministic token for Sybil resistance — one verified account produces the same token regardless of which wallet the user connects with.
155
+
156
+
**How it works:**
157
+
158
+
1. Check if the wallet has a verification → API returns yes/no
159
+
2. If no → redirect to the Base Verify Mini App for OAuth
160
+
3. User verifies → returns to your app
161
+
4. Check again → now verified, you receive a token
162
+
163
+
**Quick example — check if a user has a verified X account:**
164
+
165
+
```typescript Title "Base Verify check" highlight={1-4,7-8}
166
+
const resources = [
167
+
'urn:verify:provider:x',
168
+
'urn:verify:provider:x:verified:eq:true',
169
+
'urn:verify:action:claim_airdrop'
170
+
]
171
+
172
+
// Generate SIWE message with these resources, sign it,
173
+
// then send to your backend to call the Base Verify API
174
+
```
175
+
176
+
<Cardtitle="Full Base Verify integration guide"icon="shield-check"href="/base-account/guides/verify-social-accounts">
177
+
Complete walkthrough covering all providers, traits, API reference, security, and implementation details.
178
+
</Card>
179
+
180
+
---
181
+
152
182
## Unsupported Methods and Capabilities
153
183
154
184
The following methods and capabilities are not yet supported in Mini Apps but will be added soon:
@@ -157,10 +187,7 @@ The following methods and capabilities are not yet supported in Mini Apps but wi
157
187
|---------|------------------|
158
188
| Sign in with Base |`wallet_connect`|
159
189
| Sub accounts |`wallet_getSubAccounts`, `wallet_addSubAccount`|
0 commit comments