Official technical reference for ALYX mainnet, including network identity, public API routes, RPC/LCD access, DEX markets, Gecko-style market data, TokenFactory assets, AI execution, metadata files, liquidity locks, and listing integration endpoints.
ALYX is a Cosmos SDK + CometBFT non-EVM Layer-1 focused on autonomous intelligence, on-chain liquidity, TokenFactory assets, and ALYX-denominated execution.
This page is intended for exchanges, explorers, CoinMarketCap, CoinGecko, GeckoTerminal, wallets, indexers, validators, and integration partners reviewing ALYX mainnet.
https://alyxai.orgalyx-1https://testnet.alyxai.orgalyxtest-4
ALYX exposes Gecko-style market data routes for CoinGecko, GeckoTerminal, CoinMarketCap,
explorers, and indexers. Pair IDs use the format alyx-{poolId}.
GET https://alyxai.org/api/gecko/latest-blockGET https://alyxai.org/api/gecko/assetsGET https://alyxai.org/api/gecko/pairsGET https://alyxai.org/api/gecko/pairs/alyx-1GET https://alyxai.org/api/gecko/eventscurl -s https://alyxai.org/api/gecko/latest-block | jq . curl -s https://alyxai.org/api/gecko/assets | jq . curl -s https://alyxai.org/api/gecko/pairs | jq . curl -s https://alyxai.org/api/gecko/pairs/alyx-1 | jq . curl -s https://alyxai.org/api/gecko/events | jq .
Current live pair mapping:
alyx-1 — ALYX / AIalyx-2 — ALYX / GPUalyx-3 — ALYX / DATAalyx-4 — ALYX / MODELalyx-5 — ALYX / DeltaWolves
Compatibility fields such as reserve_usd and volume_usd_24h
are ALYX-normalized until an external USD oracle or market reference is added.
Native values are exposed as reserve_alyx, volume_alyx_24h,
and price_native.
alyx-1mainnetALYXualyx6alyx3,000,000,000 ALYX
ALYX mainnet is supported by primary and multi-node backup RPC/API infrastructure.
These endpoints are intended for wallets, explorers, validators, indexers, applications,
and external integrations building on alyx-1.
Recommended integration pattern: use the primary RPC/API endpoints by default and fail over to backup node 2 or backup node 3 if the primary endpoint is unavailable.
Primary: RPC: https://rpc.alyxai.org API/LCD: https://api.alyxai.org Backup Node 2: RPC: https://rpc2.alyxai.org API/LCD: https://api2.alyxai.org Backup Node 3: RPC: https://rpc3.alyxai.org API/LCD: https://api3.alyxai.org
GET /api/healthGET /api/network/overviewGET /api/dex/poolsGET /api/dex/pools/{id}GET /api/dex/paramsGET /api/dex-analytics/statusGET /api/dex-analytics/pools/{id}/summaryGET /api/tokenfactory/metadataGET /api/tokenfactory/assetlistGET /api/ai/statusGET /api/ai/modelsGET /api/ai/pricingPOST /api/ai/executeGET /api/gecko/latest-blockGET /api/gecko/assetsGET /api/gecko/pairsGET /api/gecko/pairs/{pairId}GET /api/gecko/eventsGET https://alyxai.org/api/network/overview
Expected identity:
{
"chainId": "alyx-1",
"totalSupply": "3,000,000,000",
"genesisSupply": "3000000000"
}
ALYX mainnet includes a native on-chain DEX module using a constant-product AMM model. ALYX is the monetary hub asset for all core markets.
GET https://alyxai.org/api/dex/params
Expected mainnet fee routing:
{
"swapFeePercent": 0.3,
"feeSplitPercent": {
"lp": 0.15,
"validators": 0,
"treasury": 0.15
}
}
GET https://alyxai.org/api/dex/pools Mainnet live pools include: - Pool 1: ALYX / AI - Pool 2: ALYX / GPU - Pool 3: ALYX / DATA - Pool 4: ALYX / MODEL - Pool 5: ALYX / DeltaWolves
ALYX supports protocol-native LP liquidity locks through the DEX module. Mainnet liquidity is locked on-chain and can be verified through DEX pool data and gRPC queries.
curl -s https://alyxai.org/api/dex/pools | jq '.[] | {
poolId,
pair,
hasLockedLiquidity,
isForeverLocked,
lockSummary
}'
Assets may scale upward based on verifiable on-chain ALYX liquidity. No asset becomes canonical except ALYX.
ualyx — ALYXfactory/alyx1d2hezk0ept8w0eqs9y3s69ly9m7g7qnqc9uv3l/AI — AIfactory/alyx1d2hezk0ept8w0eqs9y3s69ly9m7g7qnqc9uv3l/GPU — GPUfactory/alyx1d2hezk0ept8w0eqs9y3s69ly9m7g7qnqc9uv3l/DATA — DATAfactory/alyx1d2hezk0ept8w0eqs9y3s69ly9m7g7qnqc9uv3l/MODEL — MODELfactory/alyx1d2hezk0ept8w0eqs9y3s69ly9m7g7qnqc9uv3l/DeltaWolves — DeltaWolvesGET https://alyxai.org/assetlist.json GET https://alyxai.org/api/tokenfactory/assetlist GET https://alyxai.org/api/tokenfactory/metadata
ALYX exposes public AI module routes for model registry, pricing, execution metadata, and paid execution flows. AI execution is denominated in ALYX.
GET /api/ai/statusGET /api/ai/registryGET /api/ai/modelsGET /api/ai/pricingGET /api/ai/executionPOST /api/ai/executeGET https://alyxai.org/api/ai/pricing
Mainnet validators must use alyx-1. Testnet instructions for alyxtest-4
must not be used for mainnet validators.
CHAIN_ID=alyx-1 curl -s https://raw.githubusercontent.com/AlyxAIf/alyx-validator/main/scripts/install-validator.sh | bash
curl -s https://alyxai.org/api/health | jq . curl -s https://alyxai.org/api/network/overview | jq '.chainId, .totalSupply' curl -s https://alyxai.org/chain.json | jq '.chain_id, .network_type' curl -s https://alyxai.org/keplr-chain.json | jq '.chainId' curl -s https://alyxai.org/assetlist.json | jq '.assets | length' curl -s https://alyxai.org/api/dex/pools | jq 'length' curl -s https://alyxai.org/api/gecko/pairs | jq '.data | length'
alyxai.org → alyx-1testnet.alyxai.org → alyxtest-4Backend data is the source of truth. Domain identity must always match the network it represents. Mainnet APIs should not point to testnet data, and testnet APIs should not point to mainnet data.