-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchainstack-hyperliquid-node-api.opencollection.json
More file actions
2793 lines (2793 loc) · 85.2 KB
/
Copy pathchainstack-hyperliquid-node-api.opencollection.json
File metadata and controls
2793 lines (2793 loc) · 85.2 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
{
"opencollection": "1.0.0",
"info": {
"name": "Chainstack Hyperliquid Node API",
"version": "1.0.0"
},
"items": [
{
"info": {
"name": "General",
"type": "folder"
},
"items": [
{
"info": {
"name": "debug_getRawBlock",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_get_raw_block",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the complete raw block data for a specific block. This method provides the entire block in its raw encoded format, including header and all transactions."
},
{
"info": {
"name": "debug_getRawHeader",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_get_raw_header",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw header data for a specific block. This method provides the complete block header in its raw encoded format, useful for low-level blockchain analysis and debugging."
},
{
"info": {
"name": "debug_getRawReceipts",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_get_raw_receipts",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw receipt data for all transactions in a specific block. This method provides complete receipt information in raw encoded format for all transactions in a block."
},
{
"info": {
"name": "debug_getRawTransaction",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_get_raw_transaction",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw transaction data for a specific transaction. This method provides the complete transaction in its raw encoded format, useful for low-level analysis and debugging."
},
{
"info": {
"name": "debug_traceBlockByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_trace_block",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns detailed trace information for all transactions in a specific block. This method provides comprehensive debugging information for an entire block, including call traces, gas usage, and execution details for each transaction."
},
{
"info": {
"name": "debug_traceBlockByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_trace_block_by_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns detailed trace information for all transactions in a specific block identified by block number. This method provides comprehensive debugging information for an entire block, including call traces, gas usage, and execution details for each transaction."
},
{
"info": {
"name": "debug_traceCall",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_trace_call",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Executes a call and returns detailed trace information without creating a transaction. This method simulates transaction execution and provides debugging information including call traces and state changes."
},
{
"info": {
"name": "debug_traceTransaction",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_debug_trace_transaction",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns detailed trace information for a specific transaction. This method provides comprehensive debugging information including call traces, state changes, and execution details."
},
{
"info": {
"name": "erigon_getHeaderByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_erigon_get_header_by_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get block header by number using Erigon-specific method on Hyperliquid EVM. Returns detailed header information."
},
{
"info": {
"name": "eth_bigBlockGasPrice",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_big_block_gas_price",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the gas price for large blocks on Hyperliquid EVM."
},
{
"info": {
"name": "eth_blobBaseFee",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_blob_base_fee",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the current base fee for blob transactions. This method provides the current pricing information needed for EIP-4844 blob transactions, essential for cost estimation and blob data submission."
},
{
"info": {
"name": "eth_blockNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_block_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of the most recent block. This method provides the current block height of the Hyperliquid EVM blockchain, which is essential for tracking blockchain state and synchronization."
},
{
"info": {
"name": "Eth_Call",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_call",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Executes a new message call immediately without creating a transaction on the blockchain. This method is used to call smart contract functions and retrieve data without modifying the blockchain state."
},
{
"info": {
"name": "eth_callMany",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_call_many",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Executes multiple call transactions in sequence without creating transactions on the blockchain."
},
{
"info": {
"name": "eth_chainId",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_chain_id",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the chain ID of the currently connected blockchain network. This method is essential for identifying the specific blockchain network and ensuring transaction compatibility."
},
{
"info": {
"name": "eth_createAccessList",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_create_access_list",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Generates an access list for a transaction to optimize gas usage."
},
{
"info": {
"name": "eth_estimateGas",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_estimate_gas",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Estimates the amount of gas required to execute a transaction without actually executing it on the blockchain. Only the latest block is supported on Hyperliquid."
},
{
"info": {
"name": "eth_feeHistory",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_fee_history",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns historical gas fee data for a range of blocks, including base fees and priority fees at specified percentiles."
},
{
"info": {
"name": "eth_gasPrice",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_gas_price",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the current gas price in wei as determined by the network."
},
{
"info": {
"name": "eth_getBalance",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_balance",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the balance of an account at a given block number."
},
{
"info": {
"name": "eth_getBlockByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_block_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns information about a block by its hash."
},
{
"info": {
"name": "eth_getBlockByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_block_by_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns information about a block by its number."
},
{
"info": {
"name": "eth_getBlockReceipts",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_block_receipts",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns all transaction receipts for a given block."
},
{
"info": {
"name": "eth_getBlockTransactionCountByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_block_transaction_count_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of transactions in a block by its hash."
},
{
"info": {
"name": "eth_getBlockTransactionCountByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_block_transaction_count_by_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of transactions in a block by its number."
},
{
"info": {
"name": "eth_getCode",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_code",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the bytecode of a smart contract at a given address and block."
},
{
"info": {
"name": "eth_getFilterChanges",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_filter_changes",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns an array of logs or block hashes that have occurred since the last poll for the specified filter. This method is used to retrieve new results from filters created with eth_newFilter or eth_newBlockFilter."
},
{
"info": {
"name": "eth_getFilterLogs",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_filter_logs",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns an array of all logs matching the filter with the given ID. Unlike eth_getFilterChanges, this method returns all matching logs from the entire filter range, not just changes since the last poll."
},
{
"info": {
"name": "eth_getHeaderByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_header_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the block header information for a given block hash. This method provides header data without the transaction list, offering a lightweight way to access block metadata when you have the block hash."
},
{
"info": {
"name": "eth_getHeaderByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_header_by_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the block header information for a given block number. This method provides header data without the transaction list, offering a lightweight way to access block metadata."
},
{
"info": {
"name": "eth_getLogs",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_logs",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns event logs that match specified filter criteria."
},
{
"info": {
"name": "eth_getProof",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_proof",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the Merkle proof for an account and optionally some storage keys."
},
{
"info": {
"name": "eth_getRawTransactionByBlockHashAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_raw_transaction_by_block_hash_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw transaction data by block hash and transaction index."
},
{
"info": {
"name": "eth_getRawTransactionByBlockNumberAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_raw_transaction_by_block_number_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw transaction data by block number and transaction index."
},
{
"info": {
"name": "eth_getRawTransactionByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_raw_transaction_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the raw transaction data by its hash."
},
{
"info": {
"name": "eth_getStorageAt",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_storage_at",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the value stored at a specific storage position in a smart contract."
},
{
"info": {
"name": "eth_getSystemTxsByBlockHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_system_txs_by_block_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns system transactions for a given block hash on Hyperliquid EVM."
},
{
"info": {
"name": "eth_getSystemTxsByBlockNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_system_txs_by_block_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns system transactions for a given block number on Hyperliquid EVM."
},
{
"info": {
"name": "eth_getTransactionByBlockHashAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_by_block_hash_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns transaction information by block hash and transaction index."
},
{
"info": {
"name": "eth_getTransactionByBlockNumberAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_by_block_number_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns transaction information by block number and transaction index."
},
{
"info": {
"name": "eth_getTransactionByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns transaction information by its hash."
},
{
"info": {
"name": "eth_getTransactionBySenderAndNonce",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_by_sender_and_nonce",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns transaction information for a specific sender address and nonce. This method is useful for tracking transactions when you know the sender and the sequence number of their transaction."
},
{
"info": {
"name": "eth_getTransactionCount",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_count",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of transactions sent from an address (the nonce)."
},
{
"info": {
"name": "eth_getTransactionReceipt",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_transaction_receipt",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the receipt of a transaction by its hash, containing execution results and event logs."
},
{
"info": {
"name": "eth_getUncleByBlockHashAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_uncle_by_block_hash_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns information about an uncle block by the block hash and uncle index position. Uncle blocks are valid blocks that were not included in the main chain but are referenced by the main chain blocks."
},
{
"info": {
"name": "eth_getUncleByBlockNumberAndIndex",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_uncle_by_block_number_and_index",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns information about an uncle block by the block number and uncle index position. Uncle blocks are valid blocks that were not included in the main chain but are referenced by the main chain blocks."
},
{
"info": {
"name": "eth_getUncleCountByBlockHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_uncle_count_by_block_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of uncle blocks for a given block hash."
},
{
"info": {
"name": "eth_getUncleCountByBlockNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_get_uncle_count_by_block_number",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of uncle blocks for a given block number."
},
{
"info": {
"name": "eth_maxPriorityFeePerGas",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_max_priority_fee_per_gas",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the current maximum priority fee per gas for EIP-1559 transactions. On Hyperliquid, this always returns zero."
},
{
"info": {
"name": "eth_newBlockFilter",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_new_block_filter",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a filter object to notify when new blocks arrive. Returns a filter ID that can be used with eth_getFilterChanges to retrieve new block hashes."
},
{
"info": {
"name": "eth_newFilter",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_new_filter",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Creates a filter object to notify when logs match the specified criteria. Returns a filter ID that can be used to retrieve matching logs and changes."
},
{
"info": {
"name": "eth_protocolVersion",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_protocol_version",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the current Ethereum protocol version supported by the node. This method helps verify protocol compatibility between client applications and the blockchain network."
},
{
"info": {
"name": "eth_sendRawTransaction",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_send_raw_transaction",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Submits a pre-signed transaction to the network for broadcasting and inclusion in a block."
},
{
"info": {
"name": "eth_simulateV1",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_simulate_v1",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Simulates transactions without actually executing them on the blockchain. This method allows for testing transaction outcomes, estimating gas usage, and validating transaction logic before submission."
},
{
"info": {
"name": "Eth_Syncing",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_syncing",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the synchronization status of the node."
},
{
"info": {
"name": "eth_uninstallFilter",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_uninstall_filter",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Uninstalls a filter with the given ID. Should be called when polling is no longer needed to free up server resources. Filters may also be automatically uninstalled if they are not polled for a period of time."
},
{
"info": {
"name": "eth_usingBigBlocks",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_eth_using_big_blocks",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns whether an address is using big blocks on Hyperliquid EVM."
},
{
"info": {
"name": "Net_Listening",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_net_listening",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns true if the client is actively listening for network connections. This method checks if the node is accepting incoming connections from peers on the network."
},
{
"info": {
"name": "net_peerCount",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_net_peer_count",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the number of peers currently connected to the client. This method provides information about the node's network connectivity and can be used to monitor network health and connectivity status."
},
{
"info": {
"name": "Net_Version",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_net_version",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Returns the current network ID. This method is used to identify which Ethereum network the client is connected to."
},
{
"info": {
"name": "ots_getApiLevel",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_api_level",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get the Otterscan API version level on Hyperliquid EVM. Check node compatibility with Otterscan block explorer features."
},
{
"info": {
"name": "ots_getBlockDetails",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_block_details",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get detailed block information by block number on Hyperliquid EVM. Includes transaction summaries and block metadata."
},
{
"info": {
"name": "ots_getBlockDetailsByHash",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_block_details_by_hash",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get detailed block information by block hash on Hyperliquid EVM. Includes transaction summaries and block metadata."
},
{
"info": {
"name": "ots_getBlockTransactions",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_block_transactions",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get paginated list of transactions in a block on Hyperliquid EVM. Supports pagination for large blocks."
},
{
"info": {
"name": "ots_getContractCreator",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_contract_creator",
"body": {
"type": "json",
"data": "{}"
}
},
"docs": "Get the creator address and transaction hash for a contract on Hyperliquid EVM. Identifies who deployed a smart contract."
},
{
"info": {
"name": "ots_getHeaderByNumber",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://{node_id}.p2pify.com/{api_key}/evm_ots_get_header_by_number",
"body": {
"type": "json",
"data": "{}"
}