-
Notifications
You must be signed in to change notification settings - Fork 125
/
config.default.json
138 lines (134 loc) · 4.48 KB
/
config.default.json
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"GOOGLE_ANALYTICS_ID": null,
"HOTJAR_ID": null,
"SENTRY_ENABLED": false,
"pluginsUrl": "plugins",
"plugins": [{
"uri": "plugin://aleth.io/eth-common?v=4.0.0"
}, {
"uri": "plugin://aleth.io/3box?v=1.1.1",
"config": {
"ipfsUrlMask": "https://ipfs.infura.io/ipfs/%s"
}
}, {
"uri": "plugin://aleth.io/eth-lite?v=4.2.0",
"config": {
"nodeUrl": "https://mainnet.infura.io/"
}
}],
"pages": [{
"def": "page://aleth.io/block",
"children": {
"sidebar": [{
"def": "context://aleth.io/block/list",
"children": [
{ "def": "module://aleth.io/block/list" }
]
}],
"content": [{
"def": "module://aleth.io/lite/block/details",
"pageCritical": true,
"children": {
"confirmations": [
{ "def": "module://aleth.io/block/confirmations" }
],
"txs": [
{ "def": "module://aleth.io/lite/block/txs" }
]
}
}]
}
}, {
"def": "page://aleth.io/uncle",
"children": {
"content": [{
"def": "module://aleth.io/lite/uncle/details",
"pageCritical": true
}]
}
}, {
"def": "page://aleth.io/tx",
"children": {
"sidebar": [{
"def": "context://aleth.io/lite/tx/parentBlock",
"children": [{
"def": "module://aleth.io/tx/list"
}]
}],
"content": [{
"def": "context://aleth.io/lite/tx/parentBlock",
"pageCritical": true,
"children": [{
"def": "module://aleth.io/lite/tx/details",
"children": {
"blockConfirmations": [{
"def": "context://aleth.io/lite/tx/parentBlock",
"children": [{
"def": "module://aleth.io/block/confirmations"
}]
}]
}
}]
}]
}
}, {
"def": "page://aleth.io/account",
"children": {
"identicon": [{
"def": "module://aleth.io/3box/profile",
"children": {
"fallback": [{ "def": "module://aleth.io/account/identicon" }]
}
}],
"top": [
{ "def": "module://aleth.io/lite/account/details", "pageCritical": true }
],
"bottom": [
{ "def": "module://aleth.io/lite/account/contract" }
]
}
}, {
"def": "page://aleth.io/dashboard",
"children": {
"content": [
{ "def": "module://aleth.io/search" },
{
"def": "context://aleth.io/dashboard/latestBlockRange",
"children": [
{
"def": "module://aleth.io/dashboard/charts",
"children": {
"content": [{
"def": "module://aleth.io/dashboard/blocksChart",
"children": {
"children": [
{
"def": "context://aleth.io/block/latest",
"children": [
{ "def": "module://aleth.io/dashboard/latestBlockInfo" }
]
}
]
}
}]
}
}
]
}
]
}
}],
"rootModules": {
"toolbarTop": [{
"def": "module://aleth.io/toolbar/search"
}],
"toolbarBottom": [{
"def": "module://aleth.io/toolbar/feedback"
}],
"topbar": [{
"def": "module://aleth.io/topbar/search"
}, {
"def": "module://aleth.io/topbar/feedback"
}]
}
}