rpc_methods - Hydration RPC Method
List available RPC methods on Hydration.
Returns a list of all RPC methods available on Hydration.
Use Cases
- API discovery - List all available methods
- Compatibility checking - Verify method availability for single-sided liquidity provision, cross-chain trading (SOL, KSM, tBTC), and HOLLAR decentralized stablecoin
- Documentation - Auto-generate method lists
Request Parameters
This method accepts no parameters.
Response Body
Code Examples
curl https://api-hydradx.dwellir.com/YOUR_API_KEY \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "rpc_methods",
"params": [],
"id": 1
}'import { ApiPromise, WsProvider } from '@polkadot/api';
const provider = new WsProvider('wss://api-hydradx.dwellir.com/YOUR_API_KEY');
const api = await ApiPromise.create({ provider });
const methods = await api.rpc.rpc.methods();
console.log('Available methods:', methods.methods.length);
await api.disconnect();Related Methods
state_getMetadata- Get runtime metadata
beefy_getFinalizedHead - Hydration RPC Method
Get BEEFY finalized block hash on Hydration. Bridge-optimized finality for cross-chain communication.
Hyperliquid - High-Performance Trading Infrastructure
Complete guide to Hyperliquid integration with Dwellir. Access HyperEVM JSON-RPC endpoints and L1 gRPC streaming for order books and trading data.