Are you an LLM? Read llms.txt for a summary of the docs, or llms-full.txt for the full context.
Skip to content

apiKey

Your JAW API key for authentication with JAW services.

Type: string Required: Yes

Usage

// Wagmi
import { jaw } from '@jaw.id/wagmi';
 
const connector = jaw({
  apiKey: 'your-api-key-here',
});
// EIP-1193 Provider
import { JAW } from '@jaw.id/core';
 
const jaw = JAW.create({
  apiKey: 'your-api-key-here',
});

How to Get an API Key

  1. Visit the JAW Dashboard
  2. Create a new project or select an existing one
  3. Navigate to the API Keys section
  4. Generate a new API key

Setting Up Allowed Domains

For security, you must configure which domains are allowed to use your API key:

  1. In the JAW Dashboard, go to your api-key settings
  2. Find the Allowed Domains section
  3. Add the domains where your application will run:
    • localhost for local development
    • yourdomain.com for production
    • staging.yourdomain.com for staging environments

Requests from domains not in your allowed list will be rejected.

Related Configuration