ShufflingVerify
Verifies the integrity of a shuffling by comparing the state hash.
Request
POST /nxt?requestType=shufflingVerify
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
shufflingFullHash | string | Shuffling transaction full hash | Yes |
shufflingStateHash | string | Shuffling state hash to verify | Yes |
secretPhrase | string | Sender's secret passphrase | Yes |
Response
{
"transaction": "1234567890123456789",
"fullHash": "abc123def456...",
"errorCode": 0,
"errorDescription": ""
}
Example
curl -X POST "http://localhost:22024/nxt?requestType=shufflingVerify" \
-d "shufflingFullHash=abc123..." \
-d "shufflingStateHash=statehash123..." \
-d "secretPhrase=your_secret_passphrase"