Lectura rápida
Empieza por la explicación más corta y útil antes de profundizar.
A stateless, lightweight remote procedure call protocol using JSON encoding. Clients send a JSON object with method name, params, and id; servers respond with result or error. Solana and Ethereum both expose JSON-RPC APIs for blockchain interaction. Example: {method: 'getBalance', params: ['pubkey...'], id: 1}. WebSocket variants support pub/sub for real-time updates.