@@ -358,7 +358,9 @@ methods:
358
358
# Execute methods
359
359
# --------------------------------------------------------------------------
360
360
- name : eth_call
361
- description : Executes a new message call immediately without creating a transaction on the blockchain.
361
+ description : |
362
+ <Note>Currently only works on the latest block.</Note>
363
+ Executes a new message call immediately without creating a transaction on the blockchain.
362
364
params :
363
365
- name : Transaction
364
366
required : true
@@ -389,7 +391,9 @@ methods:
389
391
value : " 0x"
390
392
391
393
- name : eth_estimateGas
392
- description : Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
394
+ description : |
395
+ <Note>Currently only works on the latest block.</Note>
396
+ Generates and returns an estimate of how much gas is necessary to allow the transaction to complete.
393
397
params :
394
398
- name : Transaction
395
399
required : true
@@ -569,19 +573,8 @@ methods:
569
573
# --------------------------------------------------------------------------
570
574
- name : eth_getLogs
571
575
description : |
576
+ <Note>Currently only supports up to 4 topics and a range up to 50 blocks.</Note>
572
577
Returns an array of all logs matching the specified filter.
573
- ### Supported Block Ranges
574
- Here are the block ranges you're able to submit in a single query, depending on your plan tier:
575
-
576
- > ⚠️ Note: All responses will be capped at 150MB.
577
-
578
- | Chain | Free | Pay As You Go | Enterprise |
579
- |-------|------|---------------|------------|
580
- | Ethereum and Layer 2s (Ethereum, Base, Optimism, Arbitrum, Worldchain) | unlimited | unlimited | unlimited |
581
- | Polygon | 500 | 2000 | unlimited |
582
- | Monad | 500 | 1000 | unlimited |
583
- | BSC | 500 | 10000 | 10000 |
584
- | All Other Chains | 500 | 10000 | unlimited |
585
578
params :
586
579
- name : Filter
587
580
required : true
@@ -620,7 +613,9 @@ methods:
620
613
# State methods
621
614
# --------------------------------------------------------------------------
622
615
- name : eth_getBalance
623
- description : Returns the balance of the account of a given address.
616
+ description : |
617
+ <Note>Currently only works on the latest block.</Note>
618
+ Returns the balance of the account of a given address.
624
619
params :
625
620
- name : Address
626
621
required : true
@@ -649,7 +644,9 @@ methods:
649
644
value : " 0x1cfe56f3795885980000"
650
645
651
646
- name : eth_getStorageAt
652
- description : Returns the value from a storage position at a given address.
647
+ description : |
648
+ <Note>Currently only works on the latest block.</Note>
649
+ Returns the value from a storage position at a given address.
653
650
params :
654
651
- name : Address
655
652
required : true
@@ -685,7 +682,9 @@ methods:
685
682
value : " 0x0000000000000000000000000000000000000000000000000000000000000000"
686
683
687
684
- name : eth_getTransactionCount
688
- description : Returns the number of transactions sent from an address.
685
+ description : |
686
+ <Note>Currently only works on the latest block.</Note>
687
+ Returns the number of transactions sent from an address.
689
688
params :
690
689
- name : Address
691
690
required : true
@@ -714,7 +713,9 @@ methods:
714
713
value : " 0x1"
715
714
716
715
- name : eth_getCode
717
- description : Returns the code at a given address.
716
+ description : |
717
+ <Note>Currently only works on the latest block.</Note>
718
+ Returns the code at a given address.
718
719
params :
719
720
- name : Address
720
721
required : true
0 commit comments