Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions modules/express/src/typedRoutes/api/v2/verifyAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};

Expand All @@ -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',
Expand Down
Loading