@moonpay/cli 0.6.4 → 0.6.6

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
  ],
@@ -410,149 +428,6 @@ var schemas_default = [
410
428
  $schema: "http://json-schema.org/draft-07/schema#"
411
429
  }
412
430
  },
413
- {
414
- name: "deposit_list",
415
- description: "List all deposit configurations created via the Helio API.",
416
- inputSchema: {
417
- $ref: "#/definitions/deposit_list_input",
418
- definitions: {
419
- deposit_list_input: {
420
- type: "object",
421
- properties: {},
422
- additionalProperties: false
423
- }
424
- },
425
- $schema: "http://json-schema.org/draft-07/schema#"
426
- },
427
- outputSchema: {
428
- $ref: "#/definitions/deposit_list_output",
429
- definitions: {
430
- deposit_list_output: {
431
- type: "object",
432
- properties: {
433
- items: {
434
- type: "array",
435
- items: {
436
- type: "object",
437
- properties: {
438
- id: {
439
- type: "string",
440
- description: "Helio deposit ID"
441
- },
442
- name: {
443
- type: "string",
444
- description: "Deposit name"
445
- },
446
- createdAt: {
447
- type: "string",
448
- description: "ISO timestamp"
449
- }
450
- },
451
- required: [
452
- "id",
453
- "name",
454
- "createdAt"
455
- ],
456
- additionalProperties: false
457
- }
458
- }
459
- },
460
- required: [
461
- "items"
462
- ],
463
- additionalProperties: false
464
- }
465
- },
466
- $schema: "http://json-schema.org/draft-07/schema#"
467
- }
468
- },
469
- {
470
- name: "deposit_transaction_list",
471
- description: "List incoming transactions for a deposit address. Shows amount received, token, sender, and settlement status.",
472
- inputSchema: {
473
- $ref: "#/definitions/deposit_transaction_list_input",
474
- definitions: {
475
- deposit_transaction_list_input: {
476
- type: "object",
477
- properties: {
478
- customerToken: {
479
- type: "string",
480
- description: "Customer token returned from deposit_create"
481
- }
482
- },
483
- required: [
484
- "customerToken"
485
- ],
486
- additionalProperties: false
487
- }
488
- },
489
- $schema: "http://json-schema.org/draft-07/schema#"
490
- },
491
- outputSchema: {
492
- $ref: "#/definitions/deposit_transaction_list_output",
493
- definitions: {
494
- deposit_transaction_list_output: {
495
- type: "object",
496
- properties: {
497
- items: {
498
- type: "array",
499
- items: {
500
- type: "object",
501
- properties: {
502
- id: {
503
- type: "string"
504
- },
505
- amount: {
506
- type: "number"
507
- },
508
- token: {
509
- type: "string"
510
- },
511
- from: {
512
- type: "string"
513
- },
514
- status: {
515
- type: "string"
516
- },
517
- settledAmount: {
518
- type: [
519
- "number",
520
- "null"
521
- ]
522
- },
523
- settledCurrency: {
524
- type: [
525
- "string",
526
- "null"
527
- ]
528
- },
529
- timestamp: {
530
- type: "string"
531
- }
532
- },
533
- required: [
534
- "id",
535
- "amount",
536
- "token",
537
- "from",
538
- "status",
539
- "settledAmount",
540
- "settledCurrency",
541
- "timestamp"
542
- ],
543
- additionalProperties: false
544
- }
545
- }
546
- },
547
- required: [
548
- "items"
549
- ],
550
- additionalProperties: false
551
- }
552
- },
553
- $schema: "http://json-schema.org/draft-07/schema#"
554
- }
555
- },
556
431
  {
557
432
  name: "login",
558
433
  description: "Send a verification code to the provided email to sign in or create an account.",
@@ -6940,4 +6815,4 @@ export {
6940
6815
  x402Request,
6941
6816
  virtualAccountWalletRegister
6942
6817
  };
6943
- //# sourceMappingURL=chunk-VJ2ZYZ2W.js.map
6818
+ //# sourceMappingURL=chunk-2SGV2LWL.js.map