GetShufflers
Retrieves shufflers (accounts running shuffling processing) for a specific account or shuffling.
Request
GET /nxt?requestType=getShufflers
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
account | string | Account ID or SHAMWARI address | No |
shufflingFullHash | string | Shuffling transaction full hash | No |
secretPhrase | string | Secret phrase for authentication | No |
includeParticipantState | boolean | Include participant state | No |
Response
{
"shufflers": [
{
"account": "1234567890123456789",
"accountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"shufflingFullHash": "abc123...",
"feeRateQNTPerFXT": 100000,
"recipientAccount": "9876543210123456789",
"recipientAccountRS": "SHAMWARI-WXYZ-ABCD-EFGH-IJKLM",
"lastBlockHeight": 123456
}
],
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getShufflers&account=SHAMWARI-ABCD-EFGH-IJKL-MNOPQ"