-
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
Changelog updates & demo fixes #459
Conversation
Also ignore the testnet/ vasil-testnet/ directories by default.
This was not the case anymore due to the docker run for hydra-node. The current solution is not perfect, but follows the same scheme as used for the cardano-cli. An alternative could be to have more granular instructions.
|
||
|
||
```mdx-code-block | ||
<TerminalWindow> | ||
./seed-devnet.sh $(which cardano-cli) | ||
export CARDANO_NODE_SOCKET_PATH=devnet/ipc/node.socket | ||
./seed-devnet.sh $(which cardano-cli) "cabal exec hydra-node --" |
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.
That is slightly weird 🤔 ... Why not $(which hydra-node)
too for consistency? I mean, this boils down to the same thing given how it is invoked but, I don't know, the example feels off to me 😅
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.
It is kind of highlighting both ways. The hydra-node
executable would only be in scope if one would be using the nix-shell -A demo
environment and below we also use cabal exec
invocations. Not sure which way is more clear 🤷
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 Transaction
Cost of FanOut TransactionInvolves spending head output and burning head tokens. Uses ada-only UTxO for better comparability.
|
⛵ Updated changelog with recent reference script changes
⛵ Make seed-devnet.sh usable without docker and update instructions