Getting Started with Walver.io
This guide will help you get started with Walver.io, from creating an account to implementing your first wallet verification.
Creating an Account
Visit walver.io and click on the "Get started" button
Signup with email or connect your wallet (Solana, Ethereum, or other supported chains)
Sign a message to verify your wallet ownership if you connected your wallet, or choose a password and verify your email if you signed up with email
Your creator dashboard will be ready to use
Understanding the Dashboard
After logging in, you'll be taken to the creator dashboard where you can:
Create and manage verification links
Organize verifications into folders
View verification statistics
Generate and manage API keys
Creating Your First Verification
Using the Dashboard
From your dashboard, click on "Create Folder"
Fill in the required information:
Name: The name of your folder
Description: A description of the folder
Add custom fields if needed (email, social media handles, etc.)
Click "Create Folder"
From the folder, click "Create Verification"
Fill in the required information:
- Verification options:
Blockchain: The blockchain your users will connect with
Force Email Verification: (Optional) Enable if you want to force email verification
Force Telegram Verification: (Optional) Enable if you want to force telegram verification
Force Twitter Verification: (Optional) Enable if you want to force twitter verification
Token Gate: (Optional) Enable if the verification should be token gated
Token Address: (Optional) The address of the token to gate the verification
Token Amount: (Optional) The amount of the token to gate the verification
Click "Create Verification"
Copy the generated verification URL to share with your users
Using the API
You can also create verifications programmatically using the Walver API:
curl -X POST "https://walver.io/new" \
-H "X-API-Key: your_api_key" \
-H "Content-Type: application/json" \
-d '{
"id": "verification_123",
"service_name": "My Service",
"chain": "solana",
"webhook": "https://your-service.com/webhook",
"secret": "your_webhook_secret",
"custom_fields": [
{
"id": "email",
"type": "email",
"name": "Email Address",
"required": true
}
]
}'
Using the Python SDK
For Python applications, you can use our official SDK:
from walver_sdk import Walver
# Initialize the client
walver = Walver(api_key="your-api-key")
# Create a verification
verification = walver.create_verification(
id="verification_123",
service_name="My Service",
chain="solana",
webhook="https://your-service.com/webhook",
secret="your_webhook_secret",
custom_fields=[
{
"id": "email",
"type": "email",
"name": "Email Address",
"required": True
}
]
)
# Get the verification URL
verification_url = verification["verification_url"]
print(f"Verification URL: {verification_url}")
Handling Verifications
Webhook Setup
When a user completes a verification, Walver will send a webhook to your specified URL with the verification data:
{
"id": "verification_123",
"wallet_address": "0x1234567890abcdef",
"verification_time": "2023-05-01T12:34:56Z",
"custom_fields": {
"email": "user@example.com"
},
"signature": "0x...",
"message": "...",
"chain": "solana"
}
Your webhook endpoint should:
Verify the webhook secret (if configured)
Process the verification data
Return a 200 OK response
Security Considerations
Always verify the webhook signature using your secret key
Use HTTPS for your webhook endpoint
Consider implementing rate limiting to prevent abuse
Store verification data securely
Next Steps
Now that you've created your first verification, you can:
Explore token gating to restrict access based on token ownership
Set up custom fields to collect additional information
Organize your verifications into folders
Implement email verification for added security
Integrate with social media verification
Last updated