Entangled State — Submit Transaction
Submit a transaction to the entangled state. Transactions are equation-signed (Zeq Auth) and carry optional physics computation data.
| Endpoint | POST /api/chain/tx/submit |
| Auth | api-key |
| Rate limit | 30/min |
| Category | audit-chain |
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
sender | string | Yes | Sender ZID. |
receiver | string | Yes | Receiver ZID. |
data | object | Yes | Transaction payload. |
signature | string | Yes | Equation-derived signature. |
Returns
{ txId, zeqondStamp, pendingInCycle, estimatedConfirmation }
Example
curl -sS -X POST \
-H "Authorization: Bearer zsm_..." \
-H "Content-Type: application/json" \
-d '{
"sender": "<sender>",
"receiver": "<receiver>",
"data": {},
"signature": "<signature>"
}' \
"https://zeqsdk.com/api/chain/tx/submit"
This protocol is a named building block — one of the operations you
compose inside a state contract. Call it directly with
the request above, or invoke it from a contract that fires on your machine's
clock. Browse the whole library at GET /api/protocols; fetch this one at
GET /api/protocols/chain-submit.