ShufflingProcess
Processes a shuffling by revealing the shuffled data to the next participant.
Request
POST /nxt?requestType=shufflingProcess
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
shufflingFullHash | string | Shuffling transaction full hash | Yes |
recipientSecretPhrase | string | Recipient's secret passphrase | Yes |
recipientPublicKey | string | Recipient's public key | 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=shufflingProcess" \
-d "shufflingFullHash=abc123..." \
-d "recipientSecretPhrase=recipient_phrase" \
-d "recipientPublicKey=recipient_pubkey" \
-d "secretPhrase=your_secret_passphrase"