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',