StartShuffler
Starts a shuffler account for a specific shuffling, enabling automatic processing.
Request
POST /nxt?requestType=startShuffler
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 |
feeRateQNTPerFXT | long | Fee rate per FXT | Yes |
secretPhrase | string | Sender's secret passphrase | Yes |
Response
{
"shuffler": {
"account": "1234567890123456789",
"shufflingFullHash": "abc123...",
"feeRateQNTPerFXT": 100000,
"recipientAccount": "9876543210123456789"
},
"errorCode": 0,
"errorDescription": ""
}
Example
curl -X POST "http://localhost:22024/nxt?requestType=startShuffler" \
-d "shufflingFullHash=abc123..." \
-d "recipientSecretPhrase=recipient_phrase" \
-d "recipientPublicKey=recipient_pubkey" \
-d "feeRateQNTPerFXT=100000" \
-d "secretPhrase=your_secret_passphrase"