-
Notifications
You must be signed in to change notification settings - Fork 13
/
index.mjs
50 lines (46 loc) · 1.17 KB
/
index.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {fileURLToPath} from "node:url";
import {createRequire} from "node:module";
import {resolve, dirname} from "node:path";
import {prepareBindings} from "./bindings.js";
import {getBindingsPath} from "../utils/index.js";
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));
const bindingsPath = getBindingsPath(resolve(__dirname, "..", "..", ".."));
const blstTs = prepareBindings(require(bindingsPath));
export default blstTs;
const {
BLST_CONSTANTS,
CoordType,
SecretKey,
PublicKey,
Signature,
aggregatePublicKeys,
aggregateSignatures,
aggregateVerify,
asyncAggregateVerify,
asyncFastAggregateVerify,
asyncVerify,
asyncVerifyMultipleAggregateSignatures,
fastAggregateVerify,
randomBytesNonZero,
verify,
verifyMultipleAggregateSignatures,
} = blstTs;
export {
BLST_CONSTANTS,
CoordType,
SecretKey,
PublicKey,
Signature,
aggregatePublicKeys,
aggregateSignatures,
aggregateVerify,
asyncAggregateVerify,
asyncFastAggregateVerify,
asyncVerify,
asyncVerifyMultipleAggregateSignatures,
fastAggregateVerify,
randomBytesNonZero,
verify,
verifyMultipleAggregateSignatures,
};