You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`--token`| No | Pre-minted CLI token in `cliToken:cliRefreshToken` format [env: `MM_CLI_TOKEN`]|
72
72
|`--timeout`| No | Seconds to wait for QR or browser callback |
73
-
|`--no-wait`| No | Print the sign-in URL and exit without waiting (for non-interactive/CI use). Not supported with QR login. Complete later with `mm-dev login --token`|
73
+
|`--no-wait`| No | Print the sign-in URL and exit without waiting (for non-interactive/CI use). Not supported with QR login. Complete later with `mm login --token`|
74
74
75
75
### Example
76
76
77
77
```bash
78
-
mm-dev login --no-wait
79
-
mm-dev login google --no-wait
80
-
mm-dev login email --no-wait
81
-
mm-dev login --token "cliToken:cliRefreshToken"
78
+
mm login --no-wait
79
+
mm login google --no-wait
80
+
mm login email --no-wait
81
+
mm login --token "cliToken:cliRefreshToken"
82
82
```
83
83
84
84
### Note
85
85
86
-
- If already authenticated, the CLI returns `ALREADY_AUTHENTICATED`. Run `mm-dev logout` first, then log in again.
87
-
-`mm-dev login qr` returns `COMING_SOON`. Use Google or email sign-in instead.
86
+
- If already authenticated, the CLI returns `ALREADY_AUTHENTICATED`. Run `mm logout` first, then log in again.
87
+
-`mm login qr` returns `COMING_SOON`. Use Google or email sign-in instead.
88
88
- Pairing codes tolerate `-` and whitespace separators (e.g. `608-225` is equivalent to `608225`).
89
-
- Use `mm-dev login google --no-wait` or `mm-dev login email --no-wait` for non-interactive/CI flows. Bare `mm-dev login --no-wait` fails without a TTY because no method is selected.
90
-
-`--no-wait` is not supported with QR login. Complete authentication later with `mm-dev login --token`.
89
+
- Use `mm login google --no-wait` or `mm login email --no-wait` for non-interactive/CI flows. Bare `mm login --no-wait` fails without a TTY because no method is selected.
90
+
-`--no-wait` is not supported with QR login. Complete authentication later with `mm login --token`.
91
91
92
92
## `auth status` Command
93
93
@@ -96,7 +96,7 @@ Show the current authentication status.
96
96
### Syntax
97
97
98
98
```bash
99
-
mm-dev auth status [--toon]
99
+
mm auth status [--toon]
100
100
```
101
101
102
102
### Supported Flags
@@ -106,8 +106,8 @@ This command does not support additional flags beyond output format options.
106
106
### Example
107
107
108
108
```bash
109
-
mm-dev auth status
110
-
mm-dev auth status --toon
109
+
mm auth status
110
+
mm auth status --toon
111
111
```
112
112
113
113
## `logout` Command
@@ -117,7 +117,7 @@ Sign out and clear auth credentials plus local init state, wallet selection, and
117
117
### Syntax
118
118
119
119
```bash
120
-
mm-devlogout
120
+
mm logout
121
121
```
122
122
123
123
### Supported Flags
@@ -127,7 +127,7 @@ This command does not support flags.
127
127
### Example
128
128
129
129
```bash
130
-
mm-devlogout
130
+
mm logout
131
131
```
132
132
133
133
## `reset` Command
@@ -137,7 +137,7 @@ Clear the local CLI session entirely.
137
137
### Syntax
138
138
139
139
```bash
140
-
mm-dev reset
140
+
mm reset
141
141
```
142
142
143
143
### Supported Flags
@@ -147,7 +147,7 @@ This command does not support flags.
147
147
### Example
148
148
149
149
```bash
150
-
mm-dev reset
150
+
mm reset
151
151
```
152
152
153
153
## `wallet password set` Command
@@ -157,7 +157,7 @@ Set a password to encrypt the BYOK mnemonic at rest. Only available in BYOK mode
157
157
### Syntax
158
158
159
159
```bash
160
-
mm-dev wallet password set [--new <password>]
160
+
mm wallet password set [--new <password>]
161
161
```
162
162
163
163
### Supported Flags
@@ -169,8 +169,8 @@ mm-dev wallet password set [--new <password>]
169
169
### Example
170
170
171
171
```bash
172
-
mm-dev wallet password set
173
-
mm-dev wallet password set --new "mypassword"
172
+
mm wallet password set
173
+
mm wallet password set --new "mypassword"
174
174
```
175
175
176
176
## `wallet password change` Command
@@ -180,7 +180,7 @@ Change the BYOK mnemonic encryption password. Only available when the mnemonic i
mm decode --payload 0x095ea7b3000000000000000000000000...
35
+
mm decode 0x095ea7b3000000000000000000000000... --toon
36
36
```
37
37
38
38
## Notes
39
39
40
-
- Use this before `mm-dev wallet send-transaction` whenever the calldata is unfamiliar or was not constructed by you, to confirm what the transaction actually does.
40
+
- Use this before `mm wallet send-transaction` whenever the calldata is unfamiliar or was not constructed by you, to confirm what the transaction actually does.
41
41
- If the selector is not recognized, `intent` falls back to `Call unknown function`. Treat unrecognized calldata as higher risk and warn the user before proceeding.
0 commit comments