Docs
Supported ChainsManta PacificJSON-RPC APINetwork Methods

web3_clientVersion - Manta RPC Method

Get client version on Manta Pacific. Essential for debugging.

Returns the current client version on Manta Pacific.

Request Parameters

Request

This method accepts no parameters.

Response Body

Response
resultString

Client version string

Code Examples

Bash
curl -X POST https://api-manta-pacific-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-manta-pacific-archive.n.dwellir.com/YOUR_API_KEY');

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

On this page