Official ALYX Testnet ยท alyxtest-4

ALYX Testnet Developer Portal

Public technical reference for the ALYX testnet, including network identity, RPC/LCD/API endpoints, Keplr onboarding, faucet access, DEX routes, TokenFactory metadata, AI execution testing, and validator infrastructure.

Mainnet ALYX runs at https://alyxai.org. This page is for alyxtest-4 only.

Testnet Notice

Testnet ALYX has no public market value. Use this network for wallet testing, validator testing, DEX testing, TokenFactory testing, AI execution testing, faucet flows, and frontend/backend integration checks.

Production users, liquidity partners, and listing reviewers should use mainnet documentation at https://alyxai.org/api-docs.html.


1. Network Identity

2. Base URLs

3. Public Infrastructure

RPC Status Check

curl -s https://testnet.alyxai.org/rpc/status | jq '.result.node_info.network'

LCD Node Info Check

curl -s https://testnet.alyxai.org/lcd/cosmos/base/tendermint/v1beta1/node_info | jq '.default_node_info.network'

4. Keplr Testnet Onboarding

Use the dedicated testnet onboarding page to add alyxtest-4 to Keplr, connect a wallet, claim test ALYX, and test application flows.

5. Faucet

The testnet faucet is intended for development and testing only.

POST https://testnet.alyxai.org/api/faucet
Content-Type: application/json

{
  "address": "alyx1..."
}

6. Core Public API Routes

7. Example: Health

GET https://testnet.alyxai.org/api/health

8. Example: Network Overview

GET https://testnet.alyxai.org/api/network/overview

9. Example: DEX Pools

GET https://testnet.alyxai.org/api/dex/pools

10. Example: DEX Params

GET https://testnet.alyxai.org/api/dex/params

11. TokenFactory Metadata

GET https://testnet.alyxai.org/api/tokenfactory/metadata

12. AI Models

GET https://testnet.alyxai.org/api/ai/models

13. AI Pricing

GET https://testnet.alyxai.org/api/ai/pricing

14. AI Execution Test

Testnet AI execution can be used to validate paid execution flows before production rollout. If payment gating is enabled, the frontend should send test ALYX first and then submit the execution request with payment proof.

POST https://testnet.alyxai.org/api/ai/execute
Content-Type: application/json

{
  "model": "alyx-core-llm",
  "input": "Summarize the current ALYX testnet network, DEX, and AI layer.",
  "walletAddress": "alyx1...",
  "paymentTxHash": "TESTNET_TX_HASH",
  "paymentAmount": "25000",
  "paymentDenom": "ualyx"
}

15. Gecko-Compatible Testnet Adapter

Testnet Gecko-style routes are useful for validating pair indexing, swap events, adapter formatting, and listing-style market data payloads before production use.

GET https://testnet.alyxai.org/api/gecko/pairs

16. DEX Analytics

17. Wallet and Address Testing

18. DEX Model

AMM Model: Constant product AMM (x * y = k)

Swap Fee: 0.30%

Pool Creation Fee: 100 ALYX (100000000 ualyx)

Testnet fee routing and pool configuration should be validated against live /api/dex/params before copying any values into mainnet-facing documentation.

19. Validator / Node Testing

Use this testnet for validator onboarding, node sync, RPC/LCD behavior, frontend integration, and upgrade validation before production mainnet changes.

20. Architecture Notes

21. Quick Verification Commands

curl -s https://testnet.alyxai.org/chain.json | jq .
curl -s https://testnet.alyxai.org/assetlist.json | jq .
curl -s https://testnet.alyxai.org/rpc/status | jq '.result.node_info.network'
curl -s https://testnet.alyxai.org/lcd/cosmos/base/tendermint/v1beta1/node_info | jq '.default_node_info.network'
curl -s https://testnet.alyxai.org/api/health | jq .
curl -s https://testnet.alyxai.org/api/network/overview | jq .
curl -s https://testnet.alyxai.org/api/dex/pools | jq .
curl -I https://testnet.alyxai.org/keplr
curl -I https://testnet.alyxai.org/api-docs.html

22. Mainnet Separation Rule