IntersectMBO / cardano-node

The core component that is used to participate in a Cardano decentralised blockchain.
https://cardano.org
Apache License 2.0
3.06k stars 720 forks source link

[FR] - Allow building transactions without storing files on the filesystem #3507

Closed robinboening closed 2 years ago

robinboening commented 2 years ago

External

Area Building Transactions

Describe the feature you'd like I'd like to be able to build a transaction without the need to store the output from commands on the filesystem. Instead, I'd like to be able to have this optional and be able to store the output of such commands in memory for use in a later command.

example

draft_tx = cardano-cli transaction build-raw ...
signed_tx = cardano-cli transaction sign --tx-body $draft_tx ...

or how about using pipes?

cardano-cli transaction build-raw ... | cardano-cli transaction sign ...

Additional context / screenshots Currently, cardano-cli requires to use --out-file / --tx-body-file when building a transaction / calculating the fees.

Jimbo4350 commented 2 years ago

Closing this. If this is still relevant please reopen.