diff --git a/content/docs/en/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx b/content/docs/en/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
index 73c77e858..29e32794e 100644
--- a/content/docs/en/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
+++ b/content/docs/en/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
@@ -5,6 +5,10 @@ description: Queues an on-demand evaluation job for a specific block
full: true
---
+Use this endpoint to replay a single block (historical) against an existing chainhook so you can debug delivery issues, re-run missed events, or backfill data after a filter change. Provide either a `block_height` or `index_block_hash` to pinpoint the block you evaluate.
+
+The evaluation job returns `204 No Content`; if your filters match, the webhook payload is delivered to the hook's configured action just like a live event.
+
\ No newline at end of file
+/>
diff --git a/content/docs/en/tools/chainhooks/(chainhook-sdk)/evaluate.mdx b/content/docs/en/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
index 4a3ced2db..865a559cd 100644
--- a/content/docs/en/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
+++ b/content/docs/en/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
@@ -1,9 +1,9 @@
---
-title: Evaluate a specific block
-description: Run your chainhooks against specific blocks for testing, debugging, and historical indexing.
+title: Replay a block
+description: Replay any block height or hash against a chainhook to debug, backfill, or re-process historical events.
---
-The evaluate endpoint replays a single block against one of your registered chainhooks so you can validate filters without waiting for live traffic.
+The evaluate endpoint replays any single block you choose—live or historical—against one of your registered chainhooks so you can validate filters without waiting for live traffic. Provide either a block height or block hash to target the exact block you care about.
Use it to reproduce missed deliveries, inspect payload schemas after filter changes, or test webhook infrastructure with known blocks before enabling a hook in production.
@@ -56,13 +56,13 @@ Returns HTTP `204 No Content`. If filters match, webhook payload is sent to your
| Use Case | Description | Example |
|----------|-------------|---------|
-| **Debug** | Investigate missed events | Evaluate specific block that should have triggered |
-| **Backfill** | Index historical data | Process past blocks after creating chainhook |
-| **Re-process** | Fix webhook handler issues | Re-evaluate after fixing bugs |
+| **Debug** | Investigate missed events | Replay a block height that should have triggered |
+| **Backfill** | Index historical data | Process older blocks created before the hook existed |
+| **Re-process** | Fix webhook handler issues | Re-evaluate a block after patching infrastructure |
## Next steps
:::next-steps
-- [Register & Enable](/tools/chainhooks/create): Create chainhooks to evaluate
- [Filter Reference](/tools/chainhooks/reference/filters): Configure which events to match
+- [Evaluate endpoint](/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook): Replay past blocks through the API
:::
diff --git a/content/docs/en/tools/chainhooks/(chainhook-sdk)/introduction.mdx b/content/docs/en/tools/chainhooks/(chainhook-sdk)/introduction.mdx
index cdcb585c1..3f56002db 100644
--- a/content/docs/en/tools/chainhooks/(chainhook-sdk)/introduction.mdx
+++ b/content/docs/en/tools/chainhooks/(chainhook-sdk)/introduction.mdx
@@ -124,7 +124,7 @@ The SDK provides the following methods:
|--------|-------------|
| `registerChainhook()` | Create a new chainhook |
| `getChainhooks()` | List all your chainhooks (with pagination) |
-| `getChainhook()` | Get a specific chainhook by UUID |
+| `getChainhook()` | Get a chainhook by UUID |
| `updateChainhook()` | Update an existing chainhook |
| `deleteChainhook()` | Delete a chainhook |
diff --git a/content/docs/en/tools/chainhooks/(chainhook-sdk)/secrets.mdx b/content/docs/en/tools/chainhooks/(chainhook-sdk)/secrets.mdx
index 042f26dfc..0fd554c02 100644
--- a/content/docs/en/tools/chainhooks/(chainhook-sdk)/secrets.mdx
+++ b/content/docs/en/tools/chainhooks/(chainhook-sdk)/secrets.mdx
@@ -26,7 +26,7 @@ When you create a secret, our Chainhooks service attaches an `Authorization: Bea
### Create/rotate consumer secret
-```ts -nc server.ts
+```ts server.ts -nc
import { ChainhooksClient, CHAINHOOKS_BASE_URL } from '@hirosystems/chainhooks-client';
const client = new ChainhooksClient({
@@ -40,11 +40,7 @@ const secret = await client.rotateConsumerSecret(chainhookUuid).secret;
### Example Fastify server
-```ts -nc -n
-import Fastify from 'fastify';
-
-const server = Fastify();
-
+```ts server.ts -n
server.post('/webhook', async (request, reply) => {
if (!secret) {
reply.code(503).send({ error: 'consumer secret unavailable' });
diff --git a/content/docs/es/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx b/content/docs/es/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
index 9d44c880c..8b478ca5e 100644
--- a/content/docs/es/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
+++ b/content/docs/es/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx
@@ -4,4 +4,8 @@ sidebarTitle: Evaluar un bloque específico
description: Pone en cola un trabajo de evaluación bajo demanda para un bloque específico
full: true
---
+Use este endpoint para reproducir un solo bloque (histórico) contra un chainhook existente para que puedas depurar problemas de entrega, volver a ejecutar eventos perdidos, o rellenar datos después de un cambio de filtro. Proporciona ya sea un `block_height` o `index_block_hash` para identificar el bloque que evalúas.
+
+El trabajo de evaluación devuelve `204 No Content`; si tus filtros coinciden, la carga útil del webhook se entrega a la acción configurada del gancho igual que un evento en vivo.
+
diff --git a/content/docs/es/apis/chainhooks-api/reference/chainhooks/get-chainhook.mdx b/content/docs/es/apis/chainhooks-api/reference/chainhooks/get-chainhook.mdx
index 4c2e4fd93..3fdda6b33 100644
--- a/content/docs/es/apis/chainhooks-api/reference/chainhooks/get-chainhook.mdx
+++ b/content/docs/es/apis/chainhooks-api/reference/chainhooks/get-chainhook.mdx
@@ -1,6 +1,6 @@
---
-title: Obtener un chainhook específico
-sidebarTitle: Obtener un chainhook específico
+title: Obtener un chainhook
+sidebarTitle: Obtener un chainhook
description: Devuelve un chainhook por su UUID
full: true
---
diff --git a/content/docs/es/apis/chainhooks-api/usage.mdx b/content/docs/es/apis/chainhooks-api/usage.mdx
index 6bdded985..25e6b82fc 100644
--- a/content/docs/es/apis/chainhooks-api/usage.mdx
+++ b/content/docs/es/apis/chainhooks-api/usage.mdx
@@ -1,19 +1,19 @@
---
title: Uso
-description: Aprende cómo autenticar, hacer solicitudes y manejar respuestas con la API de Chainhooks
+description: Aprende cómo autenticarte, hacer solicitudes y manejar respuestas con la API de Chainhooks
---
## Autenticación
-Todas las solicitudes de la API Chainhooks requieren autenticación utilizando una clave de API de Hiro.
+Todas las solicitudes de API de Chainhooks requieren autenticación usando una clave de API de Hiro.
-### Obtén tu Clave API
+### Obtén tu Clave de API
1. Visitar [platform.hiro.so](https://platform.hiro.so)
2. Inicia sesión o crea una cuenta
-3. Navegar a Claves API
-4. Genera o copia tu clave API
+3. Navegar a Claves de API
+4. Genera o copia tu clave de API
-### Usando Tu Clave de API
+### Usar Tu Clave API
Incluye tu clave de API en el `x-api-key` encabezado para todas las solicitudes:
@@ -24,12 +24,12 @@ curl https://api.testnet.hiro.so/chainhooks/v1/me/ \
**Mejores prácticas de seguridad:**
-* Almacena las claves de API en variables de entorno, nunca en el código
-* Utiliza diferentes claves para desarrollo y producción
-* Rote las claves periódicamente
+* Almacena las claves API en variables de entorno, nunca en el código
+* Usar diferentes claves para desarrollo y producción
+* Rota las claves periódicamente
* Nunca confirmes claves al control de versiones
-## URLs Base
+## URLs base
Usa la URL base apropiada para tu entorno:
@@ -38,7 +38,7 @@ Testnet: https://api.testnet.hiro.so/chainhooks/v1
Mainnet: https://api.mainnet.hiro.so/chainhooks/v1
```
-**Siempre prueba primero en testnet** antes de implementar en mainnet.
+**Siempre prueba primero en testnet** antes de implementar en la mainnet.
## Formato de Solicitud
@@ -134,7 +134,7 @@ curl https://api.testnet.hiro.so/chainhooks/v1/me/ \
-H "x-api-key: YOUR_API_KEY"
```
-### Obtener un Chainhook Específico
+### Obtener un chainhook
```bash
curl https://api.testnet.hiro.so/chainhooks/v1/me/{uuid} \
@@ -170,7 +170,7 @@ curl -X POST https://api.testnet.hiro.so/chainhooks/v1/me/{uuid}/evaluate \
### Habilitar/Deshabilitar en Lote
-Habilitar o deshabilitar múltiples filtros de coincidencia de chainhooks:
+Habilitar o deshabilitar múltiples chainhooks que coincidan con filtros:
```bash
curl -X PATCH https://api.testnet.hiro.so/chainhooks/v1/me/enabled \
@@ -192,7 +192,7 @@ La API de Chainhooks aplica límites de velocidad basados en tu nivel de suscrip
* Nivel Pro: 1000 solicitudes por minuto
* Empresa: Límites personalizados
-Cuando esté limitado por velocidad, recibirá un `429 Too Many Requests` respuesta. Implemente el retroceso exponencial en su aplicación:
+Cuando esté limitado por la tasa, recibirá un `429 Too Many Requests` respuesta. Implementa retroceso exponencial en tu aplicación:
```javascript
async function makeRequestWithRetry(url, options, maxRetries = 3) {
@@ -216,7 +216,7 @@ async function makeRequestWithRetry(url, options, maxRetries = 3) {
### Secreto del Consumidor
-Cuando registras un chainhook, las cargas útiles del webhook incluyen un `x-chainhook-consumer-secret` header. Valida este secreto en tu punto final de webhook:
+Cuando registras un chainhook, las cargas útiles del webhook incluyen un `x-chainhook-consumer-secret` header. Valida este secreto en tu endpoint de webhook:
```javascript
app.post('/webhooks', (req, res) => {
@@ -245,10 +245,10 @@ Almacena el nuevo secreto de forma segura y actualiza tu endpoint de webhook.
## Mejores Prácticas
-1. **Comienza en testnet** - Siempre prueba los chainhooks en testnet antes de mainnet
-2. **Habilitar gradualmente** - Crear chainhooks deshabilitados, probar con `evaluate`, luego habilita
-3. **Manejar errores** - Implementar manejo de errores adecuado y reintentos
-4. **Validar webhooks** - Siempre verifica el encabezado del secreto del consumidor
+1. **Comenzar en testnet** - Siempre prueba los chainhooks en testnet antes de mainnet
+2. **Habilitar gradualmente** - Crear chainhooks deshabilitados, probar con `evaluate`, luego habilitar
+3. **Manejar errores** - Implementar manejo adecuado de errores y reintentos
+4. **Validar webhooks** - Siempre verificar el encabezado secreto del consumidor
5. **Use HTTPS** - Webhook URLs must use HTTPS for security
6. **Monitorear uso** - Rastrea el uso de la API para mantenerte dentro de los límites de velocidad
7. **Control de versiones** - Documenta tus configuraciones de chainhook
@@ -256,7 +256,7 @@ Almacena el nuevo secreto de forma segura y actualiza tu endpoint de webhook.
## Paginación
-Los endpoints de lista admiten paginación mediante parámetros de consulta:
+Los endpoints de lista admiten paginación a través de parámetros de consulta:
```bash
# Get first page (default: 20 results)
@@ -283,5 +283,5 @@ La respuesta incluye metadatos de paginación:
:::next-steps
* [Referencia de API](/apis/chainhooks-api): Documentación completa de endpoints
-* [Referencia de Filtro](/tools/chainhooks/reference/filters): Sintaxis de filtro de eventos
+* [Referencia de filtros](/tools/chainhooks/reference/filters): Sintaxis de filtro de eventos
:::
diff --git a/content/docs/es/apis/platform-api/reference/chainhooks/get.mdx b/content/docs/es/apis/platform-api/reference/chainhooks/get.mdx
index 0fc987ba2..c121b6cba 100644
--- a/content/docs/es/apis/platform-api/reference/chainhooks/get.mdx
+++ b/content/docs/es/apis/platform-api/reference/chainhooks/get.mdx
@@ -1,7 +1,7 @@
---
-title: Obtener un chainhook específico
+title: Obtener un chainhook
sidebarTitle: Obtener
-description: Obtén un chainhook específico a través de la Plataforma Hiro.
+description: Obtén un chainhook a través de la Plataforma Hiro.
full: true
---
diff --git a/content/docs/es/tools/chainhooks/(chainhook-sdk)/evaluate.mdx b/content/docs/es/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
index 5a04a5f30..8b5db6275 100644
--- a/content/docs/es/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
+++ b/content/docs/es/tools/chainhooks/(chainhook-sdk)/evaluate.mdx
@@ -1,10 +1,10 @@
---
-title: Evaluar un bloque específico
-description: Ejecuta tus chainhooks contra bloques específicos para pruebas, depuración e indexación histórica.
+title: Reproducir un bloque
+description: Reproduce cualquier altura de bloque o hash contra un chainhook para depurar, rellenar o reprocesar eventos históricos.
---
-El endpoint evaluate reproduce un solo bloque contra uno de tus chainhooks registrados para que puedas validar filtros sin esperar tráfico en vivo.
+El endpoint de evaluación reproduce cualquier bloque individual que elijas—en vivo o histórico—contra uno de tus chainhooks registrados para que puedas validar filtros sin esperar tráfico en vivo. Proporciona ya sea una altura de bloque o un hash de bloque para dirigirte al bloque exacto que te interesa.
-Úsalo para reproducir entregas perdidas, inspeccionar esquemas de carga útil después de cambios de filtro, o probar infraestructura de webhooks con bloques conocidos antes de habilitar un hook en producción.
+Úsalo para reproducir entregas perdidas, inspeccionar esquemas de carga útil después de cambios en filtros, o probar la infraestructura de webhooks con bloques conocidos antes de habilitar un hook en producción.
## evaluateChainhook
@@ -12,10 +12,10 @@ El endpoint evaluate reproduce un solo bloque contra uno de tus chainhooks regis
| Method | Parameter | Example |
|--------|-----------|---------|
-| **Por altura** | `block_height` I don't see any text to translate. You've provided the rules and instructions, but the actual text content appears to be missing after "Text to translate:" - there's only a "|" symbol.
+| **Por altura** | `block_height` I notice you've provided the translation rules but the actual text to translate appears to be just a single vertical bar "|".
-Could you please provide the actual text you'd like me to translate from English to Spanish? `{ block_height: 100000 }` |
-| **Por hash** | `index_block_hash` | `{ index_block_hash: '0xa204...' }` |
+| `{ block_height: 100000 }` |
+| **Por hash** | `index_block_hash` I don't see any text provided after "Text to translate:" - only a vertical bar (|). Please provide the text you'd like me to translate from English to Spanish, and I'll follow your specified rules carefully. `{ index_block_hash: '0xa204...' }` I don't see any text to translate in your message. You've provided the rules and said "Text to translate:" followed by just a "|" character. Please provide the actual text you'd like me to translate from English to Spanish, and I'll follow all the rules you've specified.
### Ejemplo
@@ -54,14 +54,14 @@ Returns HTTP `204 No Content`. Si los filtros coinciden, la carga útil del webh
## Casos de Uso
| Caso de Uso | Descripción | Ejemplo |
-|----------|-------------|---------|
-| **Debug** | Investigar eventos perdidos | Evaluar bloque específico que debería haber activado |
-| **Rellenar** | Indexar datos históricos | Procesar bloques pasados después de crear el chainhook |
-| **Reprocesar** | Solucionar problemas del controlador de webhook | Reevaluar después de corregir errores |
+|-------------|-------------|---------|
+| **Depurar** | Investigar eventos perdidos | Reproducir una altura de bloque que debería haber activado |
+| **Rellenar** | Indexar datos históricos | Procesar bloques más antiguos creados antes de que existiera el hook |
+| **Reprocesar** | Solucionar problemas del manejador de webhook | Re-evaluar un bloque después de aplicar parches a la infraestructura |
## Próximos pasos
:::next-steps
-* [Registrar y Habilitar](/tools/chainhooks/create): Crear chainhooks para evaluar
* [Referencia de Filtros](/tools/chainhooks/reference/filters): Configurar qué eventos coincidir
+* [Evaluar endpoint](/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook): Reproducir bloques pasados a través de la API
:::
diff --git a/content/docs/es/tools/chainhooks/(chainhook-sdk)/introduction.mdx b/content/docs/es/tools/chainhooks/(chainhook-sdk)/introduction.mdx
index bb0c5c3ec..9ca53e659 100644
--- a/content/docs/es/tools/chainhooks/(chainhook-sdk)/introduction.mdx
+++ b/content/docs/es/tools/chainhooks/(chainhook-sdk)/introduction.mdx
@@ -1,10 +1,10 @@
---
title: Introducción
-description: SDK de TypeScript/JavaScript para gestionar chainhooks programáticamente
+description: SDK de TypeScript/JavaScript para gestionar chainhooks de forma programática
---
## Descripción general
-El SDK de Chainhooks (`@hirosystems/chainhooks-client`) proporciona un cliente TypeScript/JavaScript para gestionar chainhooks programáticamente.
+El SDK de Chainhooks (`@hirosystems/chainhooks-client`) proporciona un cliente de TypeScript/JavaScript para gestionar programáticamente chainhooks.
## Instalación
@@ -66,11 +66,11 @@ console.log('Chainhooks created:', chainhook.uuid);
## URLs base
-El SDK proporciona constantes específicas de la red:
+El SDK proporciona constantes específicas de red:
| Network | Constant | URL |
|---------|----------|-----|
-| Testnet | `CHAINHOOKS_BASE_URL.testnet` | https://api.testnet.hiro.so |
+| Red de prueba | `CHAINHOOKS_BASE_URL.testnet` | https://api.testnet.hiro.so |
| Red principal | `CHAINHOOKS_BASE_URL.mainnet` | https://api.mainnet.hiro.so |
```typescript -nc
@@ -91,12 +91,12 @@ const mainnetClient = new ChainhooksClient({
## Autenticación
-### Obtén tu clave API
+### Obtén tu Clave API
1. Visitar [platform.hiro.so](https://platform.hiro.so)
-2. Inicia sesión o crea una cuenta
-3. Navegar a la sección de Claves API
-4. Genera o copia tu clave de API
+2. Iniciar sesión o crear una cuenta
+3. Navega a la sección de Claves de API
+4. Generar o copiar tu clave API
### Configurar Cliente
@@ -110,12 +110,12 @@ const client = new ChainhooksClient({
:::callout
type: warn
-### claves API
+### Claves de API
-Nunca confirmes claves API al control de versiones. Siempre usa variables de entorno o gestión segura de secretos.
+Nunca confirmes claves API en el control de versiones. Siempre usa variables de entorno o gestión segura de secretos.
:::
-## Métodos del SDK
+## Métodos SDK
El SDK proporciona los siguientes métodos:
@@ -125,7 +125,7 @@ El SDK proporciona los siguientes métodos:
|--------|-------------|
| `registerChainhook()` | Crear un nuevo chainhook |
| `getChainhooks()` | Enumera todos tus chainhooks (con paginación) |
-| `getChainhook()` | Get a specific chainhook by UUID |
+| `getChainhook()` | Get a chainhook by UUID |
| `updateChainhook()` | Actualizar un chainhook existente |
| `deleteChainhook()` | Eliminar un chainhook |
@@ -143,11 +143,11 @@ El SDK proporciona los siguientes métodos:
| `evaluateChainhook()` | Evaluar un chainhook contra bloques pasados específicos |
| `rotateConsumerSecret()` | Rota el secreto del webhook para verificación de carga útil |
-## Soporte para TypeScript
+## Soporte de TypeScript
### Tipos Disponibles
-El SDK proporciona definiciones de tipos completas de TypeScript:
+El SDK proporciona definiciones de tipo TypeScript completas:
```typescript -nc
import type {
diff --git a/content/docs/es/tools/chainhooks/(chainhook-sdk)/secrets.mdx b/content/docs/es/tools/chainhooks/(chainhook-sdk)/secrets.mdx
index d1b33c293..5b181ac36 100644
--- a/content/docs/es/tools/chainhooks/(chainhook-sdk)/secrets.mdx
+++ b/content/docs/es/tools/chainhooks/(chainhook-sdk)/secrets.mdx
@@ -6,26 +6,26 @@ description: Rotar secretos de consumidor y validar cada entrega de Chainhooks
:::objectives
* Crear/rotar un secreto de consumidor de Chainhooks.
-* Valida las solicitudes de webhook verificando el `Authorization` cabecera.
+* Valida las solicitudes de webhook verificando la `Authorization` encabezado.
:::
-## Prerrequisitos
+## Requisitos previos
:::prerequisites
-* Clave API de Hiro
+* Clave de API de Hiro
* Node.js (el ejemplo del servidor utiliza Fastify).
:::
-## Validando solicitudes de webhook con un secreto de consumidor
+## Validación de solicitudes de webhook con un secreto del consumidor
-Cuando creas un secreto, nuestro servicio Chainhooks adjunta un `Authorization: Bearer ` encabezado a cada intento de webhook, dándote un simple intercambio de secreto compartido. Aquí te explicamos cómo empezar:
+Cuando creas un secreto, nuestro servicio Chainhooks adjunta un `Authorization: Bearer ` encabezado a cada intento de webhook, proporcionándote un simple handshake de secreto compartido. Así es como empezar:
1. Rotar el secreto con `rotateConsumerSecret` (o el `/chainhooks/{uuid}/secret` API) cada vez que necesites inicializar o crear un nuevo token.
-2. Rechazar las entregas de webhook cuyas `Authorization` el encabezado no es igual a `Bearer `.
+2. Rechazar entregas de webhook cuyas `Authorization` el encabezado no es igual `Bearer `.
-### Crear/rotar secreto de consumidor
+### Crear/rotar secreto del consumidor
-```ts -nc server.ts
+```ts server.ts -nc
import { ChainhooksClient, CHAINHOOKS_BASE_URL } from '@hirosystems/chainhooks-client';
const client = new ChainhooksClient({
@@ -37,13 +37,9 @@ const client = new ChainhooksClient({
const secret = await client.rotateConsumerSecret(chainhookUuid).secret;
```
-### Ejemplo de servidor Fastify
-
-```ts -nc -n
-import Fastify from 'fastify';
-
-const server = Fastify();
+### Servidor Fastify de ejemplo
+```ts server.ts -n
server.post('/webhook', async (request, reply) => {
if (!secret) {
reply.code(503).send({ error: 'consumer secret unavailable' });
diff --git a/idioma.lock b/idioma.lock
index 39656419e..39b4aff84 100644
--- a/idioma.lock
+++ b/idioma.lock
@@ -857,7 +857,7 @@ files:
translations:
es: true
content/docs/en/apis/platform-api/reference/chainhooks/get.mdx:
- content: 856b22bbfcebaf8cd7cfd44f9bca8d5b
+ content: d2dfda2e3ed1030df9b2414ea1a1471b
translations:
es: true
content/docs/en/apis/platform-api/reference/chainhooks/delete.mdx:
@@ -1177,7 +1177,7 @@ files:
translations:
es: true
content/docs/en/apis/chainhooks-api/usage.mdx:
- content: 7d6b019d37f184f0dc9cdd5a56576bcd
+ content: bc52f83432e52c060f3bc13f8afd52e9
translations:
es: true
content/docs/en/apis/chainhooks-api/index.mdx:
@@ -1237,11 +1237,11 @@ files:
translations:
es: true
content/docs/en/tools/chainhooks/(chainhook-sdk)/introduction.mdx:
- content: 6fd296ea8ef3989d915b37465c47f9e4
+ content: 76cde32cf1b0043b88a4d35e55689dc6
translations:
es: true
content/docs/en/tools/chainhooks/(chainhook-sdk)/evaluate.mdx:
- content: 4e8763e800f7fe0322a15f3c549255e0
+ content: a21b280a0d0104f1b4ad5925d63a00dd
translations:
es: true
content/docs/en/tools/chainhooks/(chainhook-sdk)/edit-update.mdx:
@@ -1289,11 +1289,11 @@ files:
translations:
es: true
content/docs/en/apis/chainhooks-api/reference/chainhooks/get-chainhook.mdx:
- content: 705e66075357bceecdfda43610ff24fc
+ content: a941597d4a4511c66aa8afbdbc003224
translations:
es: true
content/docs/en/apis/chainhooks-api/reference/chainhooks/evaluate-chainhook.mdx:
- content: 49e2de023b9933082fec7968c7afbd8e
+ content: bbe30db300d006e47e8e597394179208
translations:
es: true
content/docs/en/apis/chainhooks-api/reference/chainhooks/delete-chainhook.mdx:
@@ -1317,7 +1317,7 @@ files:
translations:
es: true
content/docs/en/tools/chainhooks/(chainhook-sdk)/secrets.mdx:
- content: c6ecc8fc0f88adea91073a9b00e2014a
+ content: f62a2ccb038ddb3f174290c06adc719d
translations:
es: true
content/docs/en/apis/chainhooks-api/reference/secrets/get-secret.mdx:
diff --git a/scripts/fetch-openapi-specs.mts b/scripts/fetch-openapi-specs.mts
index 18de18227..e42e8db6d 100644
--- a/scripts/fetch-openapi-specs.mts
+++ b/scripts/fetch-openapi-specs.mts
@@ -699,8 +699,8 @@ async function generatePlatformApiSpec(): Promise {
},
'/v1/ext/{apiKey}/chainhooks/{chainhookUuid}': {
get: {
- summary: 'Get a specific chainhook',
- description: 'Get a specific chainhook through the Hiro Platform',
+ summary: 'Get a chainhook',
+ description: 'Get a chainhook through the Hiro Platform',
operationId: 'retrieveChainhook',
tags: ['Chainhooks'],
parameters: [