@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
package/dist/index.js
CHANGED
|
@@ -24,7 +24,7 @@ import {
|
|
|
24
24
|
walletRename,
|
|
25
25
|
walletRetrieve,
|
|
26
26
|
x402Request
|
|
27
|
-
} from "./chunk-
|
|
27
|
+
} from "./chunk-DWAP6OI2.js";
|
|
28
28
|
import {
|
|
29
29
|
KEY_CHAIN_MAP,
|
|
30
30
|
chainSchema,
|
|
@@ -577,7 +577,7 @@ function printUpdateNotice() {
|
|
|
577
577
|
if (notice) process.stderr.write(notice);
|
|
578
578
|
}
|
|
579
579
|
program.command("mcp").description("Start MCP server over stdio (for Claude Desktop, Claude Code, etc.)").action(async () => {
|
|
580
|
-
const { startMcpServer } = await import("./mcp-
|
|
580
|
+
const { startMcpServer } = await import("./mcp-5QZGKH7E.js");
|
|
581
581
|
await startMcpServer();
|
|
582
582
|
});
|
|
583
583
|
function getOrCreateGroup(parent, segments) {
|
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
walletRename,
|
|
16
16
|
walletRetrieve,
|
|
17
17
|
x402Request
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-DWAP6OI2.js";
|
|
19
19
|
import "./chunk-AL5WDHLT.js";
|
|
20
20
|
|
|
21
21
|
// src/mcp.ts
|
|
@@ -150,4 +150,4 @@ async function startMcpServer() {
|
|
|
150
150
|
export {
|
|
151
151
|
startMcpServer
|
|
152
152
|
};
|
|
153
|
-
//# sourceMappingURL=mcp-
|
|
153
|
+
//# sourceMappingURL=mcp-5QZGKH7E.js.map
|
package/package.json
CHANGED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: moonpay-deposit
|
|
3
|
+
description: Create deposit links that accept crypto from any chain and auto-convert to USDC. No login required.
|
|
4
|
+
tags: [payments]
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# Crypto Deposits
|
|
8
|
+
|
|
9
|
+
## Goal
|
|
10
|
+
|
|
11
|
+
Create a deposit link that generates multi-chain deposit addresses. Anyone can send crypto from Solana, Ethereum, Bitcoin, or Tron — it automatically converts to USDC and settles to the specified destination wallet.
|
|
12
|
+
|
|
13
|
+
No login required. This is a permissionless tool.
|
|
14
|
+
|
|
15
|
+
## Command
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
mp deposit create \
|
|
19
|
+
--name <label> \
|
|
20
|
+
--wallet <destination-address> \
|
|
21
|
+
--chain <destination-chain>
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Supported destination chains
|
|
25
|
+
|
|
26
|
+
`solana`, `ethereum`, `base`, `polygon`, `arbitrum`, `bnb`
|
|
27
|
+
|
|
28
|
+
## How it works
|
|
29
|
+
|
|
30
|
+
1. Run `mp deposit create` with a name, destination wallet, and chain.
|
|
31
|
+
2. Helio generates deposit addresses on Solana, Ethereum, Bitcoin, and Tron.
|
|
32
|
+
3. Share the deposit URL or a QR code with anyone who wants to send you crypto.
|
|
33
|
+
4. When someone sends any token to a deposit address, Helio auto-converts it to USDC and delivers it to your destination wallet.
|
|
34
|
+
|
|
35
|
+
## Example flow
|
|
36
|
+
|
|
37
|
+
1. User: "I want to accept crypto payments to my Base wallet."
|
|
38
|
+
2. Run: `mp deposit create --name "My Payments" --wallet 0xf1D8...5036 --chain base`
|
|
39
|
+
3. The output includes:
|
|
40
|
+
- **Deposit URL** — shareable link for senders
|
|
41
|
+
- **Deposit addresses** — one per chain (Solana, Ethereum, Bitcoin, Tron)
|
|
42
|
+
- **QR codes** — one per deposit address, for easy scanning
|
|
43
|
+
- **Instructions** — explaining how the deposit works
|
|
44
|
+
4. Share the URL, QR code, or address with anyone to receive funds.
|
|
45
|
+
|
|
46
|
+
## Notes
|
|
47
|
+
|
|
48
|
+
- No login or account required — deposits are permissionless.
|
|
49
|
+
- Senders can send any token from any supported chain.
|
|
50
|
+
- Funds are auto-converted to USDC on the destination chain.
|
|
51
|
+
- Each deposit creates unique addresses — don't reuse addresses from different deposits.
|
|
52
|
+
- The deposit URL opens a web page where senders can choose how to pay.
|
|
53
|
+
|
|
54
|
+
## Related skills
|
|
55
|
+
|
|
56
|
+
- **moonpay-check-wallet** — Check balances after receiving deposits.
|
|
57
|
+
- **moonpay-virtual-account** — Fiat on-ramp (bank to stablecoin).
|
|
58
|
+
- **moonpay-auth** — Login and wallet setup.
|