Skip to main content

Entangled State — Submit Transaction

Submit a transaction to the entangled state. Transactions are equation-signed (Zeq Auth) and carry optional physics computation data.

EndpointPOST /api/chain/tx/submit
Authapi-key
Rate limit30/min
Categoryaudit-chain

Parameters

NameTypeRequiredDescription
senderstringYesSender ZID.
receiverstringYesReceiver ZID.
dataobjectYesTransaction payload.
signaturestringYesEquation-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.