2021-08-05 11:12:36 +08:00
|
|
|
# Test format: Ethereum-customized BLS pubkey aggregation
|
2021-08-04 01:55:18 +08:00
|
|
|
|
2021-08-05 11:12:36 +08:00
|
|
|
A BLS pubkey aggregation combines a series of pubkeys into a single pubkey.
|
2021-08-04 01:55:18 +08:00
|
|
|
|
|
|
|
## Test case format
|
|
|
|
|
|
|
|
The test data is declared in a `data.yaml` file:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
input: List[BLS Pubkey] -- list of input BLS pubkeys
|
2022-09-21 01:20:20 +08:00
|
|
|
output: BLSPubkey -- expected output, single BLS pubkeys or `null`.
|
2021-08-04 01:55:18 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
- `BLS Pubkey` here is encoded as a string: hexadecimal encoding of 48 bytes (96 nibbles), prefixed with `0x`.
|
2022-09-21 01:20:20 +08:00
|
|
|
- output value is `null` if the input is invalid.
|
2021-08-04 01:55:18 +08:00
|
|
|
|
|
|
|
## Condition
|
|
|
|
|
2021-08-05 11:20:49 +08:00
|
|
|
The `eth_aggregate_pubkeys` handler should aggregate the signatures in the `input`, and the result should match the expected `output`.
|