curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "45",
"method": "isBlockhashValid",
"params": [
"AEJu9DSSSLggXFxpUYximTRt2iPh7snY74aEZDLydF7D",
{
"commitment": "processed"
}
]
}
'{
"jsonrpc": "2.0",
"id": "45",
"result": {
"context": {
"slot": 2483
},
"value": false
}
}curl --request POST \
--url 'https://rpc-mainnet.solanatracker.io/?api_key=' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"id": "45",
"method": "isBlockhashValid",
"params": [
"AEJu9DSSSLggXFxpUYximTRt2iPh7snY74aEZDLydF7D",
{
"commitment": "processed"
}
]
}
'{
"jsonrpc": "2.0",
"id": "45",
"result": {
"context": {
"slot": 2483
},
"value": false
}
}The JSON-RPC protocol version.
2.0 "2.0"
A unique identifier for the request.
"45"
The name of the RPC method to invoke.
isBlockhashValid "isBlockhashValid"
Parameters for evaluating blockhash validity.
Blockhash to check validity status for, as a base-58 encoded string.
"AEJu9DSSSLggXFxpUYximTRt2iPh7snY74aEZDLydF7D"
Was this page helpful?