From 61b745e226abb5343b7bb03f79bf40da0918e108 Mon Sep 17 00:00:00 2001 From: Dereck Tu Date: Tue, 9 Jun 2026 17:58:24 -0400 Subject: [PATCH] docs: refine sendMany endpoint description Clarify the SendManyRoute description to better reflect that the endpoint sends a transaction to one or more recipients. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/masterBitgoExpress/routers/sendManyRoute.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/masterBitgoExpress/routers/sendManyRoute.ts b/src/masterBitgoExpress/routers/sendManyRoute.ts index a7f61990..cea251f1 100644 --- a/src/masterBitgoExpress/routers/sendManyRoute.ts +++ b/src/masterBitgoExpress/routers/sendManyRoute.ts @@ -234,5 +234,5 @@ export const SendManyRoute = httpRoute({ body: SendManyRequest, }), response: SendManyResponse, - description: 'Send many transactions', + description: 'Send a transaction to one or more recipients', });