@holo-host/holo-key-manager-js-client
v0.0.7
Published
A JavaScript client API for managing Holo keys
Downloads
14
Readme
Holo Key Manager JS Client
This JavaScript client library facilitates interactions with the Holo Key Manager, streamlining user signup processes and other key management functionalities. For full functionality, ensure the Holo Key Manager browser extension is installed.
Prerequisites
Before using this library, install the Holo Key Manager extension for your browser:
- Chrome: Install from Chrome Web Store
- Edge: Install from Microsoft Edge Add-ons
- Mozilla: Install from Firefox Browser Add-ons
Installation
To install the Holo Key Manager JS Client, you can use npm, yarn, or pnpm as follows:
Using npm:
npm install @holo-host/holo-key-manager-js-client
Using yarn:
yarn add @holo-host/holo-key-manager-js-client
Using pnpm:
pnpm add @holo-host/holo-key-manager-js-client
Usage
To use the library, import and initialize the Holo Key Manager JS Client with your application's details. Then, use the signUp
method to initiate the signup process.
Basic Setup
import createHoloKeyManager from '@holo-host/holo-key-manager-js-client';
const holoKeyManagerConfig = {
happId: 'your-happId',
happName: 'your-happName',
happLogo: 'https://example.com/happLogo.png',
happUiUrl: 'https://example.com/ui',
requireRegistrationCode: true,
requireRegistrationCode: true
};
const initiateSignUp = async () => {
const { signUp } = createHoloKeyManager(holoKeyManagerConfig);
try {
const { email, registrationCode, pubKey } = await signUp();
console.log(
'SignUp successful. Email:',
email,
'Registration Code:',
registrationCode,
'Public Key:',
pubKey
);
} catch (error) {
handleError(error);
}
};
const initiateSignIn = async () => {
const { signIn } = createHoloKeyManager(holoKeyManagerConfig);
try {
const { pubKey } = await signIn();
console.log('SignIn successful. Public Key:', pubKey);
} catch (error) {
handleError(error);
}
};
const initiateSignOut = async () => {
const { signOut } = createHoloKeyManager(holoKeyManagerConfig);
try {
await signOut();
console.log('SignOut successful');
} catch (error) {
handleError(error);
}
};
const initiateSignMessage = async (message: Uint8Array) => {
const { signMessage } = createHoloKeyManager(holoKeyManagerConfig);
try {
const signedMessage = await signMessage(message);
console.log('Message signed successfully:', signedMessage);
} catch (error) {
handleError(error);
}
};
Error Handling
const handleError = (error) => {
const errorMessage = getGenericErrorMessage(error);
console.error(errorMessage);
};
const getGenericErrorMessage = (error) => {
const errorMessages = {
'not installed': 'Install the Holo Key Manager extension in Chrome/Edge to proceed.',
NeedsSetup:
'Instruct the user to set up the extension, grant necessary permissions, and then reload the page.',
NoKeyForHapp: 'No existing key found for this happ; initiate the signup flow.',
AppNotAuthenticated: 'App is not authenticated. Please sign in.',
ExtensionNotAuthenticated: 'Extension is not authenticated. Please sign in to extension.'
};
return (
Object.entries(errorMessages).find(([key, message]) => error.message.includes(key))?.[1] ||
'An unknown error occurred.'
);
};
API reference
class HoloKeyManagerExtensionClient {
constructor({happId: string, happName: String, happLogo: Url, happUiUrl: Url, requireRegistrationCode: boolean, requireEmail:boolean})
async signIn(): Promise<pubKey: Uint8Array> {} // throws errors
async signUp(): Promise<{ email?: string, registration_code?: string, pubkey: Uint8Array }> {} // returns Promise of email and registration code if required in constructor, throws errors
async logOut() {} // throws errors
async signMessage(payload: Uint8Array): Promise<Uint8Array> {} // returns Promise of signature, throws errors
on('authorized', (Uint8Array, boolean) => void): UnsubscribeFunction {}
on('rejected', () => void): UnsubscribeFunction {}
}
type UnsubscribeFunction = () => void;