-
Notifications
You must be signed in to change notification settings - Fork 200
Expand file tree
/
Copy pathforest__rpc__tests__rpc__v1.snap
More file actions
8106 lines (8106 loc) · 228 KB
/
Copy pathforest__rpc__tests__rpc__v1.snap
File metadata and controls
8106 lines (8106 loc) · 228 KB
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
---
source: src/rpc/mod.rs
expression: spec
---
openrpc: 1.3.2
info:
title: forest
version: 0.33.6
methods:
- name: Filecoin.AuthNew
params:
- name: permissions
required: true
schema:
type:
- array
- "null"
items:
type: string
- name: expirationSecs
required: true
schema:
type:
- integer
- "null"
format: int64
result:
name: Filecoin.AuthNew.Result
required: true
schema:
$ref: "#/components/schemas/Base64String"
paramStructure: by-position
- name: Filecoin.AuthVerify
params:
- name: headerRaw
required: true
schema:
type: string
result:
name: Filecoin.AuthVerify.Result
required: false
schema:
type:
- array
- "null"
items:
type: string
paramStructure: by-position
- name: Forest.SnapshotGC
params:
- name: blocking
required: true
schema:
type: boolean
result:
name: Forest.SnapshotGC.Result
required: true
schema:
type: "null"
paramStructure: by-position
- name: Filecoin.ChainExport
params:
- name: params
required: true
schema:
$ref: "#/components/schemas/ChainExportParams"
result:
name: Filecoin.ChainExport.Result
required: true
schema:
$ref: "#/components/schemas/ApiExportResult"
paramStructure: by-position
- name: Filecoin.ChainGetBlock
description: Returns the block with the specified CID.
params:
- name: blockCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetBlock.Result
required: true
schema:
$ref: "#/components/schemas/BlockHeader"
paramStructure: by-position
- name: Filecoin.ChainGetBlockMessages
description: Returns all messages from the specified block.
params:
- name: blockCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetBlockMessages.Result
required: true
schema:
$ref: "#/components/schemas/BlockMessages"
paramStructure: by-position
- name: Filecoin.ChainGetEvents
description: Returns the events under the given event AMT root CID.
params:
- name: rootCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetEvents.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Event"
paramStructure: by-position
- name: Filecoin.ChainGetGenesis
params: []
result:
name: Filecoin.ChainGetGenesis.Result
required: false
schema:
anyOf:
- $ref: "#/components/schemas/Tipset"
- type: "null"
paramStructure: by-position
- name: Filecoin.ChainGetFinalizedTipSet
description: "Returns the latest F3 finalized tipset, or falls back to EC finality if F3 is not operational on the node or if the F3 finalized tipset is further back than EC finalized tipset."
params: []
result:
name: Filecoin.ChainGetFinalizedTipSet.Result
required: true
schema:
$ref: "#/components/schemas/Tipset"
paramStructure: by-position
- name: Filecoin.ChainGetMessage
description: Returns the message with the specified CID.
params:
- name: messageCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetMessage.Result
required: true
schema:
$ref: "#/components/schemas/Message"
paramStructure: by-position
- name: Filecoin.ChainGetMessagesInTipset
params:
- name: tipsetKey
required: true
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetMessagesInTipset.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/ApiMessage"
paramStructure: by-position
- name: Forest.ChainGetMinBaseFee
params:
- name: lookback
required: true
schema:
type: integer
format: uint32
minimum: 0
result:
name: Forest.ChainGetMinBaseFee.Result
required: true
schema:
type: string
paramStructure: by-position
- name: Filecoin.ChainGetParentMessages
description: Returns the messages included in the blocks of the parent tipset.
params:
- name: blockCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetParentMessages.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/ApiMessage"
paramStructure: by-position
- name: Filecoin.ChainGetParentReceipts
description: Returns the message receipts included in the blocks of the parent tipset.
params:
- name: blockCid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetParentReceipts.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/ApiReceipt"
paramStructure: by-position
- name: Filecoin.ChainGetPath
description: Returns the path between the two specified tipsets.
params:
- name: from
required: true
schema:
$ref: "#/components/schemas/NonEmpty_Array_of_Cid"
- name: to
required: true
schema:
$ref: "#/components/schemas/NonEmpty_Array_of_Cid"
result:
name: Filecoin.ChainGetPath.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/PathChange"
paramStructure: by-position
- name: Filecoin.ChainGetTipSet
description: Returns the tipset with the specified CID.
params:
- name: tipsetKey
required: true
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetTipSet.Result
required: true
schema:
$ref: "#/components/schemas/Tipset"
paramStructure: by-position
- name: Filecoin.ChainGetTipSetAfterHeight
description: "Looks back and returns the tipset at the specified epoch.\n If there are no blocks at the given epoch,\n returns the first non-nil tipset at a later epoch."
params:
- name: height
required: true
schema:
type: integer
format: int64
- name: tipsetKey
required: true
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetTipSetAfterHeight.Result
required: true
schema:
$ref: "#/components/schemas/Tipset"
paramStructure: by-position
- name: Filecoin.ChainGetTipSetByHeight
description: Returns the tipset at the specified height.
params:
- name: height
required: true
schema:
type: integer
format: int64
- name: tipsetKey
required: true
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainGetTipSetByHeight.Result
required: true
schema:
$ref: "#/components/schemas/Tipset"
paramStructure: by-position
- name: Filecoin.ChainHasObj
description: Checks if a given CID exists in the chain blockstore.
params:
- name: cid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainHasObj.Result
required: true
schema:
type: boolean
paramStructure: by-position
- name: Filecoin.ChainHead
description: Returns the chain head (heaviest tipset).
params: []
result:
name: Filecoin.ChainHead.Result
required: true
schema:
$ref: "#/components/schemas/Tipset"
paramStructure: by-position
- name: Filecoin.ChainReadObj
description: Reads IPLD nodes referenced by the specified CID from the chain blockstore and returns raw bytes.
params:
- name: cid
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainReadObj.Result
required: true
schema:
$ref: "#/components/schemas/Base64String"
paramStructure: by-position
- name: Filecoin.ChainSetHead
params:
- name: tsk
required: true
schema:
$ref: "#/components/schemas/NonEmpty_Array_of_Cid"
result:
name: Filecoin.ChainSetHead.Result
required: true
schema:
type: "null"
paramStructure: by-position
- name: Filecoin.ChainStatObj
params:
- name: objCid
required: true
schema:
$ref: "#/components/schemas/Cid"
- name: baseCid
required: true
schema:
anyOf:
- $ref: "#/components/schemas/Cid"
- type: "null"
result:
name: Filecoin.ChainStatObj.Result
required: true
schema:
$ref: "#/components/schemas/ObjStat"
paramStructure: by-position
- name: Filecoin.ChainTipSetWeight
description: Returns the weight of the specified tipset.
params:
- name: tipsetKey
required: true
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/Cid"
result:
name: Filecoin.ChainTipSetWeight.Result
required: true
schema:
$ref: "#/components/schemas/BigInt"
paramStructure: by-position
- name: Forest.ChainExport
params:
- name: params
required: true
schema:
$ref: "#/components/schemas/ForestChainExportParams"
result:
name: Forest.ChainExport.Result
required: true
schema:
$ref: "#/components/schemas/ApiExportResult"
paramStructure: by-position
- name: Forest.ChainExportDiff
params:
- name: params
required: true
schema:
$ref: "#/components/schemas/ForestChainExportDiffParams"
result:
name: Forest.ChainExportDiff.Result
required: true
schema:
type: "null"
paramStructure: by-position
- name: Forest.ChainExportStatus
params: []
result:
name: Forest.ChainExportStatus.Result
required: true
schema:
$ref: "#/components/schemas/ApiExportStatus"
paramStructure: by-position
- name: Forest.ChainExportCancel
params: []
result:
name: Forest.ChainExportCancel.Result
required: true
schema:
type: boolean
paramStructure: by-position
- name: Forest.ChainGetTipsetByParentState
params:
- name: parentState
required: true
schema:
$ref: "#/components/schemas/Cid"
result:
name: Forest.ChainGetTipsetByParentState.Result
required: false
schema:
anyOf:
- $ref: "#/components/schemas/Tipset"
- type: "null"
paramStructure: by-position
- name: Filecoin.Session
params: []
result:
name: Filecoin.Session.Result
required: true
schema:
type: string
format: uuid
paramStructure: by-position
- name: Filecoin.Shutdown
params: []
result:
name: Filecoin.Shutdown.Result
required: true
schema:
type: "null"
paramStructure: by-position
- name: Filecoin.StartTime
params: []
result:
name: Filecoin.StartTime.Result
required: true
schema:
type: string
format: date-time
paramStructure: by-position
- name: Filecoin.Version
params: []
result:
name: Filecoin.Version.Result
required: true
schema:
$ref: "#/components/schemas/PublicVersion"
paramStructure: by-position
- name: Filecoin.EthAccounts
description: Returns the list of addresses owned by the client; always empty since Forest does not manage private keys.
params: []
result:
name: Filecoin.EthAccounts.Result
required: false
schema:
type:
- array
- "null"
items:
type: string
paramStructure: by-position
- name: eth_accounts
description: Returns the list of addresses owned by the client; always empty since Forest does not manage private keys.
params: []
result:
name: eth_accounts.Result
required: false
schema:
type:
- array
- "null"
items:
type: string
paramStructure: by-position
- name: Filecoin.EthAddressToFilecoinAddress
description: Converts an EthAddress into an f410 Filecoin Address
params:
- name: ethAddress
required: true
schema:
$ref: "#/components/schemas/EthAddress"
result:
name: Filecoin.EthAddressToFilecoinAddress.Result
required: true
schema:
$ref: "#/components/schemas/Address"
paramStructure: by-position
- name: Filecoin.FilecoinAddressToEthAddress
description: Converts any Filecoin address to an EthAddress
params:
- name: filecoinAddress
required: true
schema:
$ref: "#/components/schemas/Address"
- name: blockParam
required: true
schema:
anyOf:
- $ref: "#/components/schemas/BlockNumberOrPredefined"
- type: "null"
result:
name: Filecoin.FilecoinAddressToEthAddress.Result
required: true
schema:
$ref: "#/components/schemas/EthAddress"
paramStructure: by-position
- name: Filecoin.EthBaseFee
description: Returns the calculated base fee of the upcoming tipset in attoFIL
params: []
result:
name: Filecoin.EthBaseFee.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: eth_baseFee
description: Returns the calculated base fee of the upcoming tipset in attoFIL
params: []
result:
name: eth_baseFee.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: Forest.BaseFeeByHeight
description: Returns the calculated upcoming base fee of the tipset at the given height in attoFIL
params:
- name: height
required: true
schema:
type: integer
format: int64
result:
name: Forest.BaseFeeByHeight.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: Filecoin.EthBlockNumber
description: "Returns the height of the latest executed tipset, which is the parent of the current head."
params: []
result:
name: Filecoin.EthBlockNumber.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: eth_blockNumber
description: "Returns the height of the latest executed tipset, which is the parent of the current head."
params: []
result:
name: eth_blockNumber.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: Filecoin.EthCall
description: "Executes a read-only message call against the given block state without creating an on-chain transaction, returning the call output."
params:
- name: tx
required: true
schema:
$ref: "#/components/schemas/EthCallMessage"
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: Filecoin.EthCall.Result
required: true
schema:
$ref: "#/components/schemas/EthBytes"
paramStructure: by-position
- name: eth_call
description: "Executes a read-only message call against the given block state without creating an on-chain transaction, returning the call output."
params:
- name: tx
required: true
schema:
$ref: "#/components/schemas/EthCallMessage"
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: eth_call.Result
required: true
schema:
$ref: "#/components/schemas/EthBytes"
paramStructure: by-position
- name: Filecoin.EthChainId
description: Returns the EIP-155 chain ID of the current network.
params: []
result:
name: Filecoin.EthChainId.Result
required: true
schema:
type: string
paramStructure: by-position
- name: eth_chainId
description: Returns the EIP-155 chain ID of the current network.
params: []
result:
name: eth_chainId.Result
required: true
schema:
type: string
paramStructure: by-position
- name: Filecoin.EthEstimateGas
description: Estimates the amount of gas required to execute the given transaction.
params:
- name: tx
required: true
schema:
$ref: "#/components/schemas/EthCallMessage"
- name: blockParam
required: true
schema:
anyOf:
- $ref: "#/components/schemas/BlockNumberOrHash"
- type: "null"
result:
name: Filecoin.EthEstimateGas.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: eth_estimateGas
description: Estimates the amount of gas required to execute the given transaction.
params:
- name: tx
required: true
schema:
$ref: "#/components/schemas/EthCallMessage"
- name: blockParam
required: true
schema:
anyOf:
- $ref: "#/components/schemas/BlockNumberOrHash"
- type: "null"
result:
name: eth_estimateGas.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: Filecoin.EthFeeHistory
description: "Returns historical gas information for a range of blocks, including base fee per gas, gas used ratio, and priority fee percentiles."
params:
- name: blockCount
required: true
schema:
$ref: "#/components/schemas/EthUint64"
- name: newestBlockNumber
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
- name: rewardPercentiles
required: true
schema:
type:
- array
- "null"
items:
type: number
format: double
result:
name: Filecoin.EthFeeHistory.Result
required: true
schema:
$ref: "#/components/schemas/EthFeeHistoryResult"
paramStructure: by-position
- name: eth_feeHistory
description: "Returns historical gas information for a range of blocks, including base fee per gas, gas used ratio, and priority fee percentiles."
params:
- name: blockCount
required: true
schema:
$ref: "#/components/schemas/EthUint64"
- name: newestBlockNumber
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
- name: rewardPercentiles
required: true
schema:
type:
- array
- "null"
items:
type: number
format: double
result:
name: eth_feeHistory.Result
required: true
schema:
$ref: "#/components/schemas/EthFeeHistoryResult"
paramStructure: by-position
- name: Filecoin.EthGasPrice
description: Returns the current gas price in attoFIL
params: []
result:
name: Filecoin.EthGasPrice.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: eth_gasPrice
description: Returns the current gas price in attoFIL
params: []
result:
name: eth_gasPrice.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: Filecoin.EthGetBalance
description: Returns the balance of an Ethereum address at the specified block state
params:
- name: address
required: true
schema:
$ref: "#/components/schemas/EthAddress"
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: Filecoin.EthGetBalance.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: eth_getBalance
description: Returns the balance of an Ethereum address at the specified block state
params:
- name: address
required: true
schema:
$ref: "#/components/schemas/EthAddress"
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: eth_getBalance.Result
required: true
schema:
$ref: "#/components/schemas/EthBigInt"
paramStructure: by-position
- name: Filecoin.EthGetBlockByHash
description: "Retrieves a block by its hash, optionally including full transaction objects."
params:
- name: blockHash
required: true
schema:
$ref: "#/components/schemas/EthHash"
- name: fullTxInfo
required: true
schema:
type: boolean
result:
name: Filecoin.EthGetBlockByHash.Result
required: true
schema:
$ref: "#/components/schemas/Block"
paramStructure: by-position
- name: eth_getBlockByHash
description: "Retrieves a block by its hash, optionally including full transaction objects."
params:
- name: blockHash
required: true
schema:
$ref: "#/components/schemas/EthHash"
- name: fullTxInfo
required: true
schema:
type: boolean
result:
name: eth_getBlockByHash.Result
required: true
schema:
$ref: "#/components/schemas/Block"
paramStructure: by-position
- name: Filecoin.EthGetBlockByNumber
description: Retrieves a block by its number or a special tag.
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
- name: fullTxInfo
required: true
schema:
type: boolean
result:
name: Filecoin.EthGetBlockByNumber.Result
required: true
schema:
$ref: "#/components/schemas/Block"
paramStructure: by-position
- name: eth_getBlockByNumber
description: Retrieves a block by its number or a special tag.
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
- name: fullTxInfo
required: true
schema:
type: boolean
result:
name: eth_getBlockByNumber.Result
required: true
schema:
$ref: "#/components/schemas/Block"
paramStructure: by-position
- name: Filecoin.EthGetBlockReceipts
description: "Retrieves all transaction receipts for a block by its number, hash or a special tag."
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: Filecoin.EthGetBlockReceipts.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/EthTxReceipt"
paramStructure: by-position
- name: eth_getBlockReceipts
description: "Retrieves all transaction receipts for a block by its number, hash or a special tag."
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: eth_getBlockReceipts.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/EthTxReceipt"
paramStructure: by-position
- name: Filecoin.EthGetBlockReceiptsLimited
description: "Retrieves all transaction receipts for a block identified by its number, hash or a special tag along with an optional limit on the chain epoch for state resolution."
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
- name: limit
required: true
schema:
type: integer
format: int64
result:
name: Filecoin.EthGetBlockReceiptsLimited.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/EthTxReceipt"
paramStructure: by-position
- name: eth_getBlockReceiptsLimited
description: "Retrieves all transaction receipts for a block identified by its number, hash or a special tag along with an optional limit on the chain epoch for state resolution."
params:
- name: blockParam
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
- name: limit
required: true
schema:
type: integer
format: int64
result:
name: eth_getBlockReceiptsLimited.Result
required: false
schema:
type:
- array
- "null"
items:
$ref: "#/components/schemas/EthTxReceipt"
paramStructure: by-position
- name: Filecoin.EthGetBlockTransactionCountByHash
description: Returns the number of messages in the tipset identified by the given block hash.
params:
- name: blockHash
required: true
schema:
$ref: "#/components/schemas/EthHash"
result:
name: Filecoin.EthGetBlockTransactionCountByHash.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: eth_getBlockTransactionCountByHash
description: Returns the number of messages in the tipset identified by the given block hash.
params:
- name: blockHash
required: true
schema:
$ref: "#/components/schemas/EthHash"
result:
name: eth_getBlockTransactionCountByHash.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: Filecoin.EthGetBlockTransactionCountByNumber
description: Returns the number of transactions in a block identified by its block number or a special tag.
params:
- name: blockNumber
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
result:
name: Filecoin.EthGetBlockTransactionCountByNumber.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: eth_getBlockTransactionCountByNumber
description: Returns the number of transactions in a block identified by its block number or a special tag.
params:
- name: blockNumber
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrPredefined"
result:
name: eth_getBlockTransactionCountByNumber.Result
required: true
schema:
$ref: "#/components/schemas/EthUint64"
paramStructure: by-position
- name: Filecoin.EthGetCode
description: "Retrieves the contract code at a specific address and block state, identified by its number, hash, or a special tag."
params:
- name: ethAddress
required: true
schema:
$ref: "#/components/schemas/EthAddress"
- name: blockNumberOrHash
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: Filecoin.EthGetCode.Result
required: true
schema:
$ref: "#/components/schemas/EthBytes"
paramStructure: by-position
- name: eth_getCode
description: "Retrieves the contract code at a specific address and block state, identified by its number, hash, or a special tag."
params:
- name: ethAddress
required: true
schema:
$ref: "#/components/schemas/EthAddress"
- name: blockNumberOrHash
required: true
schema:
$ref: "#/components/schemas/BlockNumberOrHash"
result:
name: eth_getCode.Result
required: true
schema:
$ref: "#/components/schemas/EthBytes"