Skip to content
Closed
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 @@ -327,7 +327,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
body: RecoveryMultisigRequest,
}),
response: RecoveryMultisigResponse,
description: 'Recover a multisig transaction',
description: 'Sign a multisig recovery transaction',
}),
},
'v1.mpc.recovery': {
Expand Down Expand Up @@ -355,7 +355,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
body: IndependentKeyRequest,
}),
response: IndependentKeyResponse,
description: 'Generate an independent key',
description: 'Generate an independent keychain',
}),
},
'v1.mpc.key.initialize': {
Expand Down Expand Up @@ -392,7 +392,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
body: SignMpcRequest,
}),
response: SignMpcResponse,
description: 'Sign a MPC transaction',
description: 'Sign an MPC transaction',
}),
},

Expand Down Expand Up @@ -423,7 +423,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
200: MpcV2InitializeResponseType,
...ErrorResponses,
},
description: 'Initialize MPC for EdDSA key generation',
description: 'Initialize MPC v2 for ECDSA key generation',
}),
},
'v1.mpcv2.round': {
Expand All @@ -438,7 +438,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
200: MpcV2RoundResponseType,
...ErrorResponses,
},
description: 'Perform a round in the MPC protocol',
description: 'Perform a round in the MPC v2 DKG protocol',
}),
},
'v1.mpcv2.finalize': {
Expand All @@ -453,7 +453,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
200: MpcV2FinalizeResponseType,
...ErrorResponses,
},
description: 'Finalize the MPC protocol',
description: 'Finalize the MPC v2 DKG protocol',
}),
},
'v1.mpcv2.recovery': {
Expand All @@ -468,7 +468,7 @@ export const AdvancedWalletManagerApiSpec = apiSpec({
200: MpcV2RecoveryResponseType,
...ErrorResponses,
},
description: 'Recover a MPC transaction',
description: 'Sign an MPC v2 recovery transaction',
}),
},
});
Expand Down
2 changes: 1 addition & 1 deletion src/masterBitgoExpress/routers/accelerateRoute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const AccelerateResponse: HttpResponse = {
* Use this endpoint only with advanced wallets. For other wallet types, use [Accelerate Transaction](https://developers.bitgo.com/reference/expresswalletacceleratetx).
*
* @tag Advanced Wallets
* @operationId advancedwalletalletacceleratetx
* @operationId advancedwalletacceleratetx
*/
export const AccelerateRoute = httpRoute({
method: 'POST',
Expand Down
1 change: 1 addition & 0 deletions src/masterBitgoExpress/routers/consolidateUnspentsRoute.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,5 @@ export const ConsolidateUnspentsRoute = httpRoute({
body: ConsolidateUnspentsRequest,
}),
response: ConsolidateUnspentsResponse,
description: 'Build, sign, and send a transaction to consolidate unspents for UTXO-based assets',
});