-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.example.js
55 lines (49 loc) · 984 Bytes
/
config.example.js
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
47
48
49
50
51
52
53
54
55
/**
* base info url
*/
export const BASE_INFO_URL = "";
/**
* gql : get balance , pending tx and broadcast, etc.
* explorer : target browser for tx
* tx : get tx
*/
/** main net url */
export const MainnetUrlConfig = {
gql: "",
explorer: "",
tx: "",
};
/**dev net url */
export const DevnetUrlConfig = {
gql: "",
explorer: "",
tx: "",
};
export const TokenBuildUrl = ""
/**berkeley net url */
// export const BerkeleyUrlConfig = {
// gql: "",
// explorer: "",
// tx: "",
// };
/**testworld2.0 net url */
// export const Testworld2UrlConfig = {
// gql: "",
// explorer: "",
// tx: "",
// };
/**
* The current network configuration version number. If cached locally, increase the current version.
*/
export const NET_CONFIG_VERSION = 1038;
/**
* token build keys
*/
export const react_private_keys = `
-----BEGIN PRIVATE KEY-----
-----END PRIVATE KEY-----
`
export const node_public_keys = `
-----BEGIN PUBLIC KEY-----
-----END PUBLIC KEY-----
`