Skip to main content

Keygen

Please refer to the Session creation section to learn how to create a new session.

Full example

App.tsx
import { EcdsaSession } from '@silencelaboratories/silent-shard-sdk';

export const keygen = async (session: EcdsaSession) => {
const keyshare = await session.keygen();
console.log('Created new keyshare with public key: ', keyshare.publicKeyHex);
};
  • When session.keygen() is called, the app and the server exchange messages to generate a new MPC wallet.
  • Two new "shares" are generated: one for the client and one for the server. Both shares together form the MPC wallet.
  • keyshare is of type EDSA Keyshare or EdDSA Keyshare and represents the client's "share" of the MPC wallet.
  • The keyshare.publicKeyHex property is the public key of the MPC wallet in hex format.