22 lines
598 B
TypeScript
22 lines
598 B
TypeScript
import {join} from "path";
|
|
import {describeSpecTest} from "@chainsafe/eth2.0-spec-test-util";
|
|
import bls from "../../src";
|
|
import {BLSPubkey} from "../../src/types";
|
|
|
|
describeSpecTest(
|
|
join(__dirname, "../../../spec-test-cases/tests/bls/aggregate_sigs/aggregate_sigs.yaml"),
|
|
bls.aggregateSignatures,
|
|
({input}) => {
|
|
const pubKeys: BLSPubkey[] = [];
|
|
input.forEach((pubKey: string) => {
|
|
pubKeys.push(Buffer.from(pubKey.replace('0x', ''), 'hex'));
|
|
});
|
|
return [
|
|
pubKeys
|
|
];
|
|
},
|
|
({output}) => output,
|
|
(result) => `0x${result.toString('hex')}`,
|
|
() => false,
|
|
);
|