-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathmint.json
More file actions
113 lines (113 loc) · 2.57 KB
/
mint.json
File metadata and controls
113 lines (113 loc) · 2.57 KB
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
{
"name": "Prism",
"logo": {
"light": "https://img.shields.io/badge/Prism-Diagnostic-7C3AED?style=for-the-badge",
"dark": "https://img.shields.io/badge/Prism-Diagnostic-A78BFA?style=for-the-badge"
},
"favicon": "/favicon.png",
"colors": {
"primary": "#7C3AED",
"light": "#A78BFA",
"dark": "#5B21B6"
},
"topbarLinks": [
{
"name": "GitHub",
"url": "https://github.com/prism-soroban/prism"
}
],
"anchors": [
{
"name": "Discord",
"icon": "discord",
"url": "https://discord.gg/placeholder"
}
],
"navigation": [
{
"group": "Getting Started",
"pages": [
"docs/introduction",
"docs/installation",
"docs/quickstart",
"docs/roadmap"
]
},
{
"group": "Core Concepts",
"pages": [
"docs/concepts/error-decoding",
"docs/concepts/execution-replay",
"docs/concepts/time-travel",
"docs/concepts/error-taxonomy"
]
},
{
"group": "CLI Reference",
"pages": [
"docs/cli/decode",
"docs/cli/inspect",
"docs/cli/trace",
"docs/cli/profile",
"docs/cli/diff",
"docs/cli/replay",
"docs/cli/whatif",
"docs/cli/export",
"docs/cli/serve",
"docs/cli/db-update"
]
},
{
"group": "Interfaces",
"pages": [
"docs/interfaces/cli",
"docs/interfaces/vscode",
"docs/interfaces/web-app",
"docs/interfaces/core-library"
]
},
{
"group": "Architecture",
"pages": [
"docs/architecture/overview",
"docs/architecture/decode-engine",
"docs/architecture/replay-engine",
"docs/architecture/breakpoint-controller",
"docs/architecture/what-if-engine",
"docs/architecture/shared-infrastructure"
]
},
{
"group": "API Reference",
"pages": [
"docs/api/decode-error",
"docs/api/resolve-contract-error",
"docs/api/replay-transaction",
"docs/api/profile-transaction",
"docs/api/diff-state"
]
},
{
"group": "Guides",
"pages": [
"docs/guides/debugging-transactions",
"docs/guides/resource-optimization",
"docs/guides/regression-testing",
"docs/guides/contributing-taxonomy"
]
}
],
"footerLinks": [
{
"name": "MIT License",
"url": "docs/license"
},
{
"name": "Contributing",
"url": "docs/contributing"
}
],
"footerSocials": {
"github": "https://github.com/prism-soroban/prism"
}
}