@chest-gate/cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/README.md +55 -0
  2. package/dist/chest_splitter_idl.json +482 -0
  3. package/dist/commands/app.d.ts +3 -0
  4. package/dist/commands/app.d.ts.map +1 -0
  5. package/dist/commands/app.js +42 -0
  6. package/dist/commands/app.js.map +1 -0
  7. package/dist/commands/deploy.d.ts +3 -0
  8. package/dist/commands/deploy.d.ts.map +1 -0
  9. package/dist/commands/deploy.js +285 -0
  10. package/dist/commands/deploy.js.map +1 -0
  11. package/dist/commands/gate.d.ts +3 -0
  12. package/dist/commands/gate.d.ts.map +1 -0
  13. package/dist/commands/gate.js +114 -0
  14. package/dist/commands/gate.js.map +1 -0
  15. package/dist/commands/init.d.ts +3 -0
  16. package/dist/commands/init.d.ts.map +1 -0
  17. package/dist/commands/init.js +153 -0
  18. package/dist/commands/init.js.map +1 -0
  19. package/dist/commands/keypair.d.ts +3 -0
  20. package/dist/commands/keypair.d.ts.map +1 -0
  21. package/dist/commands/keypair.js +38 -0
  22. package/dist/commands/keypair.js.map +1 -0
  23. package/dist/commands/split.d.ts +3 -0
  24. package/dist/commands/split.d.ts.map +1 -0
  25. package/dist/commands/split.js +98 -0
  26. package/dist/commands/split.js.map +1 -0
  27. package/dist/commands/status.d.ts +3 -0
  28. package/dist/commands/status.d.ts.map +1 -0
  29. package/dist/commands/status.js +37 -0
  30. package/dist/commands/status.js.map +1 -0
  31. package/dist/config.d.ts +43 -0
  32. package/dist/config.d.ts.map +1 -0
  33. package/dist/config.js +114 -0
  34. package/dist/config.js.map +1 -0
  35. package/dist/index.d.ts +3 -0
  36. package/dist/index.d.ts.map +1 -0
  37. package/dist/index.js +23 -0
  38. package/dist/index.js.map +1 -0
  39. package/dist/keypair.d.ts +9 -0
  40. package/dist/keypair.d.ts.map +1 -0
  41. package/dist/keypair.js +50 -0
  42. package/dist/keypair.js.map +1 -0
  43. package/dist/manifest.d.ts +69 -0
  44. package/dist/manifest.d.ts.map +1 -0
  45. package/dist/manifest.js +171 -0
  46. package/dist/manifest.js.map +1 -0
  47. package/dist/splitter-init.d.ts +32 -0
  48. package/dist/splitter-init.d.ts.map +1 -0
  49. package/dist/splitter-init.js +99 -0
  50. package/dist/splitter-init.js.map +1 -0
  51. package/package.json +58 -0
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ # @chest-gate/cli
2
+
3
+ One command to monetise any API with x402 on Solana.
4
+
5
+ ```bash
6
+ npx @chest-gate/cli init
7
+ npx @chest-gate/cli gate
8
+ npx @chest-gate/cli deploy
9
+ ```
10
+
11
+ Or install globally and use the `chest-gate` binary:
12
+
13
+ ```bash
14
+ npm i -g @chest-gate/cli
15
+ chest-gate --help
16
+ ```
17
+
18
+ ## Commands
19
+
20
+ | Command | What it does |
21
+ | --- | --- |
22
+ | `chest-gate init` | Generate `chest.config.yaml` for the current API |
23
+ | `chest-gate keypair` | Create or import the deployer wallet at `~/.chest/wallet.json` |
24
+ | `chest-gate gate` | Run the local x402 reverse proxy against your config |
25
+ | `chest-gate deploy` | Push the gate to chest.sh, sign the deploy on-chain |
26
+ | `chest-gate status` | Show recent paid calls from the local transaction store |
27
+ | `chest-gate split` | Inspect or update the on-chain revenue split (referrer cut) |
28
+ | `chest-gate app` | Publish or update an app entry in the chest.sh registry |
29
+
30
+ ## Configure
31
+
32
+ `chest-gate init` writes a starter `chest.config.yaml`:
33
+
34
+ ```yaml
35
+ name: market-data
36
+ upstream: http://localhost:8004
37
+ payoutWallet: <your-solana-pubkey>
38
+ network: devnet
39
+ port: 4004
40
+ freebie: 1
41
+ price: $0.01
42
+ session: 300
43
+ split:
44
+ referrer: 10
45
+ ```
46
+
47
+ `payoutWallet` receives the merchant cut. The deployer is the local wallet at `~/.chest/wallet.json`. They can differ.
48
+
49
+ ## Documentation
50
+
51
+ Full docs: https://chest.sh
52
+
53
+ ## License
54
+
55
+ MIT
@@ -0,0 +1,482 @@
1
+ {
2
+ "address": "9a6zrqau5xVEdxNqBUfL2G18WuryQbWeJScPAUHZvmmX",
3
+ "metadata": {
4
+ "name": "chest_splitter",
5
+ "version": "0.1.0",
6
+ "spec": "0.1.0",
7
+ "description": "Created with Anchor"
8
+ },
9
+ "instructions": [
10
+ {
11
+ "name": "distribute",
12
+ "discriminator": [
13
+ 191,
14
+ 44,
15
+ 223,
16
+ 207,
17
+ 164,
18
+ 236,
19
+ 126,
20
+ 61
21
+ ],
22
+ "accounts": [
23
+ {
24
+ "name": "cranker",
25
+ "docs": [
26
+ "Permissionless — any signer can crank"
27
+ ],
28
+ "writable": true,
29
+ "signer": true
30
+ },
31
+ {
32
+ "name": "split_config"
33
+ },
34
+ {
35
+ "name": "usdc_mint"
36
+ },
37
+ {
38
+ "name": "vault",
39
+ "writable": true,
40
+ "pda": {
41
+ "seeds": [
42
+ {
43
+ "kind": "account",
44
+ "path": "split_config"
45
+ },
46
+ {
47
+ "kind": "const",
48
+ "value": [
49
+ 6,
50
+ 221,
51
+ 246,
52
+ 225,
53
+ 215,
54
+ 101,
55
+ 161,
56
+ 147,
57
+ 217,
58
+ 203,
59
+ 225,
60
+ 70,
61
+ 206,
62
+ 235,
63
+ 121,
64
+ 172,
65
+ 28,
66
+ 180,
67
+ 133,
68
+ 237,
69
+ 95,
70
+ 91,
71
+ 55,
72
+ 145,
73
+ 58,
74
+ 140,
75
+ 245,
76
+ 133,
77
+ 126,
78
+ 255,
79
+ 0,
80
+ 169
81
+ ]
82
+ },
83
+ {
84
+ "kind": "account",
85
+ "path": "usdc_mint"
86
+ }
87
+ ],
88
+ "program": {
89
+ "kind": "const",
90
+ "value": [
91
+ 140,
92
+ 151,
93
+ 37,
94
+ 143,
95
+ 78,
96
+ 36,
97
+ 137,
98
+ 241,
99
+ 187,
100
+ 61,
101
+ 16,
102
+ 41,
103
+ 20,
104
+ 142,
105
+ 13,
106
+ 131,
107
+ 11,
108
+ 90,
109
+ 19,
110
+ 153,
111
+ 218,
112
+ 255,
113
+ 16,
114
+ 132,
115
+ 4,
116
+ 142,
117
+ 123,
118
+ 216,
119
+ 219,
120
+ 233,
121
+ 248,
122
+ 89
123
+ ]
124
+ }
125
+ }
126
+ },
127
+ {
128
+ "name": "merchant_token",
129
+ "writable": true
130
+ },
131
+ {
132
+ "name": "protocol_token",
133
+ "writable": true
134
+ },
135
+ {
136
+ "name": "referrer_token",
137
+ "writable": true
138
+ },
139
+ {
140
+ "name": "token_program",
141
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
142
+ },
143
+ {
144
+ "name": "associated_token_program",
145
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
146
+ }
147
+ ],
148
+ "args": [
149
+ {
150
+ "name": "amount",
151
+ "type": "u64"
152
+ },
153
+ {
154
+ "name": "has_referrer",
155
+ "type": "bool"
156
+ }
157
+ ]
158
+ },
159
+ {
160
+ "name": "initialize_split",
161
+ "discriminator": [
162
+ 53,
163
+ 17,
164
+ 92,
165
+ 9,
166
+ 84,
167
+ 151,
168
+ 173,
169
+ 78
170
+ ],
171
+ "accounts": [
172
+ {
173
+ "name": "authority",
174
+ "writable": true,
175
+ "signer": true
176
+ },
177
+ {
178
+ "name": "merchant_wallet"
179
+ },
180
+ {
181
+ "name": "protocol_wallet"
182
+ },
183
+ {
184
+ "name": "usdc_mint"
185
+ },
186
+ {
187
+ "name": "split_config",
188
+ "writable": true,
189
+ "pda": {
190
+ "seeds": [
191
+ {
192
+ "kind": "const",
193
+ "value": [
194
+ 115,
195
+ 112,
196
+ 108,
197
+ 105,
198
+ 116
199
+ ]
200
+ },
201
+ {
202
+ "kind": "account",
203
+ "path": "authority"
204
+ },
205
+ {
206
+ "kind": "arg",
207
+ "path": "slug_hash"
208
+ }
209
+ ]
210
+ }
211
+ },
212
+ {
213
+ "name": "vault",
214
+ "writable": true,
215
+ "pda": {
216
+ "seeds": [
217
+ {
218
+ "kind": "account",
219
+ "path": "split_config"
220
+ },
221
+ {
222
+ "kind": "const",
223
+ "value": [
224
+ 6,
225
+ 221,
226
+ 246,
227
+ 225,
228
+ 215,
229
+ 101,
230
+ 161,
231
+ 147,
232
+ 217,
233
+ 203,
234
+ 225,
235
+ 70,
236
+ 206,
237
+ 235,
238
+ 121,
239
+ 172,
240
+ 28,
241
+ 180,
242
+ 133,
243
+ 237,
244
+ 95,
245
+ 91,
246
+ 55,
247
+ 145,
248
+ 58,
249
+ 140,
250
+ 245,
251
+ 133,
252
+ 126,
253
+ 255,
254
+ 0,
255
+ 169
256
+ ]
257
+ },
258
+ {
259
+ "kind": "account",
260
+ "path": "usdc_mint"
261
+ }
262
+ ],
263
+ "program": {
264
+ "kind": "const",
265
+ "value": [
266
+ 140,
267
+ 151,
268
+ 37,
269
+ 143,
270
+ 78,
271
+ 36,
272
+ 137,
273
+ 241,
274
+ 187,
275
+ 61,
276
+ 16,
277
+ 41,
278
+ 20,
279
+ 142,
280
+ 13,
281
+ 131,
282
+ 11,
283
+ 90,
284
+ 19,
285
+ 153,
286
+ 218,
287
+ 255,
288
+ 16,
289
+ 132,
290
+ 4,
291
+ 142,
292
+ 123,
293
+ 216,
294
+ 219,
295
+ 233,
296
+ 248,
297
+ 89
298
+ ]
299
+ }
300
+ }
301
+ },
302
+ {
303
+ "name": "token_program",
304
+ "address": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA"
305
+ },
306
+ {
307
+ "name": "associated_token_program",
308
+ "address": "ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL"
309
+ },
310
+ {
311
+ "name": "system_program",
312
+ "address": "11111111111111111111111111111111"
313
+ }
314
+ ],
315
+ "args": [
316
+ {
317
+ "name": "slug_hash",
318
+ "type": {
319
+ "array": [
320
+ "u8",
321
+ 8
322
+ ]
323
+ }
324
+ },
325
+ {
326
+ "name": "referrer_bps",
327
+ "type": "u16"
328
+ }
329
+ ]
330
+ },
331
+ {
332
+ "name": "update_referrer_bps",
333
+ "discriminator": [
334
+ 204,
335
+ 117,
336
+ 152,
337
+ 75,
338
+ 98,
339
+ 194,
340
+ 216,
341
+ 8
342
+ ],
343
+ "accounts": [
344
+ {
345
+ "name": "authority",
346
+ "signer": true,
347
+ "relations": [
348
+ "split_config"
349
+ ]
350
+ },
351
+ {
352
+ "name": "split_config",
353
+ "writable": true
354
+ }
355
+ ],
356
+ "args": [
357
+ {
358
+ "name": "referrer_bps",
359
+ "type": "u16"
360
+ }
361
+ ]
362
+ }
363
+ ],
364
+ "accounts": [
365
+ {
366
+ "name": "SplitConfig",
367
+ "discriminator": [
368
+ 49,
369
+ 201,
370
+ 50,
371
+ 228,
372
+ 22,
373
+ 142,
374
+ 12,
375
+ 222
376
+ ]
377
+ }
378
+ ],
379
+ "events": [
380
+ {
381
+ "name": "DistributeEvent",
382
+ "discriminator": [
383
+ 110,
384
+ 134,
385
+ 163,
386
+ 31,
387
+ 1,
388
+ 16,
389
+ 107,
390
+ 76
391
+ ]
392
+ }
393
+ ],
394
+ "errors": [
395
+ {
396
+ "code": 6000,
397
+ "name": "InvalidBps",
398
+ "msg": "Referrer bps too high"
399
+ },
400
+ {
401
+ "code": 6001,
402
+ "name": "ZeroAmount",
403
+ "msg": "Distribute amount must be greater than zero"
404
+ },
405
+ {
406
+ "code": 6002,
407
+ "name": "InsufficientVault",
408
+ "msg": "Amount exceeds vault balance"
409
+ }
410
+ ],
411
+ "types": [
412
+ {
413
+ "name": "DistributeEvent",
414
+ "type": {
415
+ "kind": "struct",
416
+ "fields": [
417
+ {
418
+ "name": "split_config",
419
+ "type": "pubkey"
420
+ },
421
+ {
422
+ "name": "amount",
423
+ "type": "u64"
424
+ },
425
+ {
426
+ "name": "merchant_share",
427
+ "type": "u64"
428
+ },
429
+ {
430
+ "name": "protocol_share",
431
+ "type": "u64"
432
+ },
433
+ {
434
+ "name": "referrer_share",
435
+ "type": "u64"
436
+ }
437
+ ]
438
+ }
439
+ },
440
+ {
441
+ "name": "SplitConfig",
442
+ "type": {
443
+ "kind": "struct",
444
+ "fields": [
445
+ {
446
+ "name": "authority",
447
+ "type": "pubkey"
448
+ },
449
+ {
450
+ "name": "merchant_wallet",
451
+ "type": "pubkey"
452
+ },
453
+ {
454
+ "name": "protocol_wallet",
455
+ "type": "pubkey"
456
+ },
457
+ {
458
+ "name": "referrer_bps",
459
+ "type": "u16"
460
+ },
461
+ {
462
+ "name": "protocol_bps",
463
+ "type": "u16"
464
+ },
465
+ {
466
+ "name": "slug_hash",
467
+ "type": {
468
+ "array": [
469
+ "u8",
470
+ 8
471
+ ]
472
+ }
473
+ },
474
+ {
475
+ "name": "bump",
476
+ "type": "u8"
477
+ }
478
+ ]
479
+ }
480
+ }
481
+ ]
482
+ }
@@ -0,0 +1,3 @@
1
+ import { Command } from "commander";
2
+ export declare const appCommand: Command;
3
+ //# sourceMappingURL=app.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.ts","sourceRoot":"","sources":["../../src/commands/app.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAKpC,eAAO,MAAM,UAAU,SAEtB,CAAC"}
@@ -0,0 +1,42 @@
1
+ import { Command } from "commander";
2
+ import chalk from "chalk";
3
+ import { resolve } from "node:path";
4
+ import { loadManifest } from "../manifest.js";
5
+ export const appCommand = new Command("app").description("Manage Chest Gate App manifests (app.md authoring artifact)");
6
+ appCommand
7
+ .command("validate")
8
+ .description("Validate an app.md manifest against the schema")
9
+ .argument("[path]", "Path to app.md", "./app.md")
10
+ .action(async (path) => {
11
+ const abs = resolve(process.cwd(), path);
12
+ const result = await loadManifest(abs);
13
+ if (!result.ok) {
14
+ console.error(chalk.red(`✗ ${path} failed validation:`));
15
+ for (const err of result.errors) {
16
+ console.error(chalk.gray(" · ") + chalk.yellow(err.path) + chalk.gray(", ") + err.message);
17
+ }
18
+ process.exit(1);
19
+ }
20
+ const m = result.manifest;
21
+ console.log(chalk.green(`✓ ${path} is valid`));
22
+ console.log("");
23
+ console.log(chalk.gray(" name ") + chalk.white(m.name));
24
+ console.log(chalk.gray(" author ") + chalk.white(m.author));
25
+ console.log(chalk.gray(" version ") + chalk.white(m.version));
26
+ console.log(chalk.gray(" description ") + chalk.white(m.description));
27
+ console.log(chalk.gray(" capabilityTags ") + chalk.white(m.capabilityTags.join(", ")));
28
+ if (m.upstreamGates && m.upstreamGates.length > 0) {
29
+ console.log(chalk.gray(" upstreamGates ") + chalk.white(m.upstreamGates.join(", ")));
30
+ }
31
+ if (m.homepage)
32
+ console.log(chalk.gray(" homepage ") + chalk.white(m.homepage));
33
+ if (m.repository)
34
+ console.log(chalk.gray(" repository ") + chalk.white(m.repository));
35
+ if (m.license)
36
+ console.log(chalk.gray(" license ") + chalk.white(m.license));
37
+ console.log(chalk.gray(" body ") + chalk.white(`${m.body.length} chars of markdown`));
38
+ console.log("");
39
+ console.log(chalk.gray("Note: ") +
40
+ chalk.gray("payout wallet is resolved from the on-chain author record at publish time, not declared in app.md."));
41
+ });
42
+ //# sourceMappingURL=app.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.js","sourceRoot":"","sources":["../../src/commands/app.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ import { Command } from "commander";
2
+ export declare const deployCommand: Command;
3
+ //# sourceMappingURL=deploy.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"deploy.d.ts","sourceRoot":"","sources":["../../src/commands/deploy.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AA+EpC,eAAO,MAAM,aAAa,SA2QtB,CAAC"}