@Wilfred
Yes, based on my initial question, I’ve already obtained Key Share #1 in the format:
{ "bfc51292-xxxx": { "chaincode": "xxxxx", "shares": [ { "cosigner": "x-xxxx", "MPC_CMP_ECDSA_SECP256K1": "xxxxx" } ] } }
However, when trying to use the exportFullKeys method from the Fireblocks NCW Web SDK, I’m not sure how to properly input Key Share #1 into this function. I haven’t found any documentation describing what should be provided in the cloudKeyShares map parameter.
exportFullKeys(chaincode: string, cloudKeyShares: Map<string, string[]>): Promise<IFullKey[]>
Specifically, I need guidance on how to structure the cloudKeyShares map. How should I transform the Key Share #1 data structure I received into the map format required by the exportFullKeys method? The function seems to expect a specific mapping structure, but there’s no documentation explaining how to format the key-value pairs in this map.