Skip to main content

Parameters

chainId
string
default:"737373"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"eth_submitWork"
required
JSON-RPC method name.
params
object
required
Parameters for eth_submitWork: [nonce, powHash, mixHash].Positional parameters for eth_submitWork:
  • params[0]: 8 Bytes - The nonce found (64 bits).
  • params[1]: 32 Bytes - The header’s pow-hash (256 bits)
  • params[2]: Data - 32 Bytes - The mix digest (256 bits).

Returns

result
boolean
Boolean - returns true if the provided solution is valid, otherwise false. Example: true.