Understanding attestations

Understanding Attestations: Building Consensus in Blockchain Networks

Alexander Wilke
June 21, 2023

In the realm of blockchain technology, attestation plays a crucial role in establishing consensus among participating validators. Attestations serve as votes, allowing validators to express their view of the chain's most recent justified block and the first block in the current epoch. By combining the attestation data from all validators, the network can reach a consensus regarding the state of the blockchain. In this blog post, we will delve into the intricacies of attestations, exploring their components, the process of building and signing them, as well as the importance of their aggregation for efficient network communication.

Why is attesting data important in the blockchain ecosystem?

Attesting data holds significant importance in the blockchain ecosystem, playing a vital role in achieving consensus and maintaining the integrity of the blockchain. Here are a few key reasons why attesting data is crucial:

  1. Establishing Consensus: In a decentralized blockchain network, consensus is essential to ensure that all participants agree on the current state of the blockchain. Attestations serve as votes from validators, expressing their view of the most recent justified block and the first block in the current epoch. By combining these attestation votes from all participating validators, the network can reach a consensus on the state of the blockchain. This consensus mechanism helps prevent fraudulent activities, tampering and ensures the immutability of the blockchain.
  2. Ensuring Data Integrity: Attesting data includes crucial information such as the slot number, validator index, block root, source, and target checkpoints. By signing the attestation, validators verify the accuracy and integrity of the data they are attesting. The aggregation of signatures in an attestation further strengthens the validity of the data, as it requires agreement among a significant number of validators. This process enhances trust in the blockchain network and mitigates the risk of data manipulation or unauthorized changes.
  3. Facilitating Efficient Network Communication: Transmitting individual attestations from each validator to the entire network can create substantial overhead. To address this challenge, attestations are aggregated within subnets before being broadcasted more widely. By consolidating attestations and signatures, the network communication becomes more efficient, reducing bandwidth requirements and enhancing scalability. Aggregating attestations minimizes the time and resources required for validators to communicate their individual perspectives, enabling the blockchain network to process transactions and reach consensus more effectively.
  4. Encouraging Active Participation: Attesting data encourages validators to actively participate in the consensus process. By creating, signing, and broadcasting attestations, validators demonstrate their engagement with the blockchain network and their commitment to maintaining its integrity. Validators are incentivized to submit attestations through rewards tied to their effective staked ether balances and the inclusion delay. This incentivization structure fosters a robust and active validator community, enhancing the overall security and reliability of the blockchain ecosystem.

Understanding Attestations in the Ethereum Blockchain

In the Ethereum blockchain, attesting data is a crucial process that validators undertake every epoch, which lasts for approximately 6.4 minutes. 

During each epoch, validators propose an attestation to the network, which is for a specific slot within the epoch. The purpose of the attestation is to vote in favor of the validator's view of the chain, particularly the most recent justified block and the first block in the current epoch (source and target checkpoints).


An attestation contains three components: aggregation_bits, data, and a signature. 

  • Aggregation_bits are a bitlist of validators, where the position maps to the validator index in their committee, and the value (0/1) indicates whether the validator signed the data.
  • The data contains information about the attestation, including the slot number, committee number, beacon_block_root, source, and target. 
  • The signature is a BLS signature that aggregates the signatures of individual validators.

After building the data, the validator flips the bit in aggregation_bits corresponding to their own validator index from 0 to 1 to show that they participated. Finally, the validator signs the attestation and broadcasts it to the network. To reduce the overhead associated with passing data around the network, attestations from individual validators are aggregated within subnets before being broadcast more widely. In each epoch, a validator in each subnet is selected to be the aggregator. The aggregator collects all the attestations it hears about over the gossip network that has equivalent data to its own and broadcasts the attestation aggregate to the wider network.

Validators are rewarded for submitting attestations, with the attestation reward dependent on two variables: the base reward and the inclusion delay. The base reward is calculated based on the number of attesting validators and their effective staked ether balances, while the inclusion delay refers to the number of slots it takes for an attestation to be included in a block. Validators have a maximum of one epoch to submit their attestation, and if an attestation was missed in one epoch, it can be submitted with an inclusion delay in the next epoch. If an attestation was not included because the block proposer has gone missing, the next block proposer would pick the aggregated attestation up and include it in the next block, but the inclusion delay will increase by one.

How can attesting data benefit multichain solutions like t3rn?

t3rn relies on Attesters to ensure the security and integrity of its transactions. Attesters which attest data are off-chain entities that lock tokens and sign new transactions. They aggregate finalized transactions from the Circuit and create a single proof, which can then be sent to the Escrow Contracts by Executors to release locked funds.

Unlike previous-generation bridges that rely on trusted parties to attest a transaction that has taken place on-chain to trigger transactions on a second chain, t3rn's attesters are bonded. This means that they run the risk of having their bond slashed if they submit incorrect signatures, which helps to mitigate the risk of malicious behavior, fraud, and illicit collusion.

Two-thirds of all attesters sign to testify to signature correctness, with signatures also checked on the t3rn Circuit. This approach ensures that the risk of an attack is minimized, as the attesters are bonded and must provide accurate signatures to maintain their bond. Overall, the use of attesters is a key component of t3rn's multichain solution and helps to ensure the security and reliability of its transactions.

Conclusion

In conclusion, attesting data plays a crucial role in establishing consensus and maintaining the integrity of blockchain networks. By expressing their views through attestation votes, validators contribute to the consensus-building process, ensuring that all participants agree on the current state of the blockchain. Building and signing attestations, followed by their aggregation, enhance network efficiency by reducing communication overhead.

Attesting data holds significant importance in the blockchain ecosystem for several reasons. 

Firstly, it establishes consensus by preventing fraudulent activities and tampering, ensuring the immutability of the blockchain. Secondly, it ensures data integrity by verifying the accuracy and authenticity of the information being attested. The aggregation of signatures further strengthens the validity of the data, mitigating the risk of data manipulation.

Additionally, attesting data facilitates efficient network communication by reducing bandwidth requirements and enhancing scalability. By aggregating attestations, the time and resources required for validators to communicate their perspectives are minimized, enabling the blockchain network to process transactions and reach consensus more effectively.

Furthermore, attesting data encourages active participation from validators, as they are incentivized to submit attestations through rewards tied to their effective staked ether balances and the inclusion delay. This incentivization structure fosters a robust and active validator community, enhancing the overall security and reliability of the blockchain ecosystem.

In the context of multichain solutions like t3rn, attesting data ensures the security and integrity of transactions. By relying on attesters who are bonded and accountable for their actions, the risk of malicious behavior, fraud, and illicit collusion is mitigated. The use of attesters in t3rn's multichain solution contributes to the security and reliability of transactions by requiring accurate signatures and maintaining the integrity of the bonded attesters.

In summary, attesting data is a fundamental process in blockchain networks that fosters consensus, ensures data integrity, facilitates efficient communication, and encourages active participation. By embracing attestation mechanisms, blockchain ecosystems can achieve greater security, reliability, and trust in their operations.

Glossary

Attestation: An attestation is a vote from a validator in a blockchain network, expressing their view of the chain's current state.

Aggregation Bits: The aggregation bits are represented as a bit list, where each position corresponds to the validator index in their committee. A value of 0 or 1 indicates whether a validator has signed the data, effectively demonstrating their agreement with the block proposer and confirming their active status.

Attestation Data: The data within an attestation encompasses crucial details, including the slot number, which identifies the specific slot the attestation refers to, and the index, a number that identifies the validator's committee membership for that slot. Furthermore, the data includes the beacon_block_root, representing the root hash of the block that the validator observes as the head of the chain through the fork-choice algorithm. Additionally, the source and target checkpoints are part of the data, serving as components of the finality vote that express the validators' perspectives on the most recent justified block and the first block in the current epoch, respectively.

BLS: Boneh-Lynn-Shacham

Signature: The signature is a BLS (Boneh-Lynn-Shacham) signature that aggregates the individual signatures of validators, ensuring the authenticity and integrity of the attestation.

t3rn’s vision

The future of Web3 is multichain. t3rn has been built to enable this new paradigm in multichain programming, which is trustless, fail-safe and interoperable. We believe in trust-free collaboration, therefore the network will offer open access for anyone to join and play a critical role as Collator, Executor, Attester or Contracts Registry Builder.

Team t3rn will take a phased approach to rolling out the protocol, gradually releasing different features, showcasing and battle testing the network within a Substrate-based environment first  before integrating with some of the foremost ecosystems in the industry.

‍About t3rn

t3rn is a multichain protocol that brings fail-safe, interoperable execution and smart contract composability to the Polkadot ecosystem and beyond.

t3rn’s ultimate goal is to enable trust-free collaboration between blockchains and to create an ecosystem in which anyone can utilize and deploy an interoperable smart contract, in an ecosystem where developers are fairly rewarded for their contributions.

Turn multichain with t3rn.

Join Multichain Matters

Gain a competitive edge on interoperability and stay up to date with the development of t3rn. Get insights from Maciej Baj (Founder & CTO), alongside 15,000 subscribers - no spam, only value.

Thank you. We'll be in touch.
Oops! Something went wrong while submitting the form.