This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/test/spec/aggregate_pubkeys.test.ts

22 lines
600 B
TypeScript
Raw Normal View History

2019-08-05 15:48:26 +00:00
import {join} from "path";
import {describeSpecTest} from "@chainsafe/eth2.0-spec-test-util";
import bls from "../../src";
2019-09-04 11:35:34 +00:00
import {BLSSignature} from "@chainsafe/eth2.0-types";
2019-08-05 15:48:26 +00:00
describeSpecTest(
2019-09-04 11:35:34 +00:00
join(__dirname, "../../../spec-test-cases/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,
2019-08-05 15:48:26 +00:00
);