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