@lit-protocol/bls-sdk
v6.11.0
Published
Read more about it here
Downloads
54,943
Keywords
Readme
BLS-SDK
Read more about it here
https://github.com/LIT-Protocol/threshold_crypto_ui
Installation
yarn add @lit-protocol/bls-sdk
Usage
import { initWasmBlsSdk } from '@lit-protocol/bls-sdk';
initWasmBlsSdk().then((exports) => {
globalThis.wasmExports = exports;
log(
`✅ [BLS SDK] wasmExports loaded. ${
Object.keys(exports).length
} functions available. Run 'wasmExports' in the console to see them.`
);
});
Then
// set decryption shares bytes in wasm
decryptionShares.forEach((s: any, idx: any) => {
wasmExports.set_share_indexes(idx, s.shareIndex);
const shareAsBytes = uint8arrayFromString(s.decryptionShare, 'base16');
for (let i = 0; i < shareAsBytes.length; i++) {
wasmExports.set_decryption_shares_byte(i, idx, shareAsBytes[i]);
}
});