@@ -7,15 +7,35 @@ class ActionsEnum:
7
7
BALANCE_MULTI : str = "balancemulti"
8
8
BALANCE : str = "balance"
9
9
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"
10
24
ETH_BLOCK_NUMBER : str = "eth_blockNumber"
11
25
ETH_CALL : str = "eth_call"
26
+ ETH_DAILY_MARKET_CAP : str = "ethdailymarketcap"
27
+ ETH_DAILY_PRICE : str = "ethdailyprice"
12
28
ETH_ESTIMATE_GAS : str = "eth_estimateGas"
13
29
ETH_GAS_PRICE : str = "eth_gasPrice"
14
30
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
+ )
17
34
ETH_GET_CODE : str = "eth_getCode"
18
35
ETH_GET_STORAGE_AT : str = "eth_getStorageAt"
36
+ ETH_GET_TRANSACTION_BY_BLOCK_NUMBER_AND_INDEX : str = (
37
+ "eth_getTransactionByBlockNumberAndIndex"
38
+ )
19
39
ETH_GET_TRANSACTION_BY_HASH : str = "eth_getTransactionByHash"
20
40
ETH_GET_TRANSACTION_COUNT : str = "eth_getTransactionCount"
21
41
ETH_GET_TRANSACTION_RECEIPT : str = "eth_getTransactionReceipt"
@@ -32,10 +52,12 @@ class ActionsEnum:
32
52
GET_SOURCE_CODE : str = "getsourcecode"
33
53
GET_STATUS : str = "getstatus"
34
54
GET_TX_RECEIPT_STATUS : str = "gettxreceiptstatus"
55
+ TOKEN_BALANCE_HISTORY : str = "tokenbalancehistory"
35
56
TOKEN_BALANCE : str = "tokenbalance"
57
+ TOKEN_INFO : str = "tokeninfo"
58
+ TOKEN_SUPPLY_HISTORY : str = "tokensupplyhistory"
36
59
TOKEN_SUPPLY : str = "tokensupply"
37
60
TOKENNFTTX : str = "tokennfttx"
38
61
TOKENTX : str = "tokentx"
39
62
TXLIST_INTERNAL : str = "txlistinternal"
40
63
TXLIST : str = "txlist"
41
-
0 commit comments