Returns true
if the node is writing blockchain data in parallel manner. It is enabled by default.
Supported on Klaytn (mainnet) only.
Parameters
Request
None
Result
Type | Description |
---|---|
Boolean | true means the node is writing blockchain data in parallel manner. It is false if the node is writing the data in serial manner. |
API Endpoint
The format of a Klaytn API endpoint is
https://open-platform.nodereal.io/{{apiKey}}/klaytn/
Here is an example:
https://open-platform.nodereal.io/4c0a1c23661a4e26bcbcwed461e34ea9/klaytn/
Example
// Request
curl https://open-platform.nodereal.io/{{apiKey}}/klaytn/ \
-X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"klay_isParallelDBWrite","id":1}'
// Result
{
"jsonrpc":"2.0",
"id":1,
"result":true
}