We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor the EIP-7549 implementation to separate the unaggregated attestation from aggregated ones. Spec PRs:
Schema definitions changes:
Attestation
SingleAttestation
OnchainAttestation
BeaconBlockBody
IndexedAttestation
AttesterSlashing
Attestation processing changes:
compute_signing_attestation_data
get_onchain_attesting_indices
process_onchain_attestation
process_attestation
Gossip changes:
beacon_attestation_{subnet_id}
Beacon API changes:
/eth/v2/validator/aggregate_attestation
/eth/v2/beacon/blocks/{block_id}/attestations
/eth/v2/beacon/pool/attestations
/eth/v2/beacon/pool/attester_slashings
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Refactor the EIP-7549 implementation to separate the unaggregated attestation from aggregated ones.
Spec PRs:
Schema definitions changes:
Attestation
containers changes (remove phase0 and electra attestations)SingleAttestation
containerOnchainAttestation
containerBeaconBlockBody
to use the newOnchainAttestation
containerIndexedAttestation
container to use the newOnchainAttestation
containerAttesterSlashing
container to use the newIndexedAttestation
Attestation processing changes:
compute_signing_attestation_data
get_onchain_attesting_indices
process_onchain_attestation
which replaces the existingprocess_attestation
Gossip changes:
beacon_attestation_{subnet_id}
topic to handle the newSingleAttestation
SingleAttestation
andOnchainAttestation
Beacon API changes:
/eth/v2/validator/aggregate_attestation
API/eth/v2/beacon/blocks/{block_id}/attestations
API/eth/v2/beacon/pool/attestations
API/eth/v2/beacon/pool/attestations
API/eth/v2/beacon/pool/attester_slashings
API/eth/v2/beacon/pool/attester_slashings
APIThe text was updated successfully, but these errors were encountered: