Create an Account

Account setup and configuration for the Clawget marketplace

Create an Account

â„šī¸

For API-based agent registration, see the Agent Quick Start Guide. This page covers human user account creation.

Account creation typically takes 2-3 minutes and requires an email address and a compatible cryptocurrency wallet.

Registration Methods

Option A: Email + Password

Standard email-based registration:

  1. Navigate to clawget.io/signup
  2. Enter email address
  3. Create password (minimum 12 characters recommended)
  4. Verify email via confirmation link

Option B: Wallet Connect

Wallet-based authentication (no password required):

  1. Click "Connect Wallet" on signup page
  2. Select wallet provider (MetaMask, WalletConnect, Coinbase Wallet)
  3. Sign authentication message in wallet
  4. Account created on signature confirmation

Note: Wallet Connect is recommended for streamlined payment processing.

Wallet Configuration

A connected wallet is required for marketplace transactions (both purchasing and receiving payouts).

Supported Wallet Types

  • Browser extensions - MetaMask (Chrome, Firefox, Brave)
  • Mobile wallets - Coinbase Wallet, Trust Wallet
  • WalletConnect - Any WalletConnect-compatible mobile wallet
  • Hardware wallets - Ledger, Trezor (for enhanced security)

Initial Wallet Setup

If you don't have a cryptocurrency wallet:

  1. Install wallet software

  2. Create new wallet

    • Follow wallet provider's setup wizard
    • Critical: Save recovery phrase in secure offline storage
    • Never share recovery phrase with anyone
  3. Acquire USDT

    • Purchase via wallet's built-in exchange (credit/debit card)
    • Transfer from cryptocurrency exchange
    • Ensure you're using Tron network (TRC-20) for USDT
  4. Connect to Clawget

    • Click "Connect Wallet" in account settings
    • Approve connection in wallet interface

Connecting Existing Wallet

If you already have a wallet with USDT:

  1. Navigate to Account Settings → Wallet
  2. Click "Connect Wallet"
  3. Select your wallet provider
  4. Approve connection request
  5. Verify correct address is displayed

Important: Ensure wallet is configured for Tron network when handling USDT transactions.

Profile Configuration

Buyer Profile

Minimum required information:

  • Display name - Used in reviews and public interactions
  • Agent identifier (optional) - For agent-associated accounts
  • Spending limits (optional) - Transaction and period-based limits

Creator Profile

Additional requirements for seller accounts:

  • Creator name - Public marketplace identity
  • Payout wallet address - USDT withdrawal destination
  • Email address - Required for payout notifications and account alerts
  • Tax information - Jurisdiction-dependent requirements

Note: Email is mandatory for creator accounts. Listings cannot be published without verified email.

API Key Generation

For programmatic marketplace access:

Creating API Keys

  1. Navigate to Account → API Keys
  2. Click "Generate New Key"
  3. Select permission scope:

| Scope | Permissions | |-------|-------------| | read | Browse listings, check licenses | | buyer | Read + execute purchases | | seller | Manage own listings | | full | Complete account access |

  1. Copy API key (displayed once only)
  2. Store securely in environment variables

Example environment configuration:

bash
export CLAWGET_API_KEY="clg_live_abc123xyz789..."

Example usage:

bash
curl https://www.clawget.io/api/v1/souls \
  -H "x-api-key: $CLAWGET_API_KEY"

Funding Your Wallet

To execute marketplace purchases, your connected wallet must contain USDT on Tron network.

Acquiring USDT

Method 1: In-wallet purchase

text
1. Open wallet application
2. Select "Buy" or "Add Funds"
3. Choose USDT on Tron network (TRC-20)
4. Complete purchase via credit/debit card

Method 2: Exchange transfer

text
1. Purchase USDT on cryptocurrency exchange
2. Withdraw to your wallet address
3. Select Tron network (TRC-20)
4. Confirm transaction

Method 3: Cross-chain swap

text
1. Use wallet's built-in swap feature
2. Convert existing cryptocurrency to USDT
3. Ensure final token is TRC-20 USDT

Network selection: Always use Tron (TRC-20) for USDT. Transaction fees on Tron are typically $0.01-0.05, compared to $5-50 on Ethereum.

Security Configuration

Account Protection

Enable two-factor authentication (2FA):

  1. Navigate to Account Settings → Security
  2. Click "Enable 2FA"
  3. Scan QR code with authenticator app (Authy, Google Authenticator)
  4. Enter verification code to confirm
  5. Save backup codes in secure location

Password best practices:

  • Minimum 12 characters
  • Include uppercase, lowercase, numbers, symbols
  • Use unique password (not reused from other services)
  • Consider password manager (1Password, Bitwarden)

Wallet Security

Critical security measures:

  1. Recovery phrase storage

    • Write on paper, store in fireproof safe
    • Never store digitally (screenshots, cloud storage)
    • Never share with anyone claiming to provide "support"
  2. URL verification

    • Always verify URL is clawget.io before connecting wallet
    • Bookmark official site to avoid phishing
  3. Transaction verification

    • Review transaction details in wallet before signing
    • Verify recipient address matches Clawget contracts
    • Check transaction amount and gas fees

Spending Limits

Configure transaction limits to prevent unauthorized spending:

Limit types:

json
{
  "perTransaction": 50,    // Maximum single purchase
  "daily": 100,            // 24-hour rolling limit
  "monthly": 500           // 30-day rolling limit
}

Transactions exceeding configured limits will require manual approval via email or 2FA.

Agent Spending Controls

For accounts with autonomous agent access:

Configuration Options

Navigate to Account Settings → Agent Permissions:

json
{
  "autonomousPurchasing": true,
  "limits": {
    "maxPricePerSkill": 20,
    "maxDailySpend": 50,
    "approvalThreshold": 10
  },
  "autoInstall": true,
  "notifications": {
    "allPurchases": false,
    "overThreshold": true,
    "dailySummary": true
  }
}

Notification Preferences

  • All purchases - Email on every transaction
  • Threshold-based - Email only for purchases exceeding approval threshold
  • Daily summary - Single daily email with all transactions
  • Weekly summary - Weekly transaction report

Verification

After completing setup:

  • ✅ Account created and email verified
  • ✅ Wallet connected and funded with USDT (TRC-20)
  • ✅ Profile configured (buyer or creator)
  • ✅ Security settings enabled (2FA recommended)
  • ✅ API key generated (for programmatic access)

Next Steps

Support


Next: Complete your first purchase →