-
Notifications
You must be signed in to change notification settings - Fork 26
/
lite-explorer.config.json
151 lines (147 loc) · 5.07 KB
/
lite-explorer.config.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
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"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-memento?v=2.0.2",
"config": {
"apiBasePath": "http://localhost:3001/api/explorer"
}
}],
"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/memento/block/basic",
"pageCritical": true,
"children": {
"confirmations": [
{ "def": "module://aleth.io/block/confirmations" }
]
}
}, {
"def": "module://aleth.io/memento/block/txs",
"pageCritical": true
}, {
"def": "module://aleth.io/memento/block/advanced",
"pageCritical": true
}, {
"def": "module://aleth.io/memento/block/logs-bloom",
"pageCritical": true
}]
}
}, {
"def": "page://aleth.io/uncle",
"children": {
"content": [{
"def": "module://aleth.io/memento/uncle/details",
"pageCritical": true
}]
}
}, {
"def": "page://aleth.io/tx",
"children": {
"sidebar": [{
"def": "context://aleth.io/memento/tx/parentBlock",
"children": [{
"def": "module://aleth.io/tx/list"
}]
}],
"content": [{
"def": "context://aleth.io/memento/tx/parentBlock",
"pageCritical": true,
"children": [{
"def": "module://aleth.io/memento/tx/basic",
"children": {
"blockConfirmations": [{
"def": "context://aleth.io/memento/tx/parentBlock",
"children": [{
"def": "module://aleth.io/block/confirmations"
}]
}]
}
}, {
"def": "module://aleth.io/memento/tx/advanced"
}, {
"def": "module://aleth.io/memento/tx/summary"
}, {
"def": "module://aleth.io/memento/tx/payload"
}]
}]
}
}, {
"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/memento/account/details", "pageCritical": true }
],
"bottom": [
{ "def": "module://aleth.io/memento/account/txs" },
{ "def": "module://aleth.io/memento/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"
}]
}
}