Skip to content
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

graphql: add field yParity #471

Merged
merged 2 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions graphql.json
Original file line number Diff line number Diff line change
Expand Up @@ -2093,6 +2093,18 @@
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "yParity",
"description": null,
"args": [],
"type": {
"kind": "SCALAR",
"name": "BigInt",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "type",
"description": "Envelope transaction support",
Expand Down
5 changes: 3 additions & 2 deletions schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ type Block {
raw: Bytes!

"""
WithdrawalsRoot is withdrawals trie root in this block.
WithdrawalsRoot is the withdrawals trie root in this block.
If withdrawals are unavailable for this block, this field will be null.
"""
withdrawalsRoot: Bytes32
Expand Down Expand Up @@ -535,6 +535,7 @@ type Transaction {
r: BigInt!
s: BigInt!
v: BigInt!
yParity: BigInt

"""Envelope transaction support"""
type: Long
Expand Down Expand Up @@ -569,4 +570,4 @@ type Withdrawal {

"""Amount is the withdrawal value in Gwei."""
amount: Long!
}
}
Loading