We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b254361 commit 7fcdff0Copy full SHA for 7fcdff0
src/api/master/handlers/recoveryWallet.ts
@@ -271,6 +271,7 @@ export async function handleRecoveryWalletOnPrem(
271
gasLimit,
272
bitgoDestinationAddress: coinSpecificParams?.ecdsaEthLikeRecoverySpecificParams
273
?.bitgoDestinationAddress as string,
274
+ apiKey: coinSpecificParams?.ecdsaEthLikeRecoverySpecificParams?.apiKey
275
};
276
} else if (isCosmosLikeCoin(sdkCoin)) {
277
params.cosmosLikeParams = {
src/api/master/routers/masterApiSpec.ts
@@ -79,6 +79,7 @@ export const RecoveryParamTypes = {
79
ecdsaEthLikeRecoverySpecificParams: t.type({
80
walletContractAddress: t.string,
81
bitgoDestinationAddress: t.string,
82
+ apiKey: t.string,
83
}),
84
85
// ECDSA Cosmos-like recovery specific parameters
0 commit comments