@@ -7,15 +7,35 @@ class ActionsEnum:
77 BALANCE_MULTI : str = "balancemulti"
88 BALANCE : str = "balance"
99 CHAIN_SIZE : str = "chainsize"
10+ DAILY_AVG_BLOCK_SIZE : str = "dailyavgblocksize"
11+ DAILY_AVG_BLOCK_TIME : str = "dailyavgblocktime"
12+ DAILY_AVG_GAS_LIMIT : str = "dailyavggaslimit"
13+ DAILY_AVG_GAS_PRICE : str = "dailyavggasprice"
14+ DAILY_AVG_HASH_RATE : str = "dailyavghashrate"
15+ DAILY_AVG_NET_DIFFICULTY : str = "dailyavgnetdifficulty"
16+ DAILY_BLK_COUNT : str = "dailyblkcount"
17+ DAILY_BLOCK_REWARDS : str = "dailyblockrewards"
18+ DAILY_GAS_USED : str = "dailygasused"
19+ DAILY_NET_UTILIZATION : str = "dailynetutilization"
20+ DAILY_NEW_ADDRESS : str = "dailynewaddress"
21+ DAILY_TX : str = "dailytx"
22+ DAILY_TXN_FEE : str = "dailytxnfee"
23+ DAILY_UNCLE_BLK_COUNT : str = "dailyuncleblkcount"
1024 ETH_BLOCK_NUMBER : str = "eth_blockNumber"
1125 ETH_CALL : str = "eth_call"
26+ ETH_DAILY_MARKET_CAP : str = "ethdailymarketcap"
27+ ETH_DAILY_PRICE : str = "ethdailyprice"
1228 ETH_ESTIMATE_GAS : str = "eth_estimateGas"
1329 ETH_GAS_PRICE : str = "eth_gasPrice"
1430 ETH_GET_BLOCK_BY_NUMBER : str = "eth_getBlockByNumber"
15- ETH_GET_BLOCK_TRANSACTION_COUNT_BY_NUMBER : str = "eth_getBlockTransactionCountByNumber"
16- ETH_GET_TRANSACTION_BY_BLOCK_NUMBER_AND_INDEX : str = "eth_getTransactionByBlockNumberAndIndex"
31+ ETH_GET_BLOCK_TRANSACTION_COUNT_BY_NUMBER : str = (
32+ "eth_getBlockTransactionCountByNumber"
33+ )
1734 ETH_GET_CODE : str = "eth_getCode"
1835 ETH_GET_STORAGE_AT : str = "eth_getStorageAt"
36+ ETH_GET_TRANSACTION_BY_BLOCK_NUMBER_AND_INDEX : str = (
37+ "eth_getTransactionByBlockNumberAndIndex"
38+ )
1939 ETH_GET_TRANSACTION_BY_HASH : str = "eth_getTransactionByHash"
2040 ETH_GET_TRANSACTION_COUNT : str = "eth_getTransactionCount"
2141 ETH_GET_TRANSACTION_RECEIPT : str = "eth_getTransactionReceipt"
@@ -32,10 +52,12 @@ class ActionsEnum:
3252 GET_SOURCE_CODE : str = "getsourcecode"
3353 GET_STATUS : str = "getstatus"
3454 GET_TX_RECEIPT_STATUS : str = "gettxreceiptstatus"
55+ TOKEN_BALANCE_HISTORY : str = "tokenbalancehistory"
3556 TOKEN_BALANCE : str = "tokenbalance"
57+ TOKEN_INFO : str = "tokeninfo"
58+ TOKEN_SUPPLY_HISTORY : str = "tokensupplyhistory"
3659 TOKEN_SUPPLY : str = "tokensupply"
3760 TOKENNFTTX : str = "tokennfttx"
3861 TOKENTX : str = "tokentx"
3962 TXLIST_INTERNAL : str = "txlistinternal"
4063 TXLIST : str = "txlist"
41-
0 commit comments