iamgroot 0.3.0

Rust code generation from Open-RPC spec
Documentation
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
{
	"openrpc": "1.0.0",
	"info": {
	  "version": "1.0.10",
	  "title": "Ethereum JSON-RPC",
	  "description": "This API lets you interact with an EVM-based client via JSON-RPC",
	  "license": {
		"name": "Apache 2.0",
		"url": "https://www.apache.org/licenses/LICENSE-2.0.html"
	  }
	},
	"methods": [
	  {
		"name": "web3_clientVersion",
		"description": "Returns the version of the current client",
		"summary": "current client version",
		"params": [],
		"result": {
		  "name": "clientVersion",
		  "description": "client version",
		  "schema": {
			"title": "clientVersion",
			"type": "string"
		  }
		}
	  },
	  {
		"name": "web3_sha3",
		"summary": "Hashes data",
		"description": "Hashes data using the Keccak-256 algorithm",
		"params": [
		  {
			"name": "data",
			"description": "data to hash using the Keccak-256 algorithm",
			"summary": "data to hash",
			"schema": {
			  "title": "data",
			  "type": "string",
			  "pattern": "^0x[a-fA-F\\d]+$"
			}
		  }
		],
		"result": {
		  "name": "hashedData",
		  "description": "Keccak-256 hash of the given data",
		  "schema": {
			"$ref": "#/components/schemas/Keccak"
		  }
		},
		"examples": [
		  {
			"name": "sha3Example",
			"params": [
			  {
				"name": "sha3ParamExample",
				"value": "0x68656c6c6f20776f726c64"
			  }
			],
			"result": {
			  "name": "sha3ResultExample",
			  "value": "0x47173285a8d7341e5e972fc677286384f802f8ef42a5ec5f03bbfa254cb01fad"
			}
		  }
		]
	  },
	  {
		"name": "net_listening",
		"summary": "returns listening status",
		"description": "Determines if this client is listening for new network connections.",
		"params": [],
		"result": {
		  "name": "netListeningResult",
		  "description": "`true` if listening is active or `false` if listening is not active",
		  "schema": {
			"title": "isNetListening",
			"type": "boolean"
		  }
		},
		"examples": [
		  {
			"name": "netListeningTrueExample",
			"description": "example of true result for net_listening",
			"params": [],
			"result": {
			  "name": "netListeningExampleFalseResult",
			  "value": true
			}
		  }
		]
	  },
	  {
		"name": "net_peerCount",
		"summary": "number of peers",
		"description": "Returns the number of peers currently connected to this client.",
		"params": [],
		"result": {
		  "name": "quantity",
		  "description": "number of connected peers.",
		  "schema": {
			"title": "numConnectedPeers",
			"description": "Hex representation of number of connected peers",
			"type": "string"
		  }
		}
	  },
	  {
		"name": "net_version",
		"summary": "Network identifier associated with network",
		"description": "Returns the network ID associated with the current network.",
		"params": [],
		"result": {
		  "name": "networkId",
		  "description": "Network ID associated with the current network",
		  "schema": {
			"title": "networkId",
			"type": "string",
			"pattern": "^[\\d]+$"
		  }
		}
	  },
	  {
		"name": "eth_blockNumber",
		"summary": "Returns the number of most recent block.",
		"params": [],
		"result": {
		  "$ref": "#/components/contentDescriptors/BlockNumber"
		}
	  },
	  {
		"name": "eth_call",
		"summary": "Executes a new message call (locally) immediately without creating a transaction on the block chain.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Transaction"
		  },
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "name": "returnValue",
		  "description": "The return value of the executed contract",
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		}
	  },
	  {
		"name": "eth_chainId",
		"summary": "Returns the currently configured chain id",
		"description": "Returns the currently configured chain id, a value used in replay-protected transaction signing as introduced by [EIP-155](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md).",
		"params": [],
		"result": {
		  "name": "chainId",
		  "description": "hex format integer of the current chain id. Defaults are ETC=61, ETH=1, Morden=62.",
		  "schema": {
			"title": "chainId",
			"type": "string",
			"pattern": "^0x[a-fA-F\\d]+$"
		  }
		}
	  },
	  {
		"name": "eth_coinbase",
		"summary": "Returns the client coinbase address.",
		"params": [],
		"result": {
		  "name": "address",
		  "description": "The address owned by the client that is used as default for things like the mining reward",
		  "schema": {
			"$ref": "#/components/schemas/Address"
		  }
		}
	  },
	  {
		"name": "eth_estimateGas",
		"summary": "Generates and returns an estimate of how much gas is necessary to allow the transaction to complete. The transaction will not be added to the blockchain. Note that the estimate may be significantly more than the amount of gas actually used by the transaction, for a variety of reasons including EVM mechanics and node performance.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Transaction"
		  }
		],
		"result": {
		  "name": "gasUsed",
		  "description": "The amount of gas used",
		  "schema": {
			"$ref": "#/components/schemas/Integer"
		  }
		}
	  },
	  {
		"name": "eth_gasPrice",
		"summary": "Returns the current price per gas in wei",
		"params": [],
		"result": {
		  "$ref": "#/components/contentDescriptors/GasPrice"
		}
	  },
	  {
		"name": "eth_getBalance",
		"summary": "Returns Ether balance of a given or account or contract",
		"params": [
		  {
			"name": "address",
			"required": true,
			"description": "The address of the account or contract",
			"schema": {
			  "$ref": "#/components/schemas/Address"
			}
		  },
		  {
			"name": "blockNumber",
			"description": "A BlockNumber at which to request the balance",
			"schema": {
			  "$ref": "#/components/schemas/BlockNumber"
			}
		  }
		],
		"result": {
		  "name": "getBalanceResult",
		  "schema": {
			"$ref": "#/components/schemas/IntegerOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getBlockByHash",
		"summary": "Gets a block for a given hash",
		"params": [
		  {
			"name": "blockHash",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/BlockHash"
			}
		  },
		  {
			"name": "includeTransactions",
			"description": "If `true` it returns the full transaction objects, if `false` only the hashes of the transactions.",
			"required": true,
			"schema": {
			  "title": "isTransactionsIncluded",
			  "type": "boolean"
			}
		  }
		],
		"result": {
		  "name": "getBlockByHashResult",
		  "schema": {
			"$ref": "#/components/schemas/BlockOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getBlockByNumber",
		"summary": "Gets a block for a given number",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  },
		  {
			"name": "includeTransactions",
			"description": "If `true` it returns the full transaction objects, if `false` only the hashes of the transactions.",
			"required": true,
			"schema": {
			  "title": "isTransactionsIncluded",
			  "type": "boolean"
			}
		  }
		],
		"result": {
		  "name": "getBlockByNumberResult",
		  "schema": {
			"$ref": "#/components/schemas/BlockOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getBlockTransactionCountByHash",
		"summary": "Returns the number of transactions in a block from a block matching the given block hash.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockHash"
		  }
		],
		"result": {
		  "name": "blockTransactionCountByHash",
		  "description": "The Number of total transactions in the given block",
		  "schema": {
			"$ref": "#/components/schemas/IntegerOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getBlockTransactionCountByNumber",
		"summary": "Returns the number of transactions in a block from a block matching the given block number.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "name": "blockTransactionCountByHash",
		  "description": "The Number of total transactions in the given block",
		  "schema": {
			"$ref": "#/components/schemas/IntegerOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getCode",
		"summary": "Returns code at a given contract address",
		"params": [
		  {
			"name": "address",
			"required": true,
			"description": "The address of the contract",
			"schema": {
			  "$ref": "#/components/schemas/Address"
			}
		  },
		  {
			"name": "blockNumber",
			"description": "A BlockNumber of which the code existed",
			"schema": {
			  "$ref": "#/components/schemas/BlockNumber"
			}
		  }
		],
		"result": {
		  "name": "bytes",
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		}
	  },
	  {
		"name": "eth_getFilterChanges",
		"summary": "Polling method for a filter, which returns an array of logs which occurred since last poll.",
		"params": [
		  {
			"name": "filterId",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/FilterId"
			}
		  }
		],
		"result": {
		  "name": "logResult",
		  "schema": {
			"title": "logResult",
			"type": "array",
			"items": {
			  "$ref": "#/components/schemas/Log"
			}
		  }
		}
	  },
	  {
		"name": "eth_getFilterLogs",
		"summary": "Returns an array of all logs matching filter with given id.",
		"params": [
		  {
			"name": "filterId",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/FilterId"
			}
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/Logs"
		}
	  },
	  {
		"name": "eth_getRawTransactionByHash",
		"summary": "Returns raw transaction data of a transaction with the given hash.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/TransactionHash"
		  }
		],
		"result": {
		  "name": "rawTransactionByHash",
		  "description": "The raw transaction data",
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		}
	  },
	  {
		"name": "eth_getRawTransactionByBlockHashAndIndex",
		"summary": "Returns raw transaction data of a transaction with the block hash and index of which it was mined.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockHash"
		  },
		  {
			"name": "index",
			"description": "The ordering in which a transaction is mined within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "name": "rawTransaction",
		  "description": "The raw transaction data",
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		}
	  },
	  {
		"name": "eth_getRawTransactionByBlockNumberAndIndex",
		"summary": "Returns raw transaction data of a transaction with the block number and index of which it was mined.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  },
		  {
			"name": "index",
			"description": "The ordering in which a transaction is mined within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "name": "rawTransaction",
		  "description": "The raw transaction data",
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		}
	  },
	  {
		"name": "eth_getLogs",
		"summary": "Returns an array of all logs matching a given filter object.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Filter"
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/Logs"
		}
	  },
	  {
		"name": "eth_getStorageAt",
		"summary": "Gets a storage value from a contract address, a position, and an optional blockNumber",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Address"
		  },
		  {
			"$ref": "#/components/contentDescriptors/Position"
		  },
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "name": "dataWord",
		  "schema": {
			"$ref": "#/components/schemas/DataWord"
		  }
		}
	  },
	  {
		"name": "eth_getTransactionByBlockHashAndIndex",
		"summary": "Returns the information about a transaction requested by the block hash and index of which it was mined.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockHash"
		  },
		  {
			"name": "index",
			"description": "The ordering in which a transaction is mined within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/TransactionResult"
		},
		"examples": [
		  {
			"name": "nullExample",
			"params": [
			  {
				"name": "blockHashExample",
				"value": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
			  },
			  {
				"name": "indexExample",
				"value": "0x0"
			  }
			],
			"result": {
			  "name": "nullResultExample",
			  "value": null
			}
		  }
		]
	  },
	  {
		"name": "eth_getTransactionByBlockNumberAndIndex",
		"summary": "Returns the information about a transaction requested by the block number and index of which it was mined.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  },
		  {
			"name": "index",
			"description": "The ordering in which a transaction is mined within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/TransactionResult"
		}
	  },
	  {
		"name": "eth_getTransactionByHash",
		"summary": "Returns the information about a transaction requested by transaction hash.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/TransactionHash"
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/TransactionResult"
		}
	  },
	  {
		"name": "eth_getTransactionCount",
		"summary": "Returns the number of transactions sent from an address",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Address"
		  },
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "name": "transactionCount",
		  "schema": {
			"title": "nonceOrNull",
			"oneOf": [
			  {
				"$ref": "#/components/schemas/Nonce"
			  },
			  {
				"$ref": "#/components/schemas/Null"
			  }
			]
		  }
		}
	  },
	  {
		"name": "eth_getTransactionReceipt",
		"summary": "Returns the receipt information of a transaction by its hash.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/TransactionHash"
		  }
		],
		"result": {
		  "name": "transactionReceiptResult",
		  "description": "returns either a receipt or null",
		  "schema": {
			"title": "transactionReceiptOrNull",
			"oneOf": [
			  {
				"$ref": "#/components/schemas/Receipt"
			  },
			  {
				"$ref": "#/components/schemas/Null"
			  }
			]
		  }
		}
	  },
	  {
		"name": "eth_getUncleByBlockHashAndIndex",
		"summary": "Returns information about a uncle of a block by hash and uncle index position.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockHash"
		  },
		  {
			"name": "index",
			"description": "The ordering in which a uncle is included within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "name": "uncle",
		  "schema": {
			"$ref": "#/components/schemas/BlockOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getUncleByBlockNumberAndIndex",
		"summary": "Returns information about a uncle of a block by hash and uncle index position.",
		"params": [
		  {
			"name": "uncleBlockNumber",
			"description": "The block in which the uncle was included",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/BlockNumber"
			}
		  },
		  {
			"name": "index",
			"description": "The ordering in which a uncle is included within its block.",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Integer"
			}
		  }
		],
		"result": {
		  "name": "uncleResult",
		  "description": "returns an uncle block or null",
		  "schema": {
			"$ref": "#/components/schemas/BlockOrNull"
		  }
		},
		"examples": [
		  {
			"name": "nullResultExample",
			"params": [
			  {
				"name": "uncleBlockNumberExample",
				"value": "0x0"
			  },
			  {
				"name": "uncleBlockNumberIndexExample",
				"value": "0x0"
			  }
			],
			"result": {
			  "name": "nullResultExample",
			  "value": null
			}
		  }
		]
	  },
	  {
		"name": "eth_getUncleCountByBlockHash",
		"summary": "Returns the number of uncles in a block from a block matching the given block hash.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockHash"
		  }
		],
		"result": {
		  "name": "uncleCountResult",
		  "description": "The Number of total uncles in the given block",
		  "schema": {
			"$ref": "#/components/schemas/IntegerOrNull"
		  }
		}
	  },
	  {
		"name": "eth_getUncleCountByBlockNumber",
		"summary": "Returns the number of uncles in a block from a block matching the given block number.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "$ref": "#/components/contentDescriptors/UncleCountResult"
		}
	  },
	  {
		"name": "eth_getProof",
		"summary": "Returns the account- and storage-values of the specified account including the Merkle-proof.",
		"params": [
		  {
			"name": "address",
			"description": "The address of the account or contract",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/Address"
			}
		  },
		  {
			"name": "storageKeys",
			"required": true,
			"schema": {
			  "title": "storageKeys",
			  "description": "A storage key is indexed from the solidity compiler by the order it is declared. For mappings it uses the keccak of the mapping key with its position (and recursively for X-dimensional mappings)",
			  "type": "array",
			  "items": {
				"$ref": "#/components/schemas/StorageProofKey"
			  }
			}
		  },
		  {
			"$ref": "#/components/contentDescriptors/BlockNumber"
		  }
		],
		"result": {
		  "name": "account",
		  "schema": {
			"title": "proofAccountOrNull",
			"oneOf": [
			  {
				"title": "proofAccount",
				"type": "object",
				"description": "The merkle proofs of the specified account connecting them to the blockhash of the block specified",
				"properties": {
				  "address": {
					"title": "proofAccountAddress",
					"description": "The address of the account or contract of the request",
					"$ref": "#/components/schemas/Address"
				  },
				  "accountProof": {
					"$ref": "#/components/schemas/ProofNodes"
				  },
				  "balance": {
					"title": "proofAccountBalance",
					"description": "The Ether balance of the account or contract of the request",
					"$ref": "#/components/schemas/Integer"
				  },
				  "codeHash": {
					"title": "proofAccountCodeHash",
					"description": "The code hash of the contract of the request (keccak(NULL) if external account)",
					"$ref": "#/components/schemas/Keccak"
				  },
				  "nonce": {
					"title": "proofAccountNonce",
					"description": "The transaction count of the account or contract of the request",
					"$ref": "#/components/schemas/Nonce"
				  },
				  "storageHash": {
					"title": "proofAccountStorageHash",
					"description": "The storage hash of the contract of the request (keccak(rlp(NULL)) if external account)",
					"$ref": "#/components/schemas/Keccak"
				  },
				  "storageProof": {
					"$ref": "#/components/schemas/StorageProof"
				  }
				}
			  },
			  {
				"$ref": "#/components/schemas/Null"
			  }
			]
		  }
		}
	  },
	  {
		"name": "eth_getWork",
		"summary": "Returns the hash of the current block, the seedHash, and the boundary condition to be met ('target').",
		"params": [],
		"result": {
		  "name": "work",
		  "schema": {
			"type": "array",
			"items": {
			  "title": "GetWorkItem",
			  "schema": {
				"oneOf": [
				  {
					"$ref": "#/components/schemas/PowHash"
				  },
				  {
					"$ref": "#/components/schemas/SeedHash"
				  },
				  {
					"$ref": "#/components/schemas/Difficulty"
				  }
				]
			  }
			}
		  }
		}
	  },
	  {
		"name": "eth_hashrate",
		"summary": "Returns the number of hashes per second that the node is mining with.",
		"params": [],
		"result": {
		  "name": "hashesPerSecond",
		  "description": "Integer of the number of hashes per second",
		  "schema": {
			"$ref": "#/components/schemas/Integer"
		  }
		}
	  },
	  {
		"name": "eth_mining",
		"summary": "Returns true if client is actively mining new blocks.",
		"params": [],
		"result": {
		  "name": "mining",
		  "description": "Whether or not the client is mining",
		  "schema": {
			"type": "boolean"
		  }
		}
	  },
	  {
		"name": "eth_newBlockFilter",
		"summary": "Creates a filter in the node, to notify when a new block arrives. To check if the state has changed, call eth_getFilterChanges.",
		"params": [],
		"result": {
		  "$ref": "#/components/contentDescriptors/FilterId"
		}
	  },
	  {
		"name": "eth_newFilter",
		"summary": "Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call eth_getFilterChanges.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Filter"
		  }
		],
		"result": {
		  "name": "filterId",
		  "description": "The filter ID for use in `eth_getFilterChanges`",
		  "schema": {
			"$ref": "#/components/schemas/Integer"
		  }
		}
	  },
	  {
		"name": "eth_newPendingTransactionFilter",
		"summary": "Creates a filter in the node, to notify when new pending transactions arrive. To check if the state has changed, call eth_getFilterChanges.",
		"params": [],
		"result": {
		  "$ref": "#/components/contentDescriptors/FilterId"
		}
	  },
	  {
		"name": "eth_pendingTransactions",
		"summary": "Returns the transactions that are pending in the transaction pool and have a from address that is one of the accounts this node manages.",
		"params": [],
		"result": {
		  "name": "pendingTransactions",
		  "schema": {
			"$ref": "#/components/schemas/Transactions"
		  }
		}
	  },
	  {
		"name": "eth_protocolVersion",
		"summary": "Returns the current ethereum protocol version.",
		"params": [],
		"result": {
		  "name": "protocolVersion",
		  "description": "The current ethereum protocol version",
		  "schema": {
			"$ref": "#/components/schemas/Integer"
		  }
		}
	  },
	  {
		"name": "eth_sendRawTransaction",
		"summary": "Creates new message call transaction or a contract creation for signed transactions.",
		"params": [
		  {
			"name": "signedTransactionData",
			"required": true,
			"description": "The signed transaction data",
			"schema": {
			  "$ref": "#/components/schemas/Bytes"
			}
		  }
		],
		"result": {
		  "name": "transactionHash",
		  "description": "The transaction hash, or the zero hash if the transaction is not yet available.",
		  "schema": {
			"$ref": "#/components/schemas/Keccak"
		  }
		}
	  },
	  {
		"name": "eth_submitHashrate",
		"deprecated": true,
		"summary": "Used for submitting mining hashrate.",
		"params": [
		  {
			"name": "hashRate",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/DataWord"
			}
		  },
		  {
			"name": "id",
			"required": true,
			"description": "String identifying the client",
			"schema": {
			  "$ref": "#/components/schemas/DataWord"
			}
		  }
		],
		"result": {
		  "name": "submitHashRateSuccess",
		  "description": "whether of not submitting went through successfully",
		  "schema": {
			"type": "boolean"
		  }
		}
	  },
	  {
		"name": "eth_submitWork",
		"summary": "Used for submitting a proof-of-work solution.",
		"params": [
		  {
			"$ref": "#/components/contentDescriptors/Nonce"
		  },
		  {
			"name": "powHash",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/PowHash"
			}
		  },
		  {
			"name": "mixHash",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/MixHash"
			}
		  }
		],
		"result": {
		  "name": "solutionValid",
		  "description": "returns true if the provided solution is valid, otherwise false.",
		  "schema": {
			"type": "boolean"
		  }
		},
		"examples": [
		  {
			"name": "submitWorkExample",
			"params": [
			  {
				"name": "nonceExample",
				"description": "example of a number only used once",
				"value": "0x0000000000000001"
			  },
			  {
				"name": "powHashExample",
				"description": "proof of work to submit",
				"value": "0x6bf2cAE0dE3ec3ecA5E194a6C6e02cf42aADfe1C2c4Fff12E5D36C3Cf7297F22"
			  },
			  {
				"name": "mixHashExample",
				"description": "the mix digest example",
				"value": "0xD1FE5700000000000000000000000000D1FE5700000000000000000000000000"
			  }
			],
			"result": {
			  "name": "solutionInvalidExample",
			  "description": "this example should return `false` as it is not a valid pow to submit",
			  "value": false
			}
		  }
		]
	  },
	  {
		"name": "eth_syncing",
		"summary": "Returns an object with data about the sync status or false.",
		"params": [],
		"result": {
		  "name": "syncing",
		  "schema": {
			"title": "isSyncingResult",
			"oneOf": [
			  {
				"title": "syncingData",
				"description": "An object with sync status data",
				"type": "object",
				"properties": {
				  "startingBlock": {
					"title": "syncingDataStartingBlock",
					"description": "Block at which the import started (will only be reset, after the sync reached his head)",
					"$ref": "#/components/schemas/Integer"
				  },
				  "currentBlock": {
					"title": "syncingDataCurrentBlock",
					"description": "The current block, same as eth_blockNumber",
					"$ref": "#/components/schemas/Integer"
				  },
				  "highestBlock": {
					"title": "syncingDataHighestBlock",
					"description": "The estimated highest block",
					"$ref": "#/components/schemas/Integer"
				  },
				  "knownStates": {
					"title": "syncingDataKnownStates",
					"description": "The known states",
					"$ref": "#/components/schemas/Integer"
				  },
				  "pulledStates": {
					"title": "syncingDataPulledStates",
					"description": "The pulled states",
					"$ref": "#/components/schemas/Integer"
				  }
				}
			  },
			  {
				"title": "boolean",
				"type": "boolean"
			  }
			]
		  }
		}
	  },
	  {
		"name": "eth_uninstallFilter",
		"summary": "Uninstalls a filter with given id. Should always be called when watch is no longer needed. Additionally Filters timeout when they aren't requested with eth_getFilterChanges for a period of time.",
		"params": [
		  {
			"name": "filterId",
			"required": true,
			"schema": {
			  "$ref": "#/components/schemas/FilterId"
			}
		  }
		],
		"result": {
		  "name": "filterUninstalledSuccess",
		  "description": "returns true if the filter was successfully uninstalled, false otherwise.",
		  "schema": {
			"type": "boolean"
		  }
		}
	  }
	],
	"components": {
	  "schemas": {
		"ProofNode": {
		  "title": "proofNode",
		  "description": "An individual node used to prove a path down a merkle-patricia-tree",
		  "$ref": "#/components/schemas/Bytes"
		},
		"StorageProofKey": {
		  "title": "storageProofKey",
		  "description": "The key used to get the storage slot in its account tree.",
		  "$ref": "#/components/schemas/Integer"
		},
		"StorageProof": {
		  "title": "storageProofSet",
		  "type": "array",
		  "description": "Current block header PoW hash.",
		  "items": {
			"title": "StorageProof",
			"type": "object",
			"description": "Object proving a relationship of a storage value to an account's storageHash.",
			"properties": {
			  "key": {
				"$ref": "#/components/schemas/StorageProofKey"
			  },
			  "value": {
				"title": "StorageProofValue",
				"description": "The value of the storage slot in its account tree",
				"$ref": "#/components/schemas/Integer"
			  },
			  "proof": {
				"$ref": "#/components/schemas/ProofNodes"
			  }
			}
		  }
		},
		"ProofNodes": {
		  "title": "proofNodes",
		  "type": "array",
		  "description": "The set of node values needed to traverse a patricia merkle tree (from root to leaf) to retrieve a value",
		  "items": {
			"$ref": "#/components/schemas/ProofNode"
		  }
		},
		"PowHash": {
		  "title": "powHash",
		  "description": "Current block header PoW hash.",
		  "$ref": "#/components/schemas/DataWord"
		},
		"SeedHash": {
		  "title": "seedHash",
		  "description": "The seed hash used for the DAG.",
		  "$ref": "#/components/schemas/DataWord"
		},
		"MixHash": {
		  "title": "mixHash",
		  "description": "The mix digest.",
		  "$ref": "#/components/schemas/DataWord"
		},
		"Difficulty": {
		  "title": "difficulty",
		  "description": "The boundary condition ('target'), 2^256 / difficulty.",
		  "$ref": "#/components/schemas/DataWord"
		},
		"FilterId": {
		  "title": "filterId",
		  "type": "string",
		  "description": "An identifier used to reference the filter."
		},
		"BlockHash": {
		  "title": "blockHash",
		  "type": "string",
		  "pattern": "^0x[a-fA-F\\d]{64}$",
		  "description": "The hex representation of the Keccak 256 of the RLP encoded block"
		},
		"BlockNumber": {
		  "title": "blockNumber",
		  "description": "The hex representation of the block's height",
		  "$ref": "#/components/schemas/Integer"
		},
		"BlockNumberTag": {
		  "title": "blockNumberTag",
		  "type": "string",
		  "description": "The optional block height description",
		  "enum": [
			"earliest",
			"latest",
			"pending"
		  ]
		},
		"BlockOrNull": {
		  "title": "blockOrNull",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Block"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"IntegerOrNull": {
		  "title": "integerOrNull",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Integer"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"AddressOrNull": {
		  "title": "addressOrNull",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Address"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"Receipt": {
		  "title": "receipt",
		  "type": "object",
		  "description": "The receipt of a transaction",
		  "required": [
			"blockHash",
			"blockNumber",
			"contractAddress",
			"cumulativeGasUsed",
			"from",
			"gasUsed",
			"logs",
			"logsBloom",
			"to",
			"transactionHash",
			"transactionIndex"
		  ],
		  "properties": {
			"blockHash": {
			  "$ref": "#/components/schemas/BlockHash"
			},
			"blockNumber": {
			  "$ref": "#/components/schemas/BlockNumber"
			},
			"contractAddress": {
			  "title": "ReceiptContractAddress",
			  "description": "The contract address created, if the transaction was a contract creation, otherwise null",
			  "$ref": "#/components/schemas/AddressOrNull"
			},
			"cumulativeGasUsed": {
			  "title": "ReceiptCumulativeGasUsed",
			  "description": "The gas units used by the transaction",
			  "$ref": "#/components/schemas/Integer"
			},
			"from": {
			  "$ref": "#/components/schemas/From"
			},
			"gasUsed": {
			  "title": "ReceiptGasUsed",
			  "description": "The total gas used by the transaction",
			  "$ref": "#/components/schemas/Integer"
			},
			"logs": {
			  "title": "logs",
			  "type": "array",
			  "description": "An array of all the logs triggered during the transaction",
			  "items": {
				"$ref": "#/components/schemas/Log"
			  }
			},
			"logsBloom": {
			  "$ref": "#/components/schemas/BloomFilter"
			},
			"to": {
			  "$ref": "#/components/schemas/To"
			},
			"transactionHash": {
			  "$ref": "#/components/schemas/TransactionHash"
			},
			"transactionIndex": {
			  "$ref": "#/components/schemas/TransactionIndex"
			},
			"postTransactionState": {
			  "title": "ReceiptPostTransactionState",
			  "description": "The intermediate stateRoot directly after transaction execution.",
			  "$ref": "#/components/schemas/Keccak"
			},
			"status": {
			  "title": "ReceiptStatus",
			  "description": "Whether or not the transaction threw an error.",
			  "type": "boolean"
			}
		  }
		},
		"BloomFilter": {
		  "title": "bloomFilter",
		  "type": "string",
		  "description": "A 2048 bit bloom filter from the logs of the transaction. Each log sets 3 bits though taking the low-order 11 bits of each of the first three pairs of bytes in a Keccak 256 hash of the log's byte series"
		},
		"Log": {
		  "title": "log",
		  "type": "object",
		  "description": "An indexed event generated during a transaction",
		  "properties": {
			"address": {
			  "title": "LogAddress",
			  "description": "Sender of the transaction",
			  "$ref": "#/components/schemas/Address"
			},
			"blockHash": {
			  "$ref": "#/components/schemas/BlockHash"
			},
			"blockNumber": {
			  "$ref": "#/components/schemas/BlockNumber"
			},
			"data": {
			  "title": "LogData",
			  "description": "The data/input string sent along with the transaction",
			  "$ref": "#/components/schemas/Bytes"
			},
			"logIndex": {
			  "title": "LogIndex",
			  "description": "The index of the event within its transaction, null when its pending",
			  "$ref": "#/components/schemas/Integer"
			},
			"removed": {
			  "title": "logIsRemoved",
			  "description": "Whether or not the log was orphaned off the main chain",
			  "type": "boolean"
			},
			"topics": {
			  "$ref": "#/components/schemas/Topics"
			},
			"transactionHash": {
			  "$ref": "#/components/schemas/TransactionHash"
			},
			"transactionIndex": {
			  "$ref": "#/components/schemas/TransactionIndex"
			}
		  }
		},
		"Topics": {
		  "title": "LogTopics",
		  "description": "Topics are order-dependent. Each topic can also be an array of DATA with 'or' options.",
		  "type": "array",
		  "items": {
			"$ref": "#/components/schemas/Topic"
		  }
		},
		"Topic": {
		  "title": "topic",
		  "description": "32 Bytes DATA of indexed log arguments. (In solidity: The first topic is the hash of the signature of the event (e.g. Deposit(address,bytes32,uint256))",
		  "$ref": "#/components/schemas/DataWord"
		},
		"TransactionIndex": {
		  "title": "transactionIndex",
		  "description": "The index of the transaction. null when its pending",
		  "$ref": "#/components/schemas/IntegerOrNull"
		},
		"BlockNumberOrNull": {
		  "title": "blockNumberOrNull",
		  "description": "The block number or null when its the pending block",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/BlockNumber"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"BlockHashOrNull": {
		  "title": "blockHashOrNull",
		  "description": "The block hash or null when its the pending block",
		  "$ref": "#/components/schemas/KeccakOrPending"
		},
		"NonceOrNull": {
		  "title": "nonceOrNull",
		  "description": "Randomly selected number to satisfy the proof-of-work or null when its the pending block",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Nonce"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"From": {
		  "title": "From",
		  "description": "The sender of the transaction",
		  "$ref": "#/components/schemas/Address"
		},
		"To": {
		  "title": "To",
		  "description": "Destination address of the transaction. Null if it was a contract create.",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Address"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"Block": {
		  "title": "Block",
		  "description": "The Block is the collection of relevant pieces of information (known as the block header), together with information corresponding to the comprised transactions, and a set of other block headers that are known to have a parent equal to the present block’s parent’s parent.",
		  "type": "object",
		  "properties": {
			"number": {
			  "$ref": "#/components/schemas/BlockNumberOrNull"
			},
			"hash": {
			  "$ref": "#/components/schemas/BlockHashOrNull"
			},
			"parentHash": {
			  "$ref": "#/components/schemas/BlockHash"
			},
			"nonce": {
			  "$ref": "#/components/schemas/NonceOrNull"
			},
			"sha3Uncles": {
			  "title": "blockShaUncles",
			  "description": "Keccak hash of the uncles data in the block",
			  "$ref": "#/components/schemas/Keccak"
			},
			"logsBloom": {
			  "title": "blockLogsBloom",
			  "type": "string",
			  "description": "The bloom filter for the logs of the block or null when its the pending block",
			  "pattern": "^0x[a-fA-F\\d]+$"
			},
			"transactionsRoot": {
			  "title": "blockTransactionsRoot",
			  "description": "The root of the transactions trie of the block.",
			  "$ref": "#/components/schemas/Keccak"
			},
			"stateRoot": {
			  "title": "blockStateRoot",
			  "description": "The root of the final state trie of the block",
			  "$ref": "#/components/schemas/Keccak"
			},
			"receiptsRoot": {
			  "title": "blockReceiptsRoot",
			  "description": "The root of the receipts trie of the block",
			  "$ref": "#/components/schemas/Keccak"
			},
			"miner": {
			  "$ref": "#/components/schemas/AddressOrNull"
			},
			"difficulty": {
			  "title": "blockDifficulty",
			  "type": "string",
			  "description": "Integer of the difficulty for this block"
			},
			"totalDifficulty": {
			  "title": "blockTotalDifficulty",
			  "description": "Integer of the total difficulty of the chain until this block",
			  "$ref": "#/components/schemas/IntegerOrNull"
			},
			"extraData": {
			  "title": "blockExtraData",
			  "type": "string",
			  "description": "The 'extra data' field of this block"
			},
			"size": {
			  "title": "blockSize",
			  "type": "string",
			  "description": "Integer the size of this block in bytes"
			},
			"gasLimit": {
			  "title": "blockGasLimit",
			  "type": "string",
			  "description": "The maximum gas allowed in this block"
			},
			"gasUsed": {
			  "title": "blockGasUsed",
			  "type": "string",
			  "description": "The total used gas by all transactions in this block"
			},
			"timestamp": {
			  "title": "blockTimeStamp",
			  "type": "string",
			  "description": "The unix timestamp for when the block was collated"
			},
			"transactions": {
			  "title": "transactionsOrHashes",
			  "description": "Array of transaction objects, or 32 Bytes transaction hashes depending on the last given parameter",
			  "type": "array",
			  "items": {
				"title": "TransactionOrTransactionHash",
				"oneOf": [
				  {
					"$ref": "#/components/schemas/Transaction"
				  },
				  {
					"$ref": "#/components/schemas/TransactionHash"
				  }
				]
			  }
			},
			"uncles": {
			  "title": "uncleHashes",
			  "description": "Array of uncle hashes",
			  "type": "array",
			  "items": {
				"title": "uncleHash",
				"description": "Block hash of the RLP encoding of an uncle block",
				"$ref": "#/components/schemas/Keccak"
			  }
			}
		  }
		},
		"Transaction": {
		  "title": "transaction",
		  "type": "object",
		  "required": [
			"gas",
			"gasPrice",
			"nonce"
		  ],
		  "properties": {
			"blockHash": {
			  "$ref": "#/components/schemas/BlockHashOrNull"
			},
			"blockNumber": {
			  "$ref": "#/components/schemas/BlockNumberOrNull"
			},
			"from": {
			  "$ref": "#/components/schemas/From"
			},
			"gas": {
			  "title": "transactionGas",
			  "type": "string",
			  "description": "The gas limit provided by the sender in Wei"
			},
			"gasPrice": {
			  "title": "transactionGasPrice",
			  "type": "string",
			  "description": "The gas price willing to be paid by the sender in Wei"
			},
			"hash": {
			  "$ref": "#/components/schemas/TransactionHash"
			},
			"input": {
			  "title": "transactionInput",
			  "type": "string",
			  "description": "The data field sent with the transaction"
			},
			"nonce": {
			  "title": "transactionNonce",
			  "description": "The total number of prior transactions made by the sender",
			  "$ref": "#/components/schemas/Nonce"
			},
			"to": {
			  "$ref": "#/components/schemas/To"
			},
			"transactionIndex": {
			  "$ref": "#/components/schemas/TransactionIndex"
			},
			"value": {
			  "title": "transactionValue",
			  "description": "Value of Ether being transferred in Wei",
			  "$ref": "#/components/schemas/Keccak"
			},
			"v": {
			  "title": "transactionSigV",
			  "type": "string",
			  "description": "ECDSA recovery id"
			},
			"r": {
			  "title": "transactionSigR",
			  "type": "string",
			  "description": "ECDSA signature r"
			},
			"s": {
			  "title": "transactionSigS",
			  "type": "string",
			  "description": "ECDSA signature s"
			}
		  }
		},
		"Transactions": {
		  "title": "transactions",
		  "description": "An array of transactions",
		  "type": "array",
		  "items": {
			"$ref": "#/components/schemas/Transaction"
		  }
		},
		"TransactionHash": {
		  "title": "transactionHash",
		  "description": "Keccak 256 Hash of the RLP encoding of a transaction",
		  "$ref": "#/components/schemas/Keccak"
		},
		"KeccakOrPending": {
		  "title": "keccakOrPending",
		  "oneOf": [
			{
			  "$ref": "#/components/schemas/Keccak"
			},
			{
			  "$ref": "#/components/schemas/Null"
			}
		  ]
		},
		"Keccak": {
		  "title": "keccak",
		  "type": "string",
		  "description": "Hex representation of a Keccak 256 hash",
		  "pattern": "^0x[a-fA-F\\d]{1,64}$"
		},
		"Nonce": {
		  "title": "nonce",
		  "description": "A number only to be used once",
		  "$ref": "#/components/schemas/Integer"
		},
		"Null": {
		  "title": "null",
		  "type": "null",
		  "description": "Null"
		},
		"Integer": {
		  "title": "integer",
		  "type": "string",
		  "pattern": "^0x[a-fA-F0-9]+$",
		  "description": "Hex representation of the integer"
		},
		"Address": {
		  "title": "address",
		  "type": "string",
		  "pattern": "^0x[a-fA-F\\d]{40}$"
		},
		"Addresses": {
		  "title": "addresses",
		  "type": "array",
		  "description": "List of contract addresses from which to monitor events",
		  "items": {
			"$ref": "#/components/schemas/Address"
		  }
		},
		"Position": {
		  "title": "position",
		  "type": "string",
		  "description": "Hex representation of the storage slot where the variable exists",
		  "pattern": "^0x([a-fA-F0-9]?)+$"
		},
		"DataWord": {
		  "title": "dataWord",
		  "type": "string",
		  "description": "Hex representation of a 256 bit unit of data",
		  "pattern": "^0x([a-fA-F\\d]{64})?$"
		},
		"Bytes": {
		  "title": "bytes",
		  "type": "string",
		  "description": "Hex representation of a variable length byte array",
		  "pattern": "^0x([a-fA-F0-9]?)+$"
		}
	  },
	  "contentDescriptors": {
		"Block": {
		  "name": "block",
		  "summary": "A block",
		  "description": "A block object",
		  "schema": {
			"$ref": "#/components/schemas/Block"
		  }
		},
		"Null": {
		  "name": "Null",
		  "description": "JSON Null value",
		  "summary": "Null value",
		  "schema": {
			"$ref": "#/components/schemas/Null"
		  }
		},
		"Signature": {
		  "name": "signature",
		  "summary": "The signature.",
		  "required": true,
		  "schema": {
			"title": "signatureBytes",
			"type": "string",
			"description": "Hex representation of byte array between 2 and 65 chars long",
			"pattern": "0x^([A-Fa-f0-9]{2}){65}$"
		  }
		},
		"GasPrice": {
		  "name": "gasPrice",
		  "required": true,
		  "schema": {
			"title": "gasPriceResult",
			"description": "Integer of the current gas price",
			"$ref": "#/components/schemas/Integer"
		  }
		},
		"Transaction": {
		  "required": true,
		  "name": "transaction",
		  "schema": {
			"$ref": "#/components/schemas/Transaction"
		  }
		},
		"TransactionResult": {
		  "name": "transactionResult",
		  "description": "Returns a transaction or null",
		  "schema": {
			"title": "TransactionOrNull",
			"oneOf": [
			  {
				"$ref": "#/components/schemas/Transaction"
			  },
			  {
				"$ref": "#/components/schemas/Null"
			  }
			]
		  }
		},
		"UncleCountResult": {
		  "name": "uncleCountResult",
		  "description": "The Number of total uncles in the given block",
		  "schema": {
			"$ref": "#/components/schemas/IntegerOrNull"
		  }
		},
		"Message": {
		  "name": "message",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/Bytes"
		  }
		},
		"Filter": {
		  "name": "filter",
		  "required": true,
		  "schema": {
			"title": "filter",
			"type": "object",
			"description": "A filter used to monitor the blockchain for log/events",
			"properties": {
			  "fromBlock": {
				"$ref": "#/components/schemas/BlockNumber"
			  },
			  "toBlock": {
				"$ref": "#/components/schemas/BlockNumber"
			  },
			  "address": {
				"title": "oneOrArrayOfAddresses",
				"oneOf": [
				  {
					"$ref": "#/components/schemas/Address"
				  },
				  {
					"$ref": "#/components/schemas/Addresses"
				  }
				]
			  },
			  "topics": {
				"$ref": "#/components/schemas/Topics"
			  }
			}
		  }
		},
		"Address": {
		  "name": "address",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/Address"
		  }
		},
		"BlockHash": {
		  "name": "blockHash",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/BlockHash"
		  }
		},
		"Nonce": {
		  "name": "nonce",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/Nonce"
		  }
		},
		"Position": {
		  "name": "key",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/Position"
		  }
		},
		"Logs": {
		  "name": "logs",
		  "description": "An array of all logs matching filter with given id.",
		  "schema": {
			"title": "setOfLogs",
			"type": "array",
			"items": {
			  "$ref": "#/components/schemas/Log"
			}
		  }
		},
		"FilterId": {
		  "name": "filterId",
		  "schema": {
			"$ref": "#/components/schemas/FilterId"
		  }
		},
		"BlockNumber": {
		  "name": "blockNumber",
		  "required": true,
		  "schema": {
			"title": "blockNumberOrTag",
			"oneOf": [
			  {
				"$ref": "#/components/schemas/BlockNumber"
			  },
			  {
				"$ref": "#/components/schemas/BlockNumberTag"
			  }
			]
		  }
		},
		"TransactionHash": {
		  "name": "transactionHash",
		  "required": true,
		  "schema": {
			"$ref": "#/components/schemas/TransactionHash"
		  }
		}
	  }
	}
  }