Créditos y límites de frecuencia
How many addresses can I input for 1 webhook?
How many addresses can I input for 1 webhook?
Will I be charged credits if I change the webhook URL in the Helius dashboard after creating the webhook?
Will I be charged credits if I change the webhook URL in the Helius dashboard after creating the webhook?
How many credits does it cost to receive a webhook notification?
How many credits does it cost to receive a webhook notification?
How much does it cost to create, edit, and delete webhooks?
How much does it cost to create, edit, and delete webhooks?
Redes compatibles
Are webhooks available on Solana Devnet?
Are webhooks available on Solana Devnet?
Can I input 'localhost' for my webhook URL?
Can I input 'localhost' for my webhook URL?
Uso de webhooks
How can I verify that the webhook came from Helius?
How can I verify that the webhook came from Helius?
Authorization cuando envía datos al endpoint de tu webhook, lo que te permite verificar la autenticidad de la solicitud.What is the difference between 'raw' and 'enhanced' webhooks?
What is the difference between 'raw' and 'enhanced' webhooks?
When does the Webhook send a notification?
When does the Webhook send a notification?
Reintentos
How should my endpoint acknowledge a webhook event?
How should my endpoint acknowledge a webhook event?
200 en un plazo de 1 segundo para confirmar que recibió el evento correctamente. Como práctica recomendada, responde de inmediato con 200 y realiza cualquier procesamiento de forma asíncrona. Esto evita tiempos de espera agotados causados por una lógica de negocio lenta.What is the retry policy for webhooks?
What is the retry policy for webhooks?
5xx, un error 4xx (excepto 403), agota el tiempo de espera o falla debido a un error de conexión o de DNS. Realizamos hasta 3 reintentos con un intervalo de 1 segundo entre cada intento.Si todos los reintentos fallan, el evento se pierde permanentemente; no se vuelve a poner en cola ni existe un segundo ciclo de entrega.Monitorea los registros de tu webhook en el panel de Helius para identificar fallas de entrega e investigar problemas con el endpoint.También ofrecemos políticas de reintento personalizables para los planes empresariales.Is a webhook event delivered exactly once?
Is a webhook event delivered exactly once?
Do webhooks post failed transactions?
Do webhooks post failed transactions?
Desactivación automática
Why was my webhook automatically disabled?
Why was my webhook automatically disabled?
How do I re-enable a disabled webhook?
How do I re-enable a disabled webhook?
- Corrige el problema subyacente de tu endpoint.
- Inicia sesión en el panel de Helius.
- Busca el webhook desactivado y vuelve a activarlo.
{ "active": true }.Will my webhook get disabled again right after I re-enable it?
Will my webhook get disabled again right after I re-enable it?
Will I be notified when a webhook is auto-disabled?
Will I be notified when a webhook is auto-disabled?
Can I disable a webhook without deleting it?
Can I disable a webhook without deleting it?
Solución de problemas de webhooks
Why is my webhook dropping data?
Why is my webhook dropping data?
Why aren't my webhooks working?
Why aren't my webhooks working?
Why does my webhook not send me all transactions of a certain type (such as TOKEN_MINT)?
Why does my webhook not send me all transactions of a certain type (such as TOKEN_MINT)?
TOKEN_MINT solo se activa para programas específicos como Candy Machine V1 y Solana Program Library. No abarca todos los eventos de acuñación de tokens en toda la blockchain. Para lograr un monitoreo más amplio, considera usar una suscripción más general a una cuenta o programa mediante webhooks con el filtro de tipo de transacción “ANY”.