Skip to main content
Signalite actions are HyperEVM transactions. A user wallet needs native HYPE for approvals, deposits, redeems, claims, and cancels. For authenticated Partner Actions, Signalite checks gas before returning wallet signature steps. If the wallet is below the configured HYPE threshold and production gas sponsorship is enabled, Signalite sends the configured HYPE amount first. Partners should not ask users to source HYPE manually in the normal deposit flow.

Gas status

Use the versioned gas endpoint when rendering diagnostics or custom wallet flows:
Raw HTTP:

Gas top-up

The public top-up endpoint is a legacy diagnostics endpoint. Production partner integrations should rely on authenticated Partner Actions, which invoke the server-side gas sponsor internally.
Raw HTTP:
faucetEnabled=false is expected for production partner launch. Launch readiness depends on the server-side GAS_SPONSOR_* configuration used by Partner Actions, not the public faucet toggle.

Configure webhooks

Partner webhooks are authenticated with the same server-side partner API key.
The signing secret is returned only when the webhook is created or rotated.

Events

Currently emitted: Reserved lifecycle events in the API contract:
  • partner_action.failed
  • partner_action.claimable
  • partner_action.claimed
  • partner_action.cancelled

Delivery headers

Verify X-Signalite-Signature on your backend with the SDK helper:
Use the exact raw request body bytes/string. Do not parse and re-stringify the JSON before verification.

Retry behavior

Signalite records webhook deliveries and retries failed/pending deliveries through:
Partners should still support polling GET /api/v1/partner/actions/{id} because webhook delivery can be delayed or fail after maximum attempts.