@moonpay/cli 0.6.4 → 0.6.5

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.
@@ -332,20 +332,38 @@ var schemas_default = [
332
332
  },
333
333
  {
334
334
  name: "deposit_create",
335
- description: "Create crypto deposit addresses to fund a wallet. Returns addresses on multiple chains (Solana, EVM, Bitcoin, Tron). Send any token from any chain and it auto-settles to USDC.",
335
+ description: "Create a new deposit link that generates multi-chain deposit addresses. Anyone can send crypto to these addresses from Solana, Ethereum, Bitcoin, or Tron \u2014 it automatically converts to USDC and settles to the specified destination wallet and chain.",
336
336
  inputSchema: {
337
337
  $ref: "#/definitions/deposit_create_input",
338
338
  definitions: {
339
339
  deposit_create_input: {
340
340
  type: "object",
341
341
  properties: {
342
+ name: {
343
+ type: "string",
344
+ description: "Human-readable label for this deposit link (e.g. 'Treasury Base USDC')"
345
+ },
342
346
  wallet: {
343
347
  type: "string",
344
- description: "Solana wallet address to receive USDC"
348
+ description: "Destination wallet address where USDC will be delivered"
349
+ },
350
+ chain: {
351
+ type: "string",
352
+ enum: [
353
+ "solana",
354
+ "ethereum",
355
+ "base",
356
+ "polygon",
357
+ "arbitrum",
358
+ "bnb"
359
+ ],
360
+ description: "Blockchain of the destination wallet (determines which USDC the wallet receives)"
345
361
  }
346
362
  },
347
363
  required: [
348
- "wallet"
364
+ "name",
365
+ "wallet",
366
+ "chain"
349
367
  ],
350
368
  additionalProperties: false
351
369
  }
@@ -360,19 +378,19 @@ var schemas_default = [
360
378
  properties: {
361
379
  id: {
362
380
  type: "string",
363
- description: "Helio deposit ID"
381
+ description: "Unique deposit ID \u2014 use with deposit_transaction_list to check incoming payments"
364
382
  },
365
- customerToken: {
383
+ destinationWallet: {
366
384
  type: "string",
367
- description: "Customer token for tracking"
385
+ description: "Wallet address that will receive USDC"
368
386
  },
369
- destinationWallet: {
387
+ destinationChain: {
370
388
  type: "string",
371
- description: "Wallet that will receive USDC"
389
+ description: "Chain where USDC will be delivered"
372
390
  },
373
391
  depositUrl: {
374
392
  type: "string",
375
- description: "URL to open in browser for depositing"
393
+ description: "Shareable URL \u2014 open in browser or share with senders to deposit funds"
376
394
  },
377
395
  wallets: {
378
396
  type: "array",
@@ -381,11 +399,11 @@ var schemas_default = [
381
399
  properties: {
382
400
  address: {
383
401
  type: "string",
384
- description: "Deposit address"
402
+ description: "Address to send funds to"
385
403
  },
386
404
  chain: {
387
405
  type: "string",
388
- description: "Chain (solana, ethereum, bitcoin, tron)"
406
+ description: "Chain this address is on (solana, ethereum, bitcoin, tron)"
389
407
  }
390
408
  },
391
409
  required: [
@@ -394,13 +412,13 @@ var schemas_default = [
394
412
  ],
395
413
  additionalProperties: false
396
414
  },
397
- description: "Deposit addresses on each supported chain"
415
+ description: "Deposit addresses across all supported chains \u2014 send any token to any of these"
398
416
  }
399
417
  },
400
418
  required: [
401
419
  "id",
402
- "customerToken",
403
420
  "destinationWallet",
421
+ "destinationChain",
404
422
  "depositUrl",
405
423
  "wallets"
406
424
  ],
@@ -412,7 +430,7 @@ var schemas_default = [
412
430
  },
413
431
  {
414
432
  name: "deposit_list",
415
- description: "List all deposit configurations created via the Helio API.",
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.",
416
434
  inputSchema: {
417
435
  $ref: "#/definitions/deposit_list_input",
418
436
  definitions: {
@@ -437,20 +455,48 @@ var schemas_default = [
437
455
  properties: {
438
456
  id: {
439
457
  type: "string",
440
- description: "Helio deposit ID"
458
+ description: "Deposit ID \u2014 use with deposit_transaction_list to check payments"
441
459
  },
442
460
  name: {
443
461
  type: "string",
444
- description: "Deposit name"
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"
445
489
  },
446
490
  createdAt: {
447
491
  type: "string",
448
- description: "ISO timestamp"
492
+ description: "When this deposit link was created"
449
493
  }
450
494
  },
451
495
  required: [
452
496
  "id",
453
497
  "name",
498
+ "depositUrl",
499
+ "wallets",
454
500
  "createdAt"
455
501
  ],
456
502
  additionalProperties: false
@@ -468,20 +514,20 @@ var schemas_default = [
468
514
  },
469
515
  {
470
516
  name: "deposit_transaction_list",
471
- description: "List incoming transactions for a deposit address. Shows amount received, token, sender, and settlement status.",
517
+ description: "List incoming transactions for a deposit link. Shows each payment received \u2014 amount, token, sender, and whether it has settled to USDC.",
472
518
  inputSchema: {
473
519
  $ref: "#/definitions/deposit_transaction_list_input",
474
520
  definitions: {
475
521
  deposit_transaction_list_input: {
476
522
  type: "object",
477
523
  properties: {
478
- customerToken: {
524
+ depositId: {
479
525
  type: "string",
480
- description: "Customer token returned from deposit_create"
526
+ description: "Deposit ID from deposit_create or deposit_list"
481
527
  }
482
528
  },
483
529
  required: [
484
- "customerToken"
530
+ "depositId"
485
531
  ],
486
532
  additionalProperties: false
487
533
  }
@@ -500,34 +546,42 @@ var schemas_default = [
500
546
  type: "object",
501
547
  properties: {
502
548
  id: {
503
- type: "string"
549
+ type: "string",
550
+ description: "Transaction ID"
504
551
  },
505
552
  amount: {
506
- type: "number"
553
+ type: "number",
554
+ description: "Amount received"
507
555
  },
508
556
  token: {
509
- type: "string"
557
+ type: "string",
558
+ description: "Token symbol received (e.g. SOL, ETH, USDC)"
510
559
  },
511
560
  from: {
512
- type: "string"
561
+ type: "string",
562
+ description: "Sender's wallet address"
513
563
  },
514
564
  status: {
515
- type: "string"
565
+ type: "string",
566
+ description: "Transaction status (SUCCESS, PENDING, FAILED)"
516
567
  },
517
568
  settledAmount: {
518
569
  type: [
519
570
  "number",
520
571
  "null"
521
- ]
572
+ ],
573
+ description: "Amount settled in USDC (null if not yet settled)"
522
574
  },
523
575
  settledCurrency: {
524
576
  type: [
525
577
  "string",
526
578
  "null"
527
- ]
579
+ ],
580
+ description: "Settlement currency (usually USDC)"
528
581
  },
529
582
  timestamp: {
530
- type: "string"
583
+ type: "string",
584
+ description: "When the transaction was received"
531
585
  }
532
586
  },
533
587
  required: [
@@ -6940,4 +6994,4 @@ export {
6940
6994
  x402Request,
6941
6995
  virtualAccountWalletRegister
6942
6996
  };
6943
- //# sourceMappingURL=chunk-VJ2ZYZ2W.js.map
6997
+ //# sourceMappingURL=chunk-JQEHP3SV.js.map