// Introduction

Labol Tech Docs

Labol Tech is a decentralized AI compute network on Solana. Miners share their AI API capacity to serve inference requests. Users burn $LABOL tokens to access AI inference — no subscriptions, no credit cards, no API keys needed.

How It Works

The protocol has two sides:

  • Miners — install the relay client, connect their Solana wallet + AI API key, and serve inference requests routed by the coordinator. Your API key never leaves your machine.
  • Users — burn $LABOL tokens to receive compute credits. Use those credits to call the OpenAI-compatible API endpoint and receive AI responses.
Coordinator API: api.laboltech.xyz  ·  Chain: Solana  ·  Token: $LABOL (pump.fun)

Architecture

architecture
[Miners]  ──  WebSocket  ──►  [Coordinator]
                                     │
[Users]   ──  burn $LABOL  ──►       │  ──►  [Relay Router]  ──►  [AI Response]
                                     │
                                [Supabase DB]
// Getting Started

Quick Start

Get started as a miner or user in under 5 minutes.

As a Miner

1
Install relay client
Requires Node.js 18+
2
Get a Solana wallet
Phantom wallet works. Save your wallet address.
3
Get an AI API key
OpenAI, Anthropic, OpenRouter (free tier works), Groq, or local Ollama.
4
Start mining
Run the relay command and start earning.
terminal
# Install
npm install -g labol-relay

# Start mining
labol-relay start \
  --wallet YOUR_SOLANA_WALLET \
  --ai-key  sk-YOUR_API_KEY \
  --ai-url  https://api.openai.com/v1 \
  --model   gpt-4o-mini

As a User

1
Buy $LABOL on pump.fun
CA: TBA
2
Go to Dashboard
laboltech.xyz/dashboard.html — enter your wallet, create an API key.
3
Burn $LABOL
Send tokens to the burn address. Credits auto-credited to your wallet.
4
Call the API
Use your lk_xxx key with the OpenAI-compatible endpoint.
// For Miners

How Mining Works

Labol miners don't need GPUs. They need API keys.

There are two ways to earn $LABOL:

  • Comprehension Mining — solve multi-hop reasoning challenges generated by the coordinator. No AI key needed. Earn base rewards per correct submission.
  • Relay Mining — serve AI inference requests from users. Requires an AI API key. Earn 2x reward weight per fulfilled request.

Supported Providers

ProviderURLNotes
OpenAIhttps://api.openai.com/v1gpt-4o-mini recommended
Anthropichttps://api.anthropic.com/v1claude-haiku-3 recommended
OpenRouterhttps://openrouter.ai/api/v1Free tier available
Groqhttps://api.groq.com/openai/v1Free tier, very fast
Ollamahttp://localhost:11434/v1Local, no cost
// For Miners

Relay Setup

relay-start.sh
labol-relay start \
  --wallet      YOUR_SOLANA_WALLET \
  --ai-key      sk-YOUR_API_KEY \
  --ai-url      https://api.openai.com/v1 \
  --model       gpt-4o-mini \
  --coordinator wss://api.laboltech.xyz

The relay client connects to the coordinator via WebSocket, registers your wallet + model, and begins receiving inference requests. Your API key is used locally — it never leaves your machine.

Note: Keep the relay running as long as possible. Quality score degrades on failures and improves with uptime. Higher quality score = more requests routed to you.
// For Users

Burn $LABOL

Burn tokens to get compute credits. 1 $LABOL = 1,000 output tokens of AI inference.

1
Send $LABOL to the burn address
Burn address: 1nc1nerator11111111111111111111111111111111
2
Helius detects the transaction
Webhook fires automatically within seconds of the transaction.
3
Credits auto-credited
Compute credits appear in your dashboard immediately.

Check your balance:

terminal
curl "https://api.laboltech.xyz/v1/burn/balance?wallet=YOUR_WALLET"

// Response:
{
  "wallet": "YOUR_WALLET",
  "compute_credits": 50000,
  "tokens_burned": 50
}
// For Users

API Keys

Generate a lk_xxx key to authenticate with the compute API.

create-key.sh
curl -X POST https://api.laboltech.xyz/v1/apikeys/create \
  -H "Content-Type: application/json" \
  -d '{"wallet":"YOUR_WALLET"}'

// Response:
{
  "key": "lk_...",
  "wallet": "YOUR_WALLET",
  "token_balance": 0
}

Or use the Dashboard to generate and manage keys visually.

// For Users

Compute API

OpenAI-compatible. Change the base URL. Zero code rewrites.

Python

inference.py
from openai import OpenAI

client = OpenAI(
    base_url = "https://api.laboltech.xyz/v1",
    api_key  = "lk_YOUR_KEY",
)

response = client.chat.completions.create(
    model    = "auto",
    messages = [{"role": "user", "content": "Hello"}],
)
print(response.choices[0].message.content)

cURL

terminal
curl -X POST https://api.laboltech.xyz/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "X-Api-Key: lk_YOUR_KEY" \
  -d '{
    "model": "auto",
    "messages": [{"role": "user", "content": "Hello"}],
    "max_tokens": 512
  }'
Free tier: 5 requests/hour with no API key. For unlimited access, burn $LABOL to get compute credits.
// Reference

API Reference

Base URL

https://api.laboltech.xyz

Auth

MethodPathDescription
POST/v1/auth/nonceGet auth nonce for wallet
POST/v1/auth/verifyVerify signature → JWT

Mining

MethodPathDescription
GET/v1/challengeGet mining challenge (JWT required)
POST/v1/submitSubmit answer → earn $LABOL
GET/v1/claims/statusCheck unclaimed balance

Compute

MethodPathDescription
POST/v1/chat/completionsOpenAI-compatible inference
GET/v1/compute/healthNetwork status
GET/v1/compute/providersOnline relay miners
GET/v1/modelsAvailable models

Burn

MethodPathDescription
GET/v1/burn/balanceCheck compute credits
GET/v1/burn/historyBurn transaction history

API Keys

MethodPathDescription
POST/v1/apikeys/createCreate new lk_xxx key
GET/v1/apikeys/listList keys for wallet
POST/v1/apikeys/revokeRevoke a key
GET/v1/apikeys/balanceCheck key credits
// Reference

Tokenomics

ParameterValue
ChainSolana
Launchpump.fun (fair launch)
Team allocation0%
VC allocation0%
Burn rate1 $LABOL = 1,000 output tokens
Miner rewardPer challenge + relay requests
Relay bonus2x weight per fulfilled request
Contract AddressTBA — pump.fun
// Reference

Contracts

ContractAddress
$LABOL Token (SPL)TBA — launching on pump.fun
Burn Address1nc1nerator11111111111111111111111111111111
Coordinator APIapi.laboltech.xyz