-
Notifications
You must be signed in to change notification settings - Fork 0
fix(mbe): fix validation params for recovery #95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,41 +53,57 @@ interface EnclavedRecoveryParams { | |
| walletContractAddress: string; | ||
| } | ||
|
|
||
| function validateRecoveryParams(sdkCoin: BaseCoin, params?: CoinSpecificParams) { | ||
| function validateRecoveryParams( | ||
| sdkCoin: BaseCoin, | ||
| params?: CoinSpecificParams, | ||
| isMpcRecovery = false, | ||
| ) { | ||
| if (!params) { | ||
| return; | ||
| } | ||
|
|
||
| if (isUtxoCoin(sdkCoin)) { | ||
| // UTXO coins need utxoRecoveryOptions for standard recovery | ||
| if (!isMpcRecovery && !params.utxoRecoveryOptions) { | ||
| throw new ValidationError('UTXO recovery options are required for UTXO coin recovery'); | ||
| } | ||
| return; | ||
| } | ||
|
|
||
| if (isEddsaCoin(sdkCoin)) { | ||
| if (params.evmRecoveryOptions || params.utxoRecoveryOptions) { | ||
| throw new ValidationError('Invalid parameters provided for Solana coin recovery'); | ||
| // EdDSA coins (like Solana) need solanaRecoveryOptions for standard recovery | ||
| if (!params.solanaRecoveryOptions) { | ||
| throw new ValidationError('Solana recovery options are required for EdDSA coin recovery'); | ||
| } | ||
| } else if (isEcdsaCoin(sdkCoin)) { | ||
| return; | ||
| } | ||
|
Comment on lines
+75
to
+79
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think this is correct, you can broadcast a sol recovery transaction without a durable nonce. |
||
|
|
||
| if (isEcdsaCoin(sdkCoin) && isMpcRecovery) { | ||
| if (isEthLikeCoin(sdkCoin)) { | ||
| if (!params.ecdsaEthLikeRecoverySpecificParams) { | ||
| throw new ValidationError('Invalid parameters provided for ETH-like MPC V2 coin recovery'); | ||
| throw new ValidationError( | ||
| 'ECDSA ETH-like recovery specific parameters are required for MPC recovery', | ||
| ); | ||
| } | ||
| } else if (isCosmosLikeCoin(sdkCoin)) { | ||
| // ECDSA Cosmos-like MPC recovery needs ecdsaCosmosLikeRecoverySpecificParams | ||
| if (!params.ecdsaCosmosLikeRecoverySpecificParams) { | ||
| throw new ValidationError( | ||
| 'Invalid parameters provided for Cosmos-like MPC V2 coin recovery', | ||
| 'ECDSA Cosmos-like recovery specific parameters are required for MPC recovery', | ||
| ); | ||
| } | ||
| } else { | ||
| throw new NotImplementedError( | ||
| `MPC V2 recovery is not supported for coin family: ${sdkCoin.getFamily()}`, | ||
| ); | ||
| } | ||
| } else { | ||
| if (isUtxoCoin(sdkCoin)) { | ||
| if (params.solanaRecoveryOptions || params.evmRecoveryOptions) { | ||
| throw new ValidationError('Invalid parameters provided for UTXO coin recovery'); | ||
| } | ||
| } else if (isEthLikeCoin(sdkCoin)) { | ||
| if (params.solanaRecoveryOptions || params.utxoRecoveryOptions) { | ||
| throw new ValidationError('Invalid parameters provided for ETH-like coin recovery'); | ||
| } | ||
| } | ||
| if (!isMpcRecovery && isEthLikeCoin(sdkCoin)) { | ||
| // Non-ECDSA ETH-like coins need evmRecoveryOptions for standard recovery | ||
| if (!params.evmRecoveryOptions) { | ||
| throw new ValidationError('EVM recovery options are required for ETH-like coin recovery'); | ||
|
Comment on lines
+101
to
+104
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. evmRecoveryOptions this should be optional no? |
||
| } | ||
| return; | ||
| } | ||
| } | ||
|
|
||
|
|
@@ -216,7 +232,7 @@ export async function handleRecoveryWalletOnPrem( | |
|
|
||
| const sdkCoin = await coinFactory.getCoin(coin, bitgo); | ||
| // Validate that we have correct parameters for recovery | ||
| validateRecoveryParams(sdkCoin, coinSpecificParams); | ||
| validateRecoveryParams(sdkCoin, coinSpecificParams, req.decoded.isTssRecovery); | ||
|
|
||
| // Handle TSS recovery | ||
| if (req.decoded.isTssRecovery) { | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can utxo ever be mpc?