-
Notifications
You must be signed in to change notification settings - Fork 88
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
Create a hydra-explorer executable that can track all heads on-chain #1235
Conversation
349f802
to
e15a8fa
Compare
Transactions CostsSizes and execution budgets for Hydra protocol transactions. Note that unlisted parameters are currently using
Script summary
Cost of Init Transaction
Cost of Commit TransactionThis is using ada-only outputs for better comparability.
Cost of CollectCom Transaction
Cost of Close Transaction
Cost of Contest Transaction
Cost of Abort TransactionSome variation because of random mixture of still initial and already committed outputs.
Cost of FanOut TransactionInvolves spending head output and burning head tokens. Uses ada-only UTxO for better comparability.
End-To-End Benchmark ResultsThis page is intended to collect the latest end-to-end benchmarks results produced by Hydra's Continuous Integration system from the latest Please take those results with a grain of salt as they are currently produced from very limited cloud VMs and not controlled hardware. Instead of focusing on the absolute results, the emphasis should be on relative results, eg. how the timings for a scenario evolve as the code changes. Generated at 2024-01-29 16:34:31.041690661 UTC Baseline Scenario
Baseline Scenario
|
83a688f
to
3815053
Compare
e2918e7
to
928e706
Compare
477be8d
to
e2ec89a
Compare
0c1ec19
to
3f47c00
Compare
cb496a3
to
1f21d95
Compare
70f4afc
to
6ba9da4
Compare
46a4f1a
to
aa19397
Compare
Co-authored-by: Sasha Bogicevic <Sasha.Bogicevic@iohk.io>
As we are not serving any files yet. Co-authored-by: Sebastian Nagel <ch1bo@users.noreply.github.com>
…r helpers Co-authored-by: Sebastian Nagel <ch1bo@users.noreply.github.com>
As we do not need use http and to support TLS. Also: - moved the seedFromFaucet_ calls before starting a hydra-node. - fixed the /heads endpoint header to use Accept. - removed some unused packages after this refactor. - remove e2e spec relying on stdout as we are only interested in the http api.
And assert REST API behavior rather than std out logs.
…stening on port Because it was flaky as it was defined.
Added arbitrary instances for head observations.
Also: - refactor HeadState.seedTxIn to be Observed. - refactor HeadState.contestationPeriod to be Observed. - refactor HeadMember.onChainId to be Observed. Finally updated the explorer openapi to be compliant with above changes.
11d904f
to
594558b
Compare
What
Create a hydra-explorer that can track all Babbage heads on-chain in a devnet network.
Then expose a REST-API to query the "List of all heads and their current state (Initializing, Open, Closed, Final) on network"
How