generated from streamingfast/substreams-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.graphql
30 lines (21 loc) · 895 Bytes
/
schema.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
type Transaction @entity {
id: ID! # Using trx_hash as the ID
"The nonce of the transaction"
nonce: String!
"The gas price of the transaction"
gasPrice: String
"The gas limit of the transaction"
gasLimit: String!
"The recipient of the transaction"
to: String! # Assuming 'to' is a string in hexadecimal format
"The value of the transaction"
value: String
"The input data of the transaction"
data: String! # Assuming 'data' is a string in hexadecimal format
"The v part of the transaction's signature"
v: String # Assuming 'v' is a string in hexadecimal format
"The r part of the transaction's signature"
r: String # Assuming 'r' is a string in hexadecimal format
"The s part of the transaction's signature"
s: String # Assuming 's' is a string in hexadecimal format
}