AI Agents Buy Data Here.
Pay Per Query. Zero Gas.

One on-chain deposit opens a payment channel — after that your AI agent buys live Qumtam Shield security intel with millisecond, zero-gas EIP-712 vouchers on GGCHAIN or Qumtam Chain. The channel settles automatically.

Price per query
Queries served
Payment channels
Settlement chains

How it works

Classic unidirectional payment channel — the same pattern behind Lightning-style micropayments, tuned for autonomous agents.

STEP 1

Open a channel

One transaction locks a budget (QTM, GG or bUSDT) in the MicropayChannel contract with an expiry. If the node ever disappears, refundExpired() returns every wei.

STEP 2

Query off-chain

Each query carries an EIP-712 voucher with a rising cumulativeAmount — signed locally in ~1ms, zero gas, no waiting for blocks.

STEP 3

Verified delivery

The node signs a receipt over hash(channel·nonce·data). The SDK verifies it before accepting — a broken receipt is auto-filed as a permanent record in the on-chain DisputeRegistry and the session terminates.

STEP 4

Auto settlement

A settlement bot closes the channel on-chain before expiry using only the latest voucher — the node gets paid for every query at once, your unused deposit refunds automatically.

Quick start (Python)

Download the SDK, fund an agent wallet with a little QTM or GG, and you are buying data in five lines.

# pip install web3 eth-account requests  ·  SDK: qumtamchain.com/downloads/ai-micropay-sdk.tgz
from micropay import AutonomousDataAgent
import requests

info = requests.get("https://qumtamchain.com/api/datanode/info").json()
price = int(info["price_wei"]["qumtam"])

agent = AutonomousDataAgent("0xAGENT_PRIVATE_KEY", chain="qumtam",
                            daily_budget_wei=price * 100)      # budget circuit breaker

agent.open_channel(info["provider_address"], deposit_wei=price * 50)   # 1 on-chain tx

data = agent.query_node("https://qumtamchain.com/api/datanode",        # ~150ms, zero gas
    {"type": "security_intel", "network": "eth",
     "address": "0xdAC17F958D2ee523a2206206994597C13D831ec7"}, price)
print(data["score"], data["grade"])   # integrity auto-verified against signed receipt
⬇ Download SDK (.tgz) GitHub — open source Try the live /info endpoint

The SDK ships Python (micropay/) and TypeScript / Node.js (js/, ethers v6) clients — same channels, same vouchers, fully interoperable. Contracts are source-verified on both explorers.

Data products & pricing

Three products, one channel — the voucher price per query depends on the product. Live prices come from /api/datanode/info.

ProductWhat the agent getsPrice / query
security_intelLatest anchored audit score, grade, history & on-chain proof for any contract or wallet0.001
wallet_riskLIVE wallet fraud scan — risk score, flags, risky approvals, scam interactions0.005
chain_healthFull chain audit — liveness, producer decentralization, block time, RPC risk surface0.003

Contracts & endpoints

Same audited-pattern contract byte-for-byte on both chains. EIP-712 domain: DataMicropayEngine v1 with chainId — vouchers can never replay across chains.

ChainChain IDMicropayChannelDisputeRegistryPayment assets
GGCHAIN21212170xD839650F…74B950x4aFeC067…65c17GG (native) · bUSDT
Qumtam Chain4242420xadA2Dc73…A1080xC28e8DA1…c622QTM (native)
EndpointMethodPurpose
/api/datanode/infoGETProvider address, contracts, live pricing
/api/datanode/statsGETPublic channel / query / settlement stats
/api/datanode/get-dataPOSTBuy one query with a signed micro-voucher

Provider Honesty — Live Dispute Registry

Every broken delivery receipt can be filed permanently on-chain by any buyer. This is the node's public record — read straight from the DisputeRegistry contracts, impossible to hide or delete.

Disputes against this node
Total disputes on registry
GGCHAIN registry
Qumtam registry