DocsAPI reference
POST /commit
Base URL: https://vrf-core-production.up.railway.app/
What it does
Computes:
commitment = sha256(seed)This is a generic commitment helper used by the core API endpoints.
For the on-chain contract flow, the commitment is:
commitment = sha256(seed || salt)Request body
{
"seed": "<hex>"
}Response
{
"commitment": "<hex>"
}