-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathProperties.java
More file actions
25 lines (20 loc) · 976 Bytes
/
Properties.java
File metadata and controls
25 lines (20 loc) · 976 Bytes
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
package com.casper.sdk;
import java.util.HashMap;
import java.util.Map;
/**
* Project properties file
*/
public class Properties {
public static String CHAIN_GET_STATE_ROOT_HASH = "chain_get_state_root_hash";
public static String STATE_GET_ITEM = "state_get_item";
public static String STATE_GET_BALANCE = "state_get_balance";
public static String STATE_GET_AUCTION_INFO = "state_get_auction_info";
public static String INFO_GET_PEERS = "info_get_peers";
public static String INFO_GET_STATUS = "info_get_status";
public static String INFO_GET_DEPLOY = "info_get_deploy";
public static String CHAIN_GET_BLOCK = "chain_get_block";
public static String CHAIN_GET_BLOCK_TRANSFERS = "chain_get_block_transfers";
public static String CHAIN_GET_ERA_INFO_BY_SWITCH_BLOCK = "chain_get_era_info_by_switch_block";
public static String RPC_DISCOVER = "rpc.discover";
public static Map<String, String> properties = new HashMap<>();
}