EXODIA Chain JSON-RPC Playground

This page lets you interact with an EXODIA-compatible JSON-RPC endpoint from your browser. Enter your RPC server URL below or use the demo server if provided.
Requires a running EXODIA RPC server (see the Node.js exodia-rpc.js script example)!


Supported Methods

Example Requests

Create wallet
{"jsonrpc":"2.0","method":"exodia_createWallet","params":{},"id":2}

Get balance
{"jsonrpc":"2.0","method":"exodia_getBalance","params":["EXO123..."],"id":5}

Send tokens
{ "jsonrpc":"2.0", "method":"exodia_sendTokens", "params":[{ "from":"EXO123...", "privateKey":"0xabc...", "to":"EXO999...", "amount":5, "method":"transfer" }], "id":10 }