You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.
Currently we are exporting everything lisk-cryptography from the lisk-client package. We have to fix this export to exclude BLS related functions and sodium-native dependency.
The Lisk-Client package is intended to use in the browser and BLS and sodium native should never be used from browser. So we have to exclude the export in the lisk-client package.
Acceptance Criteria
BLS related functions signBLS, verifyBLS, createAggSig, verifyAggSig and others defined in this section should be excluded.
BLST dependency should not be injected in the lisk-client package.
Sodium-Native dependency should not be injected in the lisk-client package
The text was updated successfully, but these errors were encountered:
Description
Currently we are exporting everything
lisk-cryptography
from thelisk-client
package. We have to fix this export to exclude BLS related functions and sodium-native dependency.https://github.com/LiskHQ/lisk-sdk/blob/4dcd06ddca5248e736adb6ef88dca74c25fd05c9/elements/lisk-client/src/index.ts#L18
Motivation
The Lisk-Client package is intended to use in the browser and BLS and sodium native should never be used from browser. So we have to exclude the export in the
lisk-client
package.Acceptance Criteria
signBLS
,verifyBLS
,createAggSig
,verifyAggSig
and others defined in this section should be excluded.lisk-client
package.lisk-client
packageThe text was updated successfully, but these errors were encountered: