REAL WORLD.
ON CHAIN.
ECDSA-signed commodity and digital asset feeds on BOT Testnet — energy, metals, FX, indices, equities, and crypto. Read via CommodityConsumer or the live REST API.
Live on-chain feeds
Read straight from BOT Testnet. Every value comes from Lumora (CommodityOracle on-chain) — ECDSA-signed, 18 decimals, freshness-checked through the consumer. No middleware, no API key.
Natural Gas
Crude Oil
Brent Oil
Gold
Silver
Copper
S&P 500 ETF Trust SPDR
QQQ Trust Invesco

An oracle built for
real-world truth
Lumora publishes ECDSA-signed commodity and market prices on BOT Testnet (chain 968). Energy, metals, FX, indices, crypto ETFs, and equities — 106 feeds, normalized to 18 decimals.
Read via the Lumora contracts (CommodityOracle) or the staleness-checked CommodityConsumer. Chainlink-compatible PriceFeed wrappers for DeFi. Same numbers on-chain and over the free REST feed API.
Three ways to consume
On-chain reads are free: REST feed API, CommodityConsumer, or a PriceFeed wrapper. Operators pay gas in BOT to publish signed updates.
The Hermes of Lumora. Read feeds over plain HTTP. No wallet, no key.
Read directly from BOT Testnet — off-chain via RPC or on-chain from CommodityConsumer.
Publish signed updates as the Lumora signer. Bulk updates supported.
Build on Lumora.
Connect to BOT Testnet, read signed commodity and digital asset prices on-chain, and publish updates as the authorized Lumora signer.
Add BOT Testnet to your wallet: chain id 968, RPC https://rpc.bohr.life, native token BOT.
Point at CommodityConsumer. Call getPrice(assetId) or tryGetPrice for soft reads with heartbeat checks.
Deploy a PriceFeed per asset for AggregatorV3-compatible DeFi integrations on BOT Testnet.
As the authorized signer, submit ECDSA-signed updateCommodityPrice / bulk updates to CommodityOracle.
// BOT Testnet · CommodityConsumer
bytes32 assetId = keccak256("WTI-USD");
(uint id, uint price, uint ts) =
consumer.getPrice(assetId);
// price is 18 decimals USDThe full Lumora operator path — wallet, consumer reads, and signed updates — is documented step by step.