-
Notifications
You must be signed in to change notification settings - Fork 720
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 support for the QueryUTxO via the new IPC API #2238
Conversation
cardano-api/cardano-api.cabal
Outdated
Cardano.Api.IPC | ||
Cardano.Api.Query |
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.
I think you also need to remove these from other-modules
1a82a37
to
d7302bd
Compare
There are still quite a few queries to cover. This covers just the QueryUTxO one. This requires exporting a UTxO type. For now the UTxO type has no interesting instances but the newtype wrapper is exposed which just uses the other API types in a simple way. newtype UTxO era = UTxO (Map TxIn (TxOut era)) Co-authored-by: Jordan Millar <jordan.millar@iohk.io>
23720a4
to
b9c43bc
Compare
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.
@Jimbo4350 Thanks for the rebasing! Looks good.
bors merge |
2238: Add support for the QueryUTxO via the new IPC API r=dcoutts a=dcoutts There are still quite a few queries to cover. This covers just the QueryUTxO one. This requires exporting a UTxO type. For now the UTxO type has no interesting instances but the newtype wrapper is exposed which just uses the other API types in a simple way. ``` newtype UTxO era = UTxO (Map TxIn (TxOut era)) ``` Co-authored-by: Duncan Coutts <duncan@well-typed.com>
Build failed: |
bors merge |
2238: Add support for the QueryUTxO via the new IPC API r=dcoutts a=dcoutts There are still quite a few queries to cover. This covers just the QueryUTxO one. This requires exporting a UTxO type. For now the UTxO type has no interesting instances but the newtype wrapper is exposed which just uses the other API types in a simple way. ``` newtype UTxO era = UTxO (Map TxIn (TxOut era)) ``` Co-authored-by: Duncan Coutts <duncan@well-typed.com>
Build failed: |
bd22a81
to
5a498dc
Compare
bors merge |
Build succeeded: |
There are still quite a few queries to cover. This covers just the
QueryUTxO one. This requires exporting a UTxO type.
For now the UTxO type has no interesting instances but the newtype
wrapper is exposed which just uses the other API types in a simple way.