Seal a value now and prove later that you were bound to it before the outcome wa
Seal a value now and prove later that you were bound to it before the outcome was known. Use it for sealed bids, commit-reveal games, or any promise a counterparty must be able to check afterwards. Send only a SHA-256 — we never see the value. Nothing is stored: the signed commitment is handed back and is the only copy, so there is no database of sealed values to leak. Verify with soren.com/oracle-key.json
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://soren.com/v1/commit
| Category | Everything else |
|---|---|
| Provider host | soren.com |
| Networks | base, eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
"note": "sealed bid, lot 14"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"hash": {
"description": "SHA-256 of the value you are sealing, 64 lowercase hex. Hash it yourself.",
"examples": [
"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"
],
"type": "string"
},
"note": {
"description": "Up to 200 characters, bound into the signature.",
"examples": [
"sealed bid, lot 14"
],
"type": "string"
}
},
"required": [
"hash"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
}
}
}