Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const AccountResourcesResponse = {
* for token transfers.
*
* @operationId express.v2.wallet.getaccountresources
* @tag express
* @tag Express
*/
export const GetAccountResources = httpRoute({
path: '/api/v2/{coin}/wallet/{id}/getaccountresources',
Expand Down
4 changes: 2 additions & 2 deletions modules/express/src/typedRoutes/api/v2/coinSign.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
* Request parameters for signing a transaction (external signer mode)
*/
export const CoinSignParams = {
/** The coin type */
/** A cryptocurrency or token ticker symbol */
coin: t.string,
} as const;

Expand Down Expand Up @@ -164,8 +164,8 @@ export const CoinSignResponse = {
* - Half-signed transaction (if more signatures needed)
* - Transaction request ID (for TSS wallets)
*
* @tag express
* @operationId express.v2.coin.sign
* @tag Express
*/
export const PostCoinSign = httpRoute({
path: '/api/v2/{coin}/sign',
Expand Down
Loading