Skip to content

Commit

Permalink
graphql: add field yParity (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvisa committed Nov 8, 2023
1 parent fda7322 commit 0c18fb0
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
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!
}
}

0 comments on commit 0c18fb0

Please sign in to comment.