@moonpay/cli 0.5.2 → 0.6.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.
- package/dist/{chunk-PBRXVTTG.js → chunk-DCHEUKV7.js} +529 -528
- package/dist/chunk-DCHEUKV7.js.map +1 -0
- package/dist/{chunk-V7MA7WNX.js → chunk-GSAFAKB7.js} +145 -119
- package/dist/chunk-GSAFAKB7.js.map +1 -0
- package/dist/index.js +173 -30
- package/dist/index.js.map +1 -1
- package/dist/{mcp-TDQN25MO.js → mcp-6IZ4QWFM.js} +3 -3
- package/dist/{store-HCN56E6A.js → store-UAGR3DWU.js} +2 -2
- package/package.json +1 -1
- package/skills/moonpay-block-explorer/SKILL.md +123 -0
- package/skills/moonpay-buy-crypto/SKILL.md +1 -1
- package/skills/moonpay-export-data/SKILL.md +111 -0
- package/skills/moonpay-polymarket-ready/SKILL.md +1 -1
- package/skills/moonpay-price-alerts/SKILL.md +167 -0
- package/skills/moonpay-trading-automation/SKILL.md +276 -0
- package/skills/moonpay-virtual-account/SKILL.md +14 -18
- package/dist/chunk-PBRXVTTG.js.map +0 -1
- package/dist/chunk-V7MA7WNX.js.map +0 -1
- /package/dist/{mcp-TDQN25MO.js.map → mcp-6IZ4QWFM.js.map} +0 -0
- /package/dist/{store-HCN56E6A.js.map → store-UAGR3DWU.js.map} +0 -0
|
@@ -18,6 +18,8 @@ Set up and use a MoonPay virtual account to convert fiat (USD/EUR) to stablecoin
|
|
|
18
18
|
mp virtual-account create
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
This creates the account and starts KYC verification automatically. It returns a URL to complete identity verification.
|
|
22
|
+
|
|
21
23
|
### 2. Check account status
|
|
22
24
|
|
|
23
25
|
```bash
|
|
@@ -26,30 +28,27 @@ mp virtual-account retrieve
|
|
|
26
28
|
|
|
27
29
|
The `status` field shows where you are. The `nextStep` field tells you what to do next.
|
|
28
30
|
|
|
29
|
-
### 3.
|
|
31
|
+
### 3. KYC verification
|
|
30
32
|
|
|
31
33
|
```bash
|
|
32
|
-
#
|
|
33
|
-
mp virtual-account
|
|
34
|
-
|
|
35
|
-
# Check verification status
|
|
36
|
-
mp virtual-account identification retrieve --identificationId <id>
|
|
34
|
+
# Check KYC status or get the verification link again
|
|
35
|
+
mp virtual-account kyc continue
|
|
37
36
|
|
|
38
|
-
#
|
|
39
|
-
mp virtual-account
|
|
37
|
+
# Restart KYC if something went wrong
|
|
38
|
+
mp virtual-account kyc restart
|
|
40
39
|
```
|
|
41
40
|
|
|
42
|
-
### 4.
|
|
41
|
+
### 4. Accept required agreements
|
|
43
42
|
|
|
44
43
|
```bash
|
|
45
|
-
# List
|
|
46
|
-
mp virtual-account
|
|
44
|
+
# List agreements that need to be accepted
|
|
45
|
+
mp virtual-account agreement list
|
|
47
46
|
|
|
48
|
-
#
|
|
49
|
-
mp virtual-account
|
|
47
|
+
# Accept an agreement
|
|
48
|
+
mp virtual-account agreement accept --contentId <content-id>
|
|
50
49
|
|
|
51
|
-
#
|
|
52
|
-
mp virtual-account
|
|
50
|
+
# View previously accepted agreements
|
|
51
|
+
mp virtual-account agreement list --status accepted
|
|
53
52
|
```
|
|
54
53
|
|
|
55
54
|
### 5. Register a wallet (one step)
|
|
@@ -98,9 +97,6 @@ mp virtual-account onramp payment retrieve \
|
|
|
98
97
|
```bash
|
|
99
98
|
# List transactions
|
|
100
99
|
mp virtual-account transaction list
|
|
101
|
-
|
|
102
|
-
# Delete account
|
|
103
|
-
mp virtual-account delete
|
|
104
100
|
```
|
|
105
101
|
|
|
106
102
|
## Related skills
|