@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.
@@ -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. Complete KYC verification
31
+ ### 3. KYC verification
30
32
 
31
33
  ```bash
32
- # Create a verification link
33
- mp virtual-account identification create
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
- # List all verifications
39
- mp virtual-account identification list
37
+ # Restart KYC if something went wrong
38
+ mp virtual-account kyc restart
40
39
  ```
41
40
 
42
- ### 4. Sign required documents
41
+ ### 4. Accept required agreements
43
42
 
44
43
  ```bash
45
- # List documents needing signature
46
- mp virtual-account signing required list
44
+ # List agreements that need to be accepted
45
+ mp virtual-account agreement list
47
46
 
48
- # Sign a document
49
- mp virtual-account signing create --contentId <content-id>
47
+ # Accept an agreement
48
+ mp virtual-account agreement accept --contentId <content-id>
50
49
 
51
- # List signed documents
52
- mp virtual-account signing list
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