Skip to main content

web3_clientVersion

Ethereum API

Returns the current Core client version. This differs slightly per client. For example, the browser extension returns a string like Core/v10.33.1, while the mobile app returns a string like Core/8.1.2/Mobile.

Params

(0)

Result

(CurrentVersion)

The current client version.

string

Examples

Example version response from Core.

Request

await window.ethereum.request({
"method": "web3_clientVersion",
"params": []
});

Result

"Core/v10.33.1"

Request

await window.ethereum.request({
"method": "web3_clientVersion",
"params": []
});

Was this page helpful?