Skip to main content

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

NameTypeDescriptionRequired
shufflingFullHashstringShuffling transaction full hashYes
recipientSecretPhrasestringRecipient's secret passphraseYes
recipientPublicKeystringRecipient's public keyYes
feeRateQNTPerFXTlongFee rate per FXTYes
secretPhrasestringSender's secret passphraseYes

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"