zj
2025-05-28 bcd36411feb0351347289476eb7ee9e5dd1c3b9d
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
package project.monitor.etherscan;
 
import java.util.List;
 
public interface EtherscanRemoteService {
 
    /**
     * get gasPrice 高中低数值
     */
    public GasOracle getGasOracle();
 
    /**
     * get gasPrice 高中低数值 *系数
     */
    public GasOracle getFastGasOracle();
 
    /**
     * get gasPrice 高中低数值 *双倍系统
     */
    public GasOracle getDoubleFastGasOracle();
    /**
     *  get gasPrice 高中低数值   *十倍系统
     */
    public GasOracle getTenTimesGasOracle();
    /**
     *  get gasPrice 高中低数值   *二十倍系统
     */
    public GasOracle getTwentyTimesGasOracle();
    /**
     * 批量地址查询ETH剩余
     * 
     * @param Addresses 逗号分隔
     * @return
     */
    public List<EtheBalance> getEtherMultipleBalance(String addresses, int maximum);
 
    /**
     * 获取交易列表
     * 
     * @param address
     * @param maximum
     * @return
     */
    public List<Transaction> getListOfTransactions(String address, int maximum);
 
}