Docs
Supported ChainsBlastJSON-RPC APINetwork Methods

web3_clientVersion - Blast RPC Method

Get client version on Blast. Essential for debugging.

Returns the current client version on Blast.

Request Parameters

Request

This method accepts no parameters.

Response Body

Response
resultString

Client version string

Code Examples

Bash
curl -X POST https://api-blast-mainnet-archive.n.dwellir.com/YOUR_API_KEY \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "method": "web3_clientVersion",
    "params": [],
    "id": 1
  }'
JavaScript
import { JsonRpcProvider } from 'ethers';

const provider = new JsonRpcProvider('https://api-blast-mainnet-archive.n.dwellir.com/YOUR_API_KEY');

const version = await provider.send('web3_clientVersion', []);
console.log('Client version:', version);

On this page