-
Notifications
You must be signed in to change notification settings - Fork 29
gRPC: Add searchUtxos method #1123
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| project: cardano-rpc | ||
| pr: 1123 | ||
| kind: | ||
| - feature | ||
| description: | | ||
| Add searchUtxos gRPC method to the UTxO RPC query service, implementing predicate-based UTxO filtering with address, asset, and boolean combinators, plus cursor-based pagination. | ||
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -11,7 +11,27 @@ import Network.GRPC.Common | |||||||||||||||||||||||||||||||||||||||||||||
| import Network.GRPC.Common.Protobuf | ||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||
| import Proto.Utxorpc.V1beta.Submit.Submit | ||||||||||||||||||||||||||||||||||||||||||||||
| import Proto.Utxorpc.V1beta.Submit.Submit_Fields | ||||||||||||||||||||||||||||||||||||||||||||||
| import Proto.Utxorpc.V1beta.Submit.Submit_Fields hiding | ||||||||||||||||||||||||||||||||||||||||||||||
| ( allOf | ||||||||||||||||||||||||||||||||||||||||||||||
| , anyOf | ||||||||||||||||||||||||||||||||||||||||||||||
| , cardano | ||||||||||||||||||||||||||||||||||||||||||||||
| , fieldMask | ||||||||||||||||||||||||||||||||||||||||||||||
| , items | ||||||||||||||||||||||||||||||||||||||||||||||
| , match | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'cardano | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'chain | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'fieldMask | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'match | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'parsedState | ||||||||||||||||||||||||||||||||||||||||||||||
| , maybe'predicate | ||||||||||||||||||||||||||||||||||||||||||||||
| , nativeBytes | ||||||||||||||||||||||||||||||||||||||||||||||
| , not | ||||||||||||||||||||||||||||||||||||||||||||||
| , predicate | ||||||||||||||||||||||||||||||||||||||||||||||
| , vec'allOf | ||||||||||||||||||||||||||||||||||||||||||||||
| , vec'anyOf | ||||||||||||||||||||||||||||||||||||||||||||||
| , vec'items | ||||||||||||||||||||||||||||||||||||||||||||||
| , vec'not | ||||||||||||||||||||||||||||||||||||||||||||||
| ) | ||||||||||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+14
to
+34
|
||||||||||||||||||||||||||||||||||||||||||||||
| import Proto.Utxorpc.V1beta.Submit.Submit_Fields hiding | |
| ( allOf | |
| , anyOf | |
| , cardano | |
| , fieldMask | |
| , items | |
| , match | |
| , maybe'cardano | |
| , maybe'chain | |
| , maybe'fieldMask | |
| , maybe'match | |
| , maybe'parsedState | |
| , maybe'predicate | |
| , nativeBytes | |
| , not | |
| , predicate | |
| , vec'allOf | |
| , vec'anyOf | |
| , vec'items | |
| , vec'not | |
| ) | |
| import Proto.Utxorpc.V1beta.Submit.Submit_Fields |
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.
The changelog fragment is marked only as
feature, but this PR changes the public Haskell API generated from the protobufs (e.g., several message fields are nowoptional, which changes generated record field types toMaybein exposedcardano-rpc:genmodules, andCardano.Rpc.Proto.Api.UtxoRpc.Submitnow hides previously re-exported field lenses). This should be classified as a breaking change (addbreakingtokind:and update the description to call out the specific API surface changes for downstream users).