HoodGate source
HoodGate combines a service directory, a merchant manifest builder, wallet balance reads and live Robinhood Chain observations. Choose a service to inspect current data, or configure your own service and export its OpenAPI document.
Quick start
npm install npm run dev -- --hostname 127.0.0.1 --port 8986
Client library
import { discover, readData } from './packages/client/index.mjs';
const origin = 'http://127.0.0.1:8986';
const catalog = await discover(origin + '/api/catalog');
const network = await readData(origin, 'network');Merchant builder
Set a public HTTPS origin, full payout address and unique endpoint paths. Prices accept up to six decimal places. A saved definition belongs to this browser; an exported manifest is portable.
Data sources
- Blockscout: chain activity and shared ERC-8004 identity records.
- OpenRouter: current model metadata and provider token prices.
- DEX Screener: public Robinhood Chain token pools.
- Kraken, Open-Meteo, DeFiLlama, Algolia, Wikipedia and GitHub: their respective public data APIs.
Signing boundary
Discovery, configuration and balance reads require no payment signature. Settlement adapters are separate from the public data layer. Final publication and payment controls do not send transactions in this release.
Wallet support
EIP-6963 discovery and EIP-1193 compatible browser wallets. Account and network changes refresh balances. No seed phrases, private keys or signing credentials are stored by this site.