eth_submitWork

Submit a proof-of-work solution (Ethash) consisting of a nonce, the header PoW hash, and the mix digest. Not supported on post-Merge Ethereum clients; many nodes will return JSON-RPC error -32601 (method not found).

Path parameters

apiKeystringRequired

Request

This endpoint expects an object.
noncestringRequiredformat: "^0x[0-9a-f]{16}$"

The 8-byte nonce found by the miner.

hashstringRequiredformat: "^0x[0-9a-f]{64}$"

The block header’s PoW hash (32-byte).

digeststringRequiredformat: "^0x[0-9a-f]{64}$"

The mix digest (32-byte).

Response

Returns true if the provided solution is valid, otherwise false.