Explore the stack
Clutch Node
Blockchain core with Aura consensus, custom RLP transactions, non-EVM design.
๐Hub API
GraphQL bridge between apps and the node, with wallet JWT auth and a testnet faucet.
๐ฆJavaScript SDK
Client-side signing, RLP encoding, and live subscriptions over WebSocket.
๐Block Explorer
Read-only chain indexer, REST API, and web UI for blocks, transactions, and accounts.
๐Demo App
Reference React app showing the passenger and driver ride flow end to end.
๐ฐCLT Economics
Driver-first payments with referrer fees and fixed validator block rewards.
How it fits together
Demo App / Your dApp + SDK โ Clutch Hub API (GraphQL / WS + faucet) โ Clutch Node (blockchain, WebSocket RPC) โ Clutch Explorer (indexer + UI)
- Build unsigned tx โ the app asks the Hub API for an unsigned transaction payload
- Sign client-side โ the user signs the hash locally (keys never sent to server)
- Submit signed tx โ the app sends signed RLP hex to the Hub, which forwards to the node
- Validate & mine โ the node verifies signature/nonce, applies state, includes in a block
See the full architecture overview and ride lifecycle.