Skip to content
New issue

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

Validation of a large volume of incoming ATXs within a limited timeframe #312

Open
mathcrypto opened this issue Dec 15, 2023 · 0 comments
Open

Comments

@mathcrypto
Copy link

Issue description:

The reason why we need to validate a large volume of ATXs in a limited time frame is because we have lots of more nodes joining the network(scaling issue). And one of these issues is that we have a parameter that we want to have the committee size on average 50 members per layer. Every node gets at least one vote. So there will be more than 50 per layer.

Proposed Solutions:

  1. Naive ATX combining method: this method combines multiple post-proofs into a single ATX, so instead of collecting ATXs from every individual node, you just collect their post-proofs and you put them in a single list.
    Even the ATX combining method reduces it temporarily, if the network keeps growing and we see actually more nodes that are operated by different people, we run into the same problem again, because you will not randomly combine someone’s identity with somebody else.

  2. Increase number of proposals per committee: This method however increases the latency.

  3. Increase epoch length:

See ATX incentivization#297

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant