Get claim status
Relayer API
Burn Status
Poll the status of a submitted burn request. The wire path is /v1/claims/ (legacy).
Get claim status
The SDK polls this endpoint automatically with a 3-second interval and a 120-second timeout. You only need to call it directly if building a custom integration.
The wire path retains the legacy
/v1/claims/{request_id} segment. In SDK code you call it via the relayer client’s pollClaimStatus method (or its pollBurnStatus alias when plugged into a burner factory’s relayer dep).Polling recommendations
- Poll every 3 seconds (the SDK default).
- Stop polling when status reaches a terminal state:
completed,failed, ortimed_out. - Maximum recommended polling duration: 120 seconds.
- If status is
timed_out, the MPC callback was not received within the expected block window — the callback may still arrive later. Verify the nullifier on-chain before re-submitting. - If
failure_reasoncontainsNullifierAlreadyBurnt, treat the request as idempotent success — the SDK’s burner factory does this automatically.
Burn lifecycle
A burn request progresses through these statuses in order:received— accepted by the relayer API.validating— preflight checks running (Merkle root, nullifiers, account state).offsets_reserved— nullifier offsets reserved for deduplication.building_tx— transactions being constructed.tx_built— transactions ready.submitting— sending to Solana.submitted— confirmed on-chain.awaiting_callback— waiting for Arcium MPC callback.callback_received— MPC callback detected.finalizing— running cleanup transactions.completed— burn successful.failed— error occurred (seefailure_reasonfield).timed_out— MPC callback deadline exceeded.
Path Parameters
UUID returned from POST /v1/claims.
Response
Claim status
Available options:
received, validating, offsets_reserved, building_tx, tx_built, submitting, submitted, awaiting_callback, callback_received, finalizing, completed, failed, timed_out Available options:
encrypted_balance, public_balance Specific on-chain instruction variant selected by preflight validator.
Solana transaction signature of the claim instruction.
Solana transaction signature of the Arcium MPC callback.
Base58-encoded computation account address.
Error message if status is failed.