@@ -17,7 +17,7 @@ $ npm install -g @stacks/send-many-stx-cli
1717$ stx-bulk-transfer COMMAND
1818running command...
1919$ stx-bulk-transfer (--version)
20- @stacks/send-many-stx-cli/0 .0.0 darwin-arm64 node-v22.12.0
20+ @stacks/send-many-stx-cli/2 .0.0 darwin-arm64 node-v22.12.0
2121$ stx-bulk-transfer --help [COMMAND]
2222USAGE
2323 $ stx-bulk-transfer COMMAND
2828<!-- commands -->
2929* [ ` stx-bulk-transfer deploy-contract [CONTRACT] ` ] ( #stx-bulk-transfer-deploy-contract-contract )
3030* [ ` stx-bulk-transfer help [COMMAND] ` ] ( #stx-bulk-transfer-help-command )
31- * [ ` stx-bulk-transfer plugins ` ] ( #stx-bulk-transfer-plugins )
32- * [ ` stx-bulk-transfer plugins add PLUGIN ` ] ( #stx-bulk-transfer-plugins-add-plugin )
33- * [ ` stx-bulk-transfer plugins:inspect PLUGIN... ` ] ( #stx-bulk-transfer-pluginsinspect-plugin )
34- * [ ` stx-bulk-transfer plugins install PLUGIN ` ] ( #stx-bulk-transfer-plugins-install-plugin )
35- * [ ` stx-bulk-transfer plugins link PATH ` ] ( #stx-bulk-transfer-plugins-link-path )
36- * [ ` stx-bulk-transfer plugins remove [PLUGIN] ` ] ( #stx-bulk-transfer-plugins-remove-plugin )
37- * [ ` stx-bulk-transfer plugins reset ` ] ( #stx-bulk-transfer-plugins-reset )
38- * [ ` stx-bulk-transfer plugins uninstall [PLUGIN] ` ] ( #stx-bulk-transfer-plugins-uninstall-plugin )
39- * [ ` stx-bulk-transfer plugins unlink [PLUGIN] ` ] ( #stx-bulk-transfer-plugins-unlink-plugin )
40- * [ ` stx-bulk-transfer plugins update ` ] ( #stx-bulk-transfer-plugins-update )
4131* [ ` stx-bulk-transfer send-many [RECIPIENTS] ` ] ( #stx-bulk-transfer-send-many-recipients )
4232* [ ` stx-bulk-transfer send-many-memo [RECIPIENTS] ` ] ( #stx-bulk-transfer-send-many-memo-recipients )
4333* [ ` stx-bulk-transfer send-many-memo-safe [RECIPIENTS] ` ] ( #stx-bulk-transfer-send-many-memo-safe-recipients )
@@ -84,7 +74,7 @@ EXAMPLES
8474 $ stx-bulk-transfer deploy-contract memo-expected -k my_private_key -n testnet -b
8575```
8676
87- _ See code: [ src/commands/deploy-contract.ts] ( https://github.com/send-many-stx-cli-beta /send-many-stx-cli/blob/v0 .0.0/src/commands/deploy-contract.ts ) _
77+ _ See code: [ src/commands/deploy-contract.ts] ( https://github.com/stacks-network /send-many-stx-cli/blob/v2 .0.0/src/commands/deploy-contract.ts ) _
8878
8979## ` stx-bulk-transfer help [COMMAND] `
9080
@@ -106,296 +96,6 @@ DESCRIPTION
10696
10797_ See code: [ @oclif/plugin-help ] ( https://github.com/oclif/plugin-help/blob/v6.2.24/src/commands/help.ts ) _
10898
109- ## ` stx-bulk-transfer plugins `
110-
111- List installed plugins.
112-
113- ```
114- USAGE
115- $ stx-bulk-transfer plugins [--json] [--core]
116-
117- FLAGS
118- --core Show core plugins.
119-
120- GLOBAL FLAGS
121- --json Format output as json.
122-
123- DESCRIPTION
124- List installed plugins.
125-
126- EXAMPLES
127- $ stx-bulk-transfer plugins
128- ```
129-
130- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/index.ts ) _
131-
132- ## ` stx-bulk-transfer plugins add PLUGIN `
133-
134- Installs a plugin into stx-bulk-transfer.
135-
136- ```
137- USAGE
138- $ stx-bulk-transfer plugins add PLUGIN... [--json] [-f] [-h] [-s | -v]
139-
140- ARGUMENTS
141- PLUGIN... Plugin to install.
142-
143- FLAGS
144- -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
145- -h, --help Show CLI help.
146- -s, --silent Silences npm output.
147- -v, --verbose Show verbose npm output.
148-
149- GLOBAL FLAGS
150- --json Format output as json.
151-
152- DESCRIPTION
153- Installs a plugin into stx-bulk-transfer.
154-
155- Uses npm to install plugins.
156-
157- Installation of a user-installed plugin will override a core plugin.
158-
159- Use the STX_BULK_TRANSFER_NPM_LOG_LEVEL environment variable to set the npm loglevel.
160- Use the STX_BULK_TRANSFER_NPM_REGISTRY environment variable to set the npm registry.
161-
162- ALIASES
163- $ stx-bulk-transfer plugins add
164-
165- EXAMPLES
166- Install a plugin from npm registry.
167-
168- $ stx-bulk-transfer plugins add myplugin
169-
170- Install a plugin from a github url.
171-
172- $ stx-bulk-transfer plugins add https://github.com/someuser/someplugin
173-
174- Install a plugin from a github slug.
175-
176- $ stx-bulk-transfer plugins add someuser/someplugin
177- ```
178-
179- ## ` stx-bulk-transfer plugins:inspect PLUGIN... `
180-
181- Displays installation properties of a plugin.
182-
183- ```
184- USAGE
185- $ stx-bulk-transfer plugins inspect PLUGIN...
186-
187- ARGUMENTS
188- PLUGIN... [default: .] Plugin to inspect.
189-
190- FLAGS
191- -h, --help Show CLI help.
192- -v, --verbose
193-
194- GLOBAL FLAGS
195- --json Format output as json.
196-
197- DESCRIPTION
198- Displays installation properties of a plugin.
199-
200- EXAMPLES
201- $ stx-bulk-transfer plugins inspect myplugin
202- ```
203-
204- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/inspect.ts ) _
205-
206- ## ` stx-bulk-transfer plugins install PLUGIN `
207-
208- Installs a plugin into stx-bulk-transfer.
209-
210- ```
211- USAGE
212- $ stx-bulk-transfer plugins install PLUGIN... [--json] [-f] [-h] [-s | -v]
213-
214- ARGUMENTS
215- PLUGIN... Plugin to install.
216-
217- FLAGS
218- -f, --force Force npm to fetch remote resources even if a local copy exists on disk.
219- -h, --help Show CLI help.
220- -s, --silent Silences npm output.
221- -v, --verbose Show verbose npm output.
222-
223- GLOBAL FLAGS
224- --json Format output as json.
225-
226- DESCRIPTION
227- Installs a plugin into stx-bulk-transfer.
228-
229- Uses npm to install plugins.
230-
231- Installation of a user-installed plugin will override a core plugin.
232-
233- Use the STX_BULK_TRANSFER_NPM_LOG_LEVEL environment variable to set the npm loglevel.
234- Use the STX_BULK_TRANSFER_NPM_REGISTRY environment variable to set the npm registry.
235-
236- ALIASES
237- $ stx-bulk-transfer plugins add
238-
239- EXAMPLES
240- Install a plugin from npm registry.
241-
242- $ stx-bulk-transfer plugins install myplugin
243-
244- Install a plugin from a github url.
245-
246- $ stx-bulk-transfer plugins install https://github.com/someuser/someplugin
247-
248- Install a plugin from a github slug.
249-
250- $ stx-bulk-transfer plugins install someuser/someplugin
251- ```
252-
253- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/install.ts ) _
254-
255- ## ` stx-bulk-transfer plugins link PATH `
256-
257- Links a plugin into the CLI for development.
258-
259- ```
260- USAGE
261- $ stx-bulk-transfer plugins link PATH [-h] [--install] [-v]
262-
263- ARGUMENTS
264- PATH [default: .] path to plugin
265-
266- FLAGS
267- -h, --help Show CLI help.
268- -v, --verbose
269- --[no-]install Install dependencies after linking the plugin.
270-
271- DESCRIPTION
272- Links a plugin into the CLI for development.
273-
274- Installation of a linked plugin will override a user-installed or core plugin.
275-
276- e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
277- command will override the user-installed or core plugin implementation. This is useful for development work.
278-
279-
280- EXAMPLES
281- $ stx-bulk-transfer plugins link myplugin
282- ```
283-
284- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/link.ts ) _
285-
286- ## ` stx-bulk-transfer plugins remove [PLUGIN] `
287-
288- Removes a plugin from the CLI.
289-
290- ```
291- USAGE
292- $ stx-bulk-transfer plugins remove [PLUGIN...] [-h] [-v]
293-
294- ARGUMENTS
295- PLUGIN... plugin to uninstall
296-
297- FLAGS
298- -h, --help Show CLI help.
299- -v, --verbose
300-
301- DESCRIPTION
302- Removes a plugin from the CLI.
303-
304- ALIASES
305- $ stx-bulk-transfer plugins unlink
306- $ stx-bulk-transfer plugins remove
307-
308- EXAMPLES
309- $ stx-bulk-transfer plugins remove myplugin
310- ```
311-
312- ## ` stx-bulk-transfer plugins reset `
313-
314- Remove all user-installed and linked plugins.
315-
316- ```
317- USAGE
318- $ stx-bulk-transfer plugins reset [--hard] [--reinstall]
319-
320- FLAGS
321- --hard Delete node_modules and package manager related files in addition to uninstalling plugins.
322- --reinstall Reinstall all plugins after uninstalling.
323- ```
324-
325- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/reset.ts ) _
326-
327- ## ` stx-bulk-transfer plugins uninstall [PLUGIN] `
328-
329- Removes a plugin from the CLI.
330-
331- ```
332- USAGE
333- $ stx-bulk-transfer plugins uninstall [PLUGIN...] [-h] [-v]
334-
335- ARGUMENTS
336- PLUGIN... plugin to uninstall
337-
338- FLAGS
339- -h, --help Show CLI help.
340- -v, --verbose
341-
342- DESCRIPTION
343- Removes a plugin from the CLI.
344-
345- ALIASES
346- $ stx-bulk-transfer plugins unlink
347- $ stx-bulk-transfer plugins remove
348-
349- EXAMPLES
350- $ stx-bulk-transfer plugins uninstall myplugin
351- ```
352-
353- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/uninstall.ts ) _
354-
355- ## ` stx-bulk-transfer plugins unlink [PLUGIN] `
356-
357- Removes a plugin from the CLI.
358-
359- ```
360- USAGE
361- $ stx-bulk-transfer plugins unlink [PLUGIN...] [-h] [-v]
362-
363- ARGUMENTS
364- PLUGIN... plugin to uninstall
365-
366- FLAGS
367- -h, --help Show CLI help.
368- -v, --verbose
369-
370- DESCRIPTION
371- Removes a plugin from the CLI.
372-
373- ALIASES
374- $ stx-bulk-transfer plugins unlink
375- $ stx-bulk-transfer plugins remove
376-
377- EXAMPLES
378- $ stx-bulk-transfer plugins unlink myplugin
379- ```
380-
381- ## ` stx-bulk-transfer plugins update `
382-
383- Update installed plugins.
384-
385- ```
386- USAGE
387- $ stx-bulk-transfer plugins update [-h] [-v]
388-
389- FLAGS
390- -h, --help Show CLI help.
391- -v, --verbose
392-
393- DESCRIPTION
394- Update installed plugins.
395- ```
396-
397- _ See code: [ @oclif/plugin-plugins ] ( https://github.com/oclif/plugin-plugins/blob/v5.4.30/src/commands/plugins/update.ts ) _
398-
39999## ` stx-bulk-transfer send-many [RECIPIENTS] `
400100
401101Execute a bulk STX transfer.
@@ -445,7 +145,7 @@ EXAMPLES
445145 $ stx-bulk-transfer send-many STADMRP577SC3MCNP7T3PRSTZBJ75FJ59JGABZTW,100 ST2WPFYAW85A0YK9ACJR8JGWPM19VWYF90J8P5ZTH,50 -k my_private_key -n testnet -b
446146```
447147
448- _ See code: [ src/commands/send-many.ts] ( https://github.com/send-many-stx-cli-beta /send-many-stx-cli/blob/v0 .0.0/src/commands/send-many.ts ) _
148+ _ See code: [ src/commands/send-many.ts] ( https://github.com/stacks-network /send-many-stx-cli/blob/v2 .0.0/src/commands/send-many.ts ) _
449149
450150## ` stx-bulk-transfer send-many-memo [RECIPIENTS] `
451151
@@ -497,7 +197,7 @@ EXAMPLES
497197 $ stx-bulk-transfer send-many-memo STADMRP577SC3MCNP7T3PRSTZBJ75FJ59JGABZTW,100,hello ST2WPFYAW85A0YK9ACJR8JGWPM19VWYF90J8P5ZTH,50,memo2 -k my_private_key -n testnet -b
498198```
499199
500- _ See code: [ src/commands/send-many-memo.ts] ( https://github.com/send-many-stx-cli-beta /send-many-stx-cli/blob/v0 .0.0/src/commands/send-many-memo.ts ) _
200+ _ See code: [ src/commands/send-many-memo.ts] ( https://github.com/stacks-network /send-many-stx-cli/blob/v2 .0.0/src/commands/send-many-memo.ts ) _
501201
502202## ` stx-bulk-transfer send-many-memo-safe [RECIPIENTS] `
503203
@@ -553,7 +253,7 @@ EXAMPLES
553253 $ stx-bulk-transfer send-many-memo-safe STADMRP577SC3MCNP7T3PRSTZBJ75FJ59JGABZTW,100,hello ST2WPFYAW85A0YK9ACJR8JGWPM19VWYF90J8P5ZTH,50,memo2 -k my_private_key -n testnet -b
554254```
555255
556- _ See code: [ src/commands/send-many-memo-safe.ts] ( https://github.com/send-many-stx-cli-beta /send-many-stx-cli/blob/v0 .0.0/src/commands/send-many-memo-safe.ts ) _
256+ _ See code: [ src/commands/send-many-memo-safe.ts] ( https://github.com/stacks-network /send-many-stx-cli/blob/v2 .0.0/src/commands/send-many-memo-safe.ts ) _
557257
558258## ` stx-bulk-transfer validate-address [ADDRESS] `
559259
@@ -578,5 +278,5 @@ EXAMPLES
578278 $ stx-bulk-transfer validate-address SP000000000000000000002Q6VF78 -n mainnet
579279```
580280
581- _ See code: [ src/commands/validate-address.ts] ( https://github.com/send-many-stx-cli-beta /send-many-stx-cli/blob/v0 .0.0/src/commands/validate-address.ts ) _
281+ _ See code: [ src/commands/validate-address.ts] ( https://github.com/stacks-network /send-many-stx-cli/blob/v2 .0.0/src/commands/validate-address.ts ) _
582282<!-- commandsstop -->
0 commit comments