@@ -7,15 +7,35 @@ class ActionsEnum:
77BALANCE_MULTI :str = "balancemulti"
88BALANCE :str = "balance"
99CHAIN_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"
1024ETH_BLOCK_NUMBER :str = "eth_blockNumber"
1125ETH_CALL :str = "eth_call"
26+ ETH_DAILY_MARKET_CAP :str = "ethdailymarketcap"
27+ ETH_DAILY_PRICE :str = "ethdailyprice"
1228ETH_ESTIMATE_GAS :str = "eth_estimateGas"
1329ETH_GAS_PRICE :str = "eth_gasPrice"
1430ETH_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+ )
1734ETH_GET_CODE :str = "eth_getCode"
1835ETH_GET_STORAGE_AT :str = "eth_getStorageAt"
36+ ETH_GET_TRANSACTION_BY_BLOCK_NUMBER_AND_INDEX :str = (
37+ "eth_getTransactionByBlockNumberAndIndex"
38+ )
1939ETH_GET_TRANSACTION_BY_HASH :str = "eth_getTransactionByHash"
2040ETH_GET_TRANSACTION_COUNT :str = "eth_getTransactionCount"
2141ETH_GET_TRANSACTION_RECEIPT :str = "eth_getTransactionReceipt"
@@ -32,10 +52,12 @@ class ActionsEnum:
3252GET_SOURCE_CODE :str = "getsourcecode"
3353GET_STATUS :str = "getstatus"
3454GET_TX_RECEIPT_STATUS :str = "gettxreceiptstatus"
55+ TOKEN_BALANCE_HISTORY :str = "tokenbalancehistory"
3556TOKEN_BALANCE :str = "tokenbalance"
57+ TOKEN_INFO :str = "tokeninfo"
58+ TOKEN_SUPPLY_HISTORY :str = "tokensupplyhistory"
3659TOKEN_SUPPLY :str = "tokensupply"
3760TOKENNFTTX :str = "tokennfttx"
3861TOKENTX :str = "tokentx"
3962TXLIST_INTERNAL :str = "txlistinternal"
4063TXLIST :str = "txlist"
41-