Version: v0.2.0 · mainnet, generation 4.0.36 · x86_64 Linux
dexdo model-registry reads 10,957 registered models off chain. The indexer's own market list
returns 18:
$ curl -s 'https://indexer.dex.do/api/v1/inference/markets?limit=200' | jq '.markets|length'
18
gpt-oss-safeguard-20b GLM-5.3-Flash GLM-4.5 gpt-5.6-terra
gpt-oss-20b Qwen3.8-27B gpt-oss-120b nwm
Qwen3.6-27B Jamba-tiny-random qwen3.8-max
qwen--qwen3.8--27b--fp8 zai-org/GLM-4.5 xai-org--grok--4.5
openai--gpt-5.6--luna openai--gpt-5.6--sol openai--gpt-5.6--terra qwen--qwen3--32b
All 18 report status: TRADING. Six of them have ever seen a trade; total lifetime volume across
the whole exchange is ~138 trades.
The gap this leaves
markets address answers for a model with no book, and answers in exactly the same shape as for a
model that has one:
$ dexdo markets address --model gemini-3.6-flash --json
{"schema":"dexdo.markets_address.v1","network":"mainnet","requested_model":"gemini-3.6-flash",
"registry_model":"gemini-3.6-flash",
"model_hash":"0xcf27b68ecf3890286c2922bbe05c9858f24b71c8e015dedb126e9a99c573d8be",
"order_book":"0000…0004::18d24b28378d9f5452a3ee2836d309ff9e97521a7ca7cf67a042d9f1744632c0"}
The address is canonical and derivable, so the command is not wrong. But the indexer then 404s that
same book:
$ curl -s -o /dev/null -w '%{http_code}\n' \
'https://indexer.dex.do/api/v1/inference/orders?inferenceOrderBookAddress=0:18d24b28378d9f5452a3ee2836d309ff9e97521a7ca7cf67a042d9f1744632c0&limit=1'
404
There is no flag, subcommand or documented transaction that takes an operator from "registered
model + canonical address" to "book that accepts postSellOffer". dexdo markets --help is
explicit that the whole namespace is "read-only discovery", and no other verb mentions creating a
book. So a seller who is ready to serve a registered model has no action available.
Consequence for supply. We run five gateways and we are four of the five busiest books on the
exchange. We hold working API keys for models that are registered and that we could serve today —
gemini-3.6-flash, gemini-3.5-flash, gemini-3.1-flash-lite, gemini-3.5-flash-lite,
gemma-4-31b-it all return 200 for us — and none of them can be listed. Meanwhile the registry
advertises 10,957 models to anyone reading it as though they were a menu. A buyer who wants
Llama-3.3-70B-Instruct finds it registered, finds an order-book address for it, and finds nothing
behind that address.
Asks, in order of preference
- Make book creation reachable from the client — a
markets open --model <name> (or the same
thing as a side effect of the first provision against a bookless model), with the deployment
cost stated up front. Permissionless would be ideal; gated-but-documented would still unblock us.
- If book creation is intentionally curated, say so — in
markets --help and in the
markets address output. Right now nothing distinguishes a live book from a derivable address
for a book that does not exist, and that is the part which actually costs operators time.
- In the meantime, please deploy books for:
Llama-3.3-70B-Instruct, Qwen3-32B,
DeepSeek-V3, GLM-4.5-Air, gemini-3.6-flash, gemma-4-31b-it. We will list asks on each of
them; the first four are the names buyers ask for by brand, and we have supply ready for all six.
Smaller, related
markets address could carry the answer itself — a "deployed": true|false field, or a
"status" mirroring the indexer's — so a caller can tell the two cases apart in one read instead of
resolving an address and then discovering by 404 that it is not a market.
Version: v0.2.0 · mainnet, generation 4.0.36 · x86_64 Linux
dexdo model-registryreads 10,957 registered models off chain. The indexer's own market listreturns 18:
All 18 report
status: TRADING. Six of them have ever seen a trade; total lifetime volume acrossthe whole exchange is ~138 trades.
The gap this leaves
markets addressanswers for a model with no book, and answers in exactly the same shape as for amodel that has one:
The address is canonical and derivable, so the command is not wrong. But the indexer then 404s that
same book:
There is no flag, subcommand or documented transaction that takes an operator from "registered
model + canonical address" to "book that accepts
postSellOffer".dexdo markets --helpisexplicit that the whole namespace is "read-only discovery", and no other verb mentions creating a
book. So a seller who is ready to serve a registered model has no action available.
Consequence for supply. We run five gateways and we are four of the five busiest books on the
exchange. We hold working API keys for models that are registered and that we could serve today —
gemini-3.6-flash,gemini-3.5-flash,gemini-3.1-flash-lite,gemini-3.5-flash-lite,gemma-4-31b-itall return 200 for us — and none of them can be listed. Meanwhile the registryadvertises 10,957 models to anyone reading it as though they were a menu. A buyer who wants
Llama-3.3-70B-Instructfinds it registered, finds an order-book address for it, and finds nothingbehind that address.
Asks, in order of preference
markets open --model <name>(or the samething as a side effect of the first
provisionagainst a bookless model), with the deploymentcost stated up front. Permissionless would be ideal; gated-but-documented would still unblock us.
markets --helpand in themarkets addressoutput. Right now nothing distinguishes a live book from a derivable addressfor a book that does not exist, and that is the part which actually costs operators time.
Llama-3.3-70B-Instruct,Qwen3-32B,DeepSeek-V3,GLM-4.5-Air,gemini-3.6-flash,gemma-4-31b-it. We will list asks on each ofthem; the first four are the names buyers ask for by brand, and we have supply ready for all six.
Smaller, related
markets addresscould carry the answer itself — a"deployed": true|falsefield, or a"status"mirroring the indexer's — so a caller can tell the two cases apart in one read instead ofresolving an address and then discovering by 404 that it is not a market.