From dd6b11a7dddce719dd810ec81d379b4f41899f13 Mon Sep 17 00:00:00 2001 From: Lokesh Chandra Date: Fri, 10 Apr 2026 09:01:52 +0530 Subject: [PATCH] docs(express): verify address v2 Ticket: WCI-53 --- modules/express/src/typedRoutes/api/v2/verifyAddress.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/modules/express/src/typedRoutes/api/v2/verifyAddress.ts b/modules/express/src/typedRoutes/api/v2/verifyAddress.ts index 9400ddeb29..c4ced59be2 100644 --- a/modules/express/src/typedRoutes/api/v2/verifyAddress.ts +++ b/modules/express/src/typedRoutes/api/v2/verifyAddress.ts @@ -7,7 +7,7 @@ import { BitgoExpressError } from '../../schemas/error'; * @property coin - Ticker or identifier of the coin (e.g. 'btc', 'eth'). */ export const VerifyAddressV2Params = { - /** Coin ticker / chain identifier */ + /** A cryptocurrency or token ticker symbol. */ coin: t.string, }; @@ -27,11 +27,9 @@ export const VerifyAddressV2Body = { /** * Verify address for a given coin. * - * Returns whether the address is valid for the specified coin. - * For UTXO coins, an optional legacy script hash flag can be provided to allow previous script hash versions. * * @operationId express.verifycoinaddress - * @tag express + * @tag Express */ export const PostVerifyCoinAddress = httpRoute({ path: '/api/v2/{coin}/verifyaddress',