forked from near/ecosystem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
roadmap.json
175 lines (175 loc) · 4.68 KB
/
roadmap.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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
[
{
"slug": "blockchain-protocol",
"name": "Blockchain Protocol",
"description": "",
"dependencies": []
},
{
"slug": "blockchain-client",
"name": "Blockchain Client",
"description": "",
"dependencies": ["blockchain-protocol"]
},
{
"slug": "blockchain-rpc",
"name": "RPC",
"description": "",
"dependencies": ["blockchain-client"]
},
{
"slug": "blockchain-query",
"name": "Blockchain Querying",
"description": "Query blockchain data from indexed database",
"dependencies": ["blockchain-rpc"]
},
{
"slug": "explorer",
"name": "Explorer",
"description": "Query blockchain data from indexed database",
"dependencies": [
"blockchain-rpc",
"blockchain-query"
]
},
{
"slug": "analytics",
"name": "Analytics Dashboard",
"description": "Dashboard with custom analytics on-chain",
"dependencies": [
"blockchain-rpc",
"blockchain-query"
]
},
{
"slug": "developer-console",
"name": "Developer Console",
"description": "Console to manage developer activity",
"dependencies": [
"blockchain-rpc",
"blockchain-query",
"explorer",
"analytics"
]
},
{
"slug": "account-viewer",
"name": "Account Viewer",
"description": "Tool to query on-chain data for given account",
"dependencies": [
"blockchain-rpc",
"blockchain-query"
]
},
{
"slug": "wallet-selector",
"name": "Wallet Selector",
"description": "Tool to select between different wallets",
"dependencies": [
"blockchain-rpc",
"blockchain-query"
]
},
{
"slug": "wallet-sdk",
"name": "Wallet SDK",
"description": "SDK to develop wallets",
"dependencies": [
"account-viewer",
"wallet-selector",
"gateway-payment",
"gateway-ad",
"onramp",
"blockchain-lightclient"
]
},
{
"slug": "wallet",
"name": "Wallet",
"description": "A way to access identity and assets on-chain",
"dependencies": [
"wallet-sdk",
"contract-audit-registry"
]
},
{
"slug": "contract-audit-registry",
"name": "Contract Audit Regsitry",
"description": "Maintain registry of the contracts audits",
"dependencies": [
"contract-sdk"
]
},
{
"slug": "contract-sdk",
"name": "Contract Development",
"description": "Contract development SDKs, like Rust, JS or C++",
"dependencies": [
"blockchain-protocol"
]
},
{
"slug": "blockchain-api",
"name": "APIs",
"description": "APIs to access contracts from the application side across different languages like JS, Rust, Python",
"dependencies": [
"blockchain-rpc",
"wallet-sdk"
]
},
{
"slug": "exchange",
"name": "Crypto exchange",
"description": "",
"dependencies": [
"blockchain-rpc"
]
},
{
"slug": "onramp",
"name": "Payment Onramp",
"description": "Exchange fiat into crypto",
"dependencies": [
"exchange"
]
},
{
"slug": "gateway-payment",
"name": "Payment Gateway",
"description": "Fixed payment to access blockchain, hiding the gas fees and other infra fees",
"dependencies": [
"onramp",
"tx-relayer"
]
},
{
"slug": "gateway-ad",
"name": "Ad Gateway",
"description": "Showing ads to the user while removing the gas fees and other infra fees",
"dependencies": [
"tx-relayer"
]
},
{
"slug": "blockchain-lightclient",
"name": "Blockchain light client",
"description": "Allows to verify blockchain data efficiently",
"dependencies": [
"blockchain-protocol"
]
},
{
"slug": "bridge",
"name": "Bridge between blockchains",
"description": "Allows one blockchain to read data and send messages to another",
"dependencies": ["blockchain-lightclient"]
},
{
"slug": "tx-relayer",
"name": "Transaction relayer",
"description": "Service that relays transactions on behalf of the user",
"dependencies": [
"blockchain-rpc"
]
}
]