@moonpay/cli 0.6.5 → 0.6.7
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.
- package/dist/{chunk-JQEHP3SV.js → chunk-DWAP6OI2.js} +13 -182
- package/dist/chunk-DWAP6OI2.js.map +1 -0
- package/dist/index.js +2 -2
- package/dist/{mcp-XWTHJES3.js → mcp-5QZGKH7E.js} +2 -2
- package/package.json +1 -1
- package/skills/moonpay-deposit/SKILL.md +58 -0
- package/dist/chunk-JQEHP3SV.js.map +0 -1
- /package/dist/{mcp-XWTHJES3.js.map → mcp-5QZGKH7E.js.map} +0 -0
|
@@ -404,15 +404,24 @@ var schemas_default = [
|
|
|
404
404
|
chain: {
|
|
405
405
|
type: "string",
|
|
406
406
|
description: "Chain this address is on (solana, ethereum, bitcoin, tron)"
|
|
407
|
+
},
|
|
408
|
+
qrCode: {
|
|
409
|
+
type: "string",
|
|
410
|
+
description: "URL to a QR code image for the deposit address"
|
|
407
411
|
}
|
|
408
412
|
},
|
|
409
413
|
required: [
|
|
410
414
|
"address",
|
|
411
|
-
"chain"
|
|
415
|
+
"chain",
|
|
416
|
+
"qrCode"
|
|
412
417
|
],
|
|
413
418
|
additionalProperties: false
|
|
414
419
|
},
|
|
415
420
|
description: "Deposit addresses across all supported chains \u2014 send any token to any of these"
|
|
421
|
+
},
|
|
422
|
+
instructions: {
|
|
423
|
+
type: "string",
|
|
424
|
+
description: "Human-readable instructions explaining how to use the deposit"
|
|
416
425
|
}
|
|
417
426
|
},
|
|
418
427
|
required: [
|
|
@@ -420,186 +429,8 @@ var schemas_default = [
|
|
|
420
429
|
"destinationWallet",
|
|
421
430
|
"destinationChain",
|
|
422
431
|
"depositUrl",
|
|
423
|
-
"wallets"
|
|
424
|
-
|
|
425
|
-
additionalProperties: false
|
|
426
|
-
}
|
|
427
|
-
},
|
|
428
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
429
|
-
}
|
|
430
|
-
},
|
|
431
|
-
{
|
|
432
|
-
name: "deposit_list",
|
|
433
|
-
description: "List all deposit links belonging to the current user. Each deposit link has multi-chain addresses that auto-convert incoming crypto to USDC.",
|
|
434
|
-
inputSchema: {
|
|
435
|
-
$ref: "#/definitions/deposit_list_input",
|
|
436
|
-
definitions: {
|
|
437
|
-
deposit_list_input: {
|
|
438
|
-
type: "object",
|
|
439
|
-
properties: {},
|
|
440
|
-
additionalProperties: false
|
|
441
|
-
}
|
|
442
|
-
},
|
|
443
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
444
|
-
},
|
|
445
|
-
outputSchema: {
|
|
446
|
-
$ref: "#/definitions/deposit_list_output",
|
|
447
|
-
definitions: {
|
|
448
|
-
deposit_list_output: {
|
|
449
|
-
type: "object",
|
|
450
|
-
properties: {
|
|
451
|
-
items: {
|
|
452
|
-
type: "array",
|
|
453
|
-
items: {
|
|
454
|
-
type: "object",
|
|
455
|
-
properties: {
|
|
456
|
-
id: {
|
|
457
|
-
type: "string",
|
|
458
|
-
description: "Deposit ID \u2014 use with deposit_transaction_list to check payments"
|
|
459
|
-
},
|
|
460
|
-
name: {
|
|
461
|
-
type: "string",
|
|
462
|
-
description: "Human-readable label"
|
|
463
|
-
},
|
|
464
|
-
depositUrl: {
|
|
465
|
-
type: "string",
|
|
466
|
-
description: "Shareable deposit URL"
|
|
467
|
-
},
|
|
468
|
-
wallets: {
|
|
469
|
-
type: "array",
|
|
470
|
-
items: {
|
|
471
|
-
type: "object",
|
|
472
|
-
properties: {
|
|
473
|
-
address: {
|
|
474
|
-
type: "string",
|
|
475
|
-
description: "Address to send funds to"
|
|
476
|
-
},
|
|
477
|
-
chain: {
|
|
478
|
-
type: "string",
|
|
479
|
-
description: "Chain this address is on"
|
|
480
|
-
}
|
|
481
|
-
},
|
|
482
|
-
required: [
|
|
483
|
-
"address",
|
|
484
|
-
"chain"
|
|
485
|
-
],
|
|
486
|
-
additionalProperties: false
|
|
487
|
-
},
|
|
488
|
-
description: "Multi-chain deposit addresses"
|
|
489
|
-
},
|
|
490
|
-
createdAt: {
|
|
491
|
-
type: "string",
|
|
492
|
-
description: "When this deposit link was created"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
required: [
|
|
496
|
-
"id",
|
|
497
|
-
"name",
|
|
498
|
-
"depositUrl",
|
|
499
|
-
"wallets",
|
|
500
|
-
"createdAt"
|
|
501
|
-
],
|
|
502
|
-
additionalProperties: false
|
|
503
|
-
}
|
|
504
|
-
}
|
|
505
|
-
},
|
|
506
|
-
required: [
|
|
507
|
-
"items"
|
|
508
|
-
],
|
|
509
|
-
additionalProperties: false
|
|
510
|
-
}
|
|
511
|
-
},
|
|
512
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
513
|
-
}
|
|
514
|
-
},
|
|
515
|
-
{
|
|
516
|
-
name: "deposit_transaction_list",
|
|
517
|
-
description: "List incoming transactions for a deposit link. Shows each payment received \u2014 amount, token, sender, and whether it has settled to USDC.",
|
|
518
|
-
inputSchema: {
|
|
519
|
-
$ref: "#/definitions/deposit_transaction_list_input",
|
|
520
|
-
definitions: {
|
|
521
|
-
deposit_transaction_list_input: {
|
|
522
|
-
type: "object",
|
|
523
|
-
properties: {
|
|
524
|
-
depositId: {
|
|
525
|
-
type: "string",
|
|
526
|
-
description: "Deposit ID from deposit_create or deposit_list"
|
|
527
|
-
}
|
|
528
|
-
},
|
|
529
|
-
required: [
|
|
530
|
-
"depositId"
|
|
531
|
-
],
|
|
532
|
-
additionalProperties: false
|
|
533
|
-
}
|
|
534
|
-
},
|
|
535
|
-
$schema: "http://json-schema.org/draft-07/schema#"
|
|
536
|
-
},
|
|
537
|
-
outputSchema: {
|
|
538
|
-
$ref: "#/definitions/deposit_transaction_list_output",
|
|
539
|
-
definitions: {
|
|
540
|
-
deposit_transaction_list_output: {
|
|
541
|
-
type: "object",
|
|
542
|
-
properties: {
|
|
543
|
-
items: {
|
|
544
|
-
type: "array",
|
|
545
|
-
items: {
|
|
546
|
-
type: "object",
|
|
547
|
-
properties: {
|
|
548
|
-
id: {
|
|
549
|
-
type: "string",
|
|
550
|
-
description: "Transaction ID"
|
|
551
|
-
},
|
|
552
|
-
amount: {
|
|
553
|
-
type: "number",
|
|
554
|
-
description: "Amount received"
|
|
555
|
-
},
|
|
556
|
-
token: {
|
|
557
|
-
type: "string",
|
|
558
|
-
description: "Token symbol received (e.g. SOL, ETH, USDC)"
|
|
559
|
-
},
|
|
560
|
-
from: {
|
|
561
|
-
type: "string",
|
|
562
|
-
description: "Sender's wallet address"
|
|
563
|
-
},
|
|
564
|
-
status: {
|
|
565
|
-
type: "string",
|
|
566
|
-
description: "Transaction status (SUCCESS, PENDING, FAILED)"
|
|
567
|
-
},
|
|
568
|
-
settledAmount: {
|
|
569
|
-
type: [
|
|
570
|
-
"number",
|
|
571
|
-
"null"
|
|
572
|
-
],
|
|
573
|
-
description: "Amount settled in USDC (null if not yet settled)"
|
|
574
|
-
},
|
|
575
|
-
settledCurrency: {
|
|
576
|
-
type: [
|
|
577
|
-
"string",
|
|
578
|
-
"null"
|
|
579
|
-
],
|
|
580
|
-
description: "Settlement currency (usually USDC)"
|
|
581
|
-
},
|
|
582
|
-
timestamp: {
|
|
583
|
-
type: "string",
|
|
584
|
-
description: "When the transaction was received"
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
required: [
|
|
588
|
-
"id",
|
|
589
|
-
"amount",
|
|
590
|
-
"token",
|
|
591
|
-
"from",
|
|
592
|
-
"status",
|
|
593
|
-
"settledAmount",
|
|
594
|
-
"settledCurrency",
|
|
595
|
-
"timestamp"
|
|
596
|
-
],
|
|
597
|
-
additionalProperties: false
|
|
598
|
-
}
|
|
599
|
-
}
|
|
600
|
-
},
|
|
601
|
-
required: [
|
|
602
|
-
"items"
|
|
432
|
+
"wallets",
|
|
433
|
+
"instructions"
|
|
603
434
|
],
|
|
604
435
|
additionalProperties: false
|
|
605
436
|
}
|
|
@@ -6994,4 +6825,4 @@ export {
|
|
|
6994
6825
|
x402Request,
|
|
6995
6826
|
virtualAccountWalletRegister
|
|
6996
6827
|
};
|
|
6997
|
-
//# sourceMappingURL=chunk-
|
|
6828
|
+
//# sourceMappingURL=chunk-DWAP6OI2.js.map
|