update cosmos proposer doc with available workflows

This commit is contained in:
Anton Livaja 2025-02-27 09:30:03 -05:00
parent de40afb775
commit 6feb86a370
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
1 changed files with 9 additions and 5 deletions

View File

@ -2,9 +2,13 @@
{{ #include template-create-tx-0.md:content }} {{ #include template-create-tx-0.md:content }}
1. Use icepick to generate and sign the payload: 1. Use icepick to generate and sign the payload by running one of the following available workflows:
``` #### Stake
$ icepick workflow <workflow> <--option value> <--option value> --export-for-quorum --sign > <output_file> `$ icepick workflow cosmos stake --delegate-address <delegate-address> --validator-address <validator-address> --asset-name <asset-name> --asset-amount <asset-amount> --gas-factor <gas-factor> --export-for-quorum --sign`
``` #### Transfer
`$ icepick workflow cosmos transfer --from-address <from-address> --to-address <to-address> --asset-name <asset-name> --export-for-quorum --sign`
#### Withdraw
`$ icepick workflow cosmos withdraw --delegate-address <delegate-address> --validator-address <validator-address> --asset-name <asset-name> --gas-factor <gas-factor> --export-for-quorum-sign`
{{ #include template-create-tx-1.md }}
{{ #include template-create-tx-1.md:content }}