forked from tempoxyz/mpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.tsx
More file actions
376 lines (342 loc) · 7.96 KB
/
cards.tsx
File metadata and controls
376 lines (342 loc) · 7.96 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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
import { Badge, Card } from "vocs";
export function QuickstartCard() {
return (
<Card
description="Build a payment-enabled API"
icon="lucide:rocket"
title="Quickstart"
to="/quickstart"
/>
);
}
export function ClientQuickstartCard() {
return (
<Card
description="Learn how to pay for resources"
icon="lucide:user"
title="Client quickstart"
to="/quickstart/client"
/>
);
}
export function ServerQuickstartCard() {
return (
<Card
description="Learn how to charge for resources"
icon="lucide:server"
title="Server quickstart"
to="/quickstart/server"
/>
);
}
export function WalletCliCard() {
return (
<Card
description="Managed MPP client with built in spend controls and service discovery"
icon="lucide:terminal"
title="Tempo Wallet CLI"
to="https://wallet.tempo.xyz"
/>
);
}
export function TempoMethodCard() {
return (
<Card
description="Web scale payments with TIP-20 stablecoins on Tempo with sub second settlement"
icon='<svg viewBox="0 0 24 24"><path fill="currentColor" d="M10.55 17h-2.73l2.53-7.73h-3.24l.71-2.27h9.03l-.71 2.27h-3.07L10.55 17Z"/></svg>'
title="Tempo"
to="/payment-methods/tempo"
/>
);
}
export function OneTimePaymentsCard() {
return (
<Card
description="Charge per request with a payment-gated API"
icon="lucide:zap"
title="Accept one-time payments"
to="/guides/one-time-payments"
/>
);
}
export function PayAsYouGoCard() {
return (
<Card
description="Session-based billing with payment channels"
icon="lucide:repeat"
title="Accept pay-as-you-go payments"
to="/guides/pay-as-you-go"
/>
);
}
export function ProtocolConceptsCard() {
return (
<Card
description="Learn about MPP's core control flow"
icon="lucide:book-open"
title="Protocol concepts"
to="/protocol"
/>
);
}
export function TypeScriptSdkCard() {
return (
<Card
description="Get started with `mppx`, the reference implementation of the MPP SDKs"
icon="simple-icons:typescript"
title="TypeScript"
to="/sdk/typescript"
/>
);
}
export function PythonSdkCard() {
return (
<Card
description="Get started with `pympp`, the official MPP SDK for Python"
icon="simple-icons:python"
title="Python"
to="/sdk/python"
/>
);
}
export function RustSdkCard() {
return (
<Card
description="Get started with `mpp-rs`, the official MPP SDK for Rust"
icon="simple-icons:rust"
title="Rust"
to="/sdk/rust"
/>
);
}
export function MppxCreateReferenceCard({ to }: { to: string }) {
return (
<Card
description="Full API documentation"
icon="lucide:book-open"
title="Mppx.create reference"
to={to}
/>
);
}
export function PaymentMethodsCard() {
return (
<Card
description="Method-specific request schemas"
icon="lucide:credit-card"
title="Payment Methods"
to="/payment-methods"
/>
);
}
export function Http402Card() {
return (
<Card
description="The 402 status code that signals payment is required"
icon="lucide:alert-circle"
title="HTTP 402"
to="/protocol/http-402"
/>
);
}
export function ChallengesCard() {
return (
<Card
description="Server-issued payment requirements in WWW-Authenticate"
icon="lucide:file-question"
title="Challenges"
to="/protocol/challenges"
/>
);
}
export function CredentialsCard() {
return (
<Card
description="Client-submitted payment proofs in Authorization"
icon="lucide:key"
title="Credentials"
to="/protocol/credentials"
/>
);
}
export function ReceiptsCard() {
return (
<Card
description="Server acknowledgment of successful payment"
icon="lucide:receipt"
title="Receipts"
to="/protocol/receipts"
/>
);
}
export function TransportsCard() {
return (
<Card
description="HTTP and MCP transport bindings"
icon="lucide:network"
title="Transports"
to="/protocol/transports"
/>
);
}
export function LightningMethodCard() {
return (
<Card
description="Bitcoin payments over the Lightning Network"
icon="lucide:zap"
title="Lightning"
to="/payment-methods/lightning"
/>
);
}
export function LightningChargeCard() {
return (
<Card
description="One-time payments using BOLT11 invoices"
icon="lucide:zap"
title="Lightning charge"
to="/payment-methods/lightning/charge"
/>
);
}
export function LightningSessionCard() {
return (
<Card
description="Prepaid metered access with per-request billing"
icon="lucide:waves"
title="Lightning session"
to="/payment-methods/lightning/session"
/>
);
}
export function SolanaMethodCard() {
return (
<Card
description="Native SOL and SPL token payments on Solana"
icon="simple-icons:solana"
title="Solana"
to="/payment-methods/solana"
/>
);
}
export function SolanaChargeCard() {
return (
<Card
description="One-time payments with signed transactions or confirmed signatures"
icon="simple-icons:solana"
title="Solana charge"
to="/payment-methods/solana/charge"
/>
);
}
export function SolanaSessionCard() {
return (
<Card
description="Coming soon: Solana sessions with off-chain vouchers and on-chain settlement"
icon="simple-icons:solana"
title="Solana session"
to="https://github.com/tempoxyz/mpp-specs/pull/201"
/>
);
}
export function StripeMethodCard() {
return (
<Card
description="Traditional payment methods through Stripe"
icon="simple-icons:stripe"
title="Stripe"
to="/payment-methods/stripe"
/>
);
}
export function CardMethodCard() {
return (
<Card
description="Card payments via encrypted network tokens"
icon="lucide:credit-card"
title="Card"
to="/payment-methods/card"
/>
);
}
export function CardChargeCard() {
return (
<Card
description="One-time payments using encrypted network tokens"
icon="lucide:credit-card"
title="Card charge"
to="/payment-methods/card/charge"
/>
);
}
export function CustomMethodCard() {
return (
<Card
description="Build your own method or extend existing methods with the SDK."
icon="lucide:anvil"
title="Custom"
to="/payment-methods/custom"
/>
);
}
export function TempoChargeCard() {
return (
<Card
description="Immediate one-time payments settled on-chain"
icon='<svg viewBox="0 0 24 24"><path fill="currentColor" d="M10.55 17h-2.73l2.53-7.73h-3.24l.71-2.27h9.03l-.71 2.27h-3.07L10.55 17Z"/></svg>'
title="Tempo charge"
to="/payment-methods/tempo/charge"
/>
);
}
export function TempoSessionCard() {
return (
<Card
description="Pay-as-you-go payment sessions over payment channels"
icon="lucide:waves"
title="Session"
to="/payment-methods/tempo/session"
topRight={<Badge variant="info">Recommended</Badge>}
/>
);
}
export function StripeChargeCard() {
return (
<Card
description="One-time payment using Shared Payment Tokens (SPTs)"
icon="lucide:credit-card"
title="Charge"
to="/payment-methods/stripe/charge"
/>
);
}
export function PythonCoreTypesCard() {
return (
<Card
description="Challenge, Credential, Receipt types"
icon="lucide:box"
title="Core types"
to="/sdk/python/core"
/>
);
}
export function PythonClientCard() {
return (
<Card
description="Handle 402 responses automatically"
icon="lucide:send"
title="Client"
to="/sdk/python/client"
/>
);
}
export function PythonServerCard() {
return (
<Card
description="Protect endpoints with payments"
icon="lucide:server"
title="Server"
to="/sdk/python/server"
/>
);
}