Get active seeds
Returns the active seed pair's server hash, client seed, nonce, and the upcoming pair's server hash. If no seed pairs exist yet, creates the initial active and upcoming pairs.
Body·
required
application/json
Responses
- application/json
- application/json
Request Example for post/seed/current
curl https://rgs.jackpot.studio/seed/current \
--request POST \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
--data '{}'
{
"$schema": "https://example.com/schemas/SeedCurrentOutputBody.json",
"clientSeed": "string",
"nonce": 0,
"serverHash": "string",
"upcomingServerHash": "string"
}