-
Notifications
You must be signed in to change notification settings - Fork 87
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
Add tools executable to generate Hydra key pair #474
Conversation
Transactions CostsSizes and execution budgets for Hydra protocol transactions. Note that unlisted parameters are currently using
Cost of Init Transaction
Cost of Commit TransactionCurrently only one UTxO per commit allowed (this is about to change soon)
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.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Slight YAGNI: What if we never need other things than keygen? Naming the executable what you have as subcommand would be more on point, for now.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Forgot something:
- Please refer to this in the docs, section https://hydra.family/head-protocol/docs/getting-started/quickstart#hydra-keys
- Add a changelog entry about this
Yeah, I agree with the YAGNI :) What about moving the |
This is related to #189: Trying to spin-up a node myself I realised there wasn't any easy way to generate those keys so I wrote this small tool.
7865e9e
to
d5c8bb5
Compare
Current dependencies on/for this PR:
This comment was auto-generated by Graphite. |
I have added another tiny command to output the marker datum hash, something I have been needing while experimenting with deploying hydraw. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Still missing:
- Please refer to this in the docs, section https://hydra.family/head-protocol/docs/getting-started/quickstart#hydra-keys
- Add a changelog entry about this
8a044b3
to
d5c8bb5
Compare
@ch1bo I forgot, thanks for the reminder |
Co-authored-by: Sebastian Nagel <[email protected]>
This is related to #189: Trying to spin-up a node myself I realised there wasn't any easy way to generate those keys so I wrote this small tool.