|
4 | 4 | test send [from_key_or_address] [to_address] [amount] [flags] |
5 | 5 |
|
6 | 6 | Flags: |
7 | | - -a, --account-number uint The account number of the signing account (offline mode only) |
8 | | - --aux Generate aux signer data instead of sending a tx |
9 | | - -b, --broadcast-mode string Transaction broadcasting mode (sync|async) (default "sync") |
10 | | - --chain-id string The network chain ID |
11 | | - --dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it (when enabled, the local Keybase is not accessible) |
12 | | - --fee-granter string Fee granter grants fees for the transaction |
13 | | - --fee-payer string Fee payer pays fees for the transaction instead of deducting from the signer |
14 | | - --fees string Fees to pay along with transaction; eg: 10uatom |
15 | | - --from string Name or address of private key with which to sign |
16 | | - --gas string gas limit to set per-transaction; set to "auto" to calculate sufficient gas automatically. Note: "auto" option doesn't always report accurate results. Set a valid coin value to adjust the result. Can be used instead of "fees". (default 200000) |
17 | | - --gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1) |
18 | | - --gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom) |
19 | | - --generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name) |
20 | | - -h, --help help for send |
21 | | - --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "os") |
22 | | - --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used |
23 | | - --ledger Use a connected Ledger device |
24 | | - --node string <host>:<port> to CometBFT rpc interface for this chain (default "tcp://localhost:26657") |
25 | | - --note string Note to add a description to the transaction (previously --memo) |
26 | | - --offline Offline mode (does not allow any online functionality) |
27 | | - -o, --output string Output format (text|json) (default "json") |
28 | | - -s, --sequence uint The sequence number of the signing account (offline mode only) |
29 | | - --sign-mode string Choose sign mode (direct|amino-json|direct-aux|textual), this is an advanced feature |
30 | | - --timeout-duration duration TimeoutDuration is the duration the transaction will be considered valid in the mempool. The transaction's unordered nonce will be set to the time of transaction creation + the duration value passed. If the transaction is still in the mempool, and the block time has passed the time of submission + TimeoutTimestamp, the transaction will be rejected. |
31 | | - --timeout-height uint DEPRECATED: Please use --timeout-duration instead. Set a block timeout height to prevent the tx from being committed past a certain height |
32 | | - --tip string Tip is the amount that is going to be transferred to the fee payer on the target chain. This flag is only valid when used with --aux, and is ignored if the target chain didn't enable the TipDecorator |
33 | | - --unordered Enable unordered transaction delivery; must be used in conjunction with --timeout-duration |
34 | | - -y, --yes Skip tx broadcasting prompt confirmation |
| 7 | + -a, --account-number uint The account number of the signing account (offline mode only) |
| 8 | + --aux Generate aux signer data instead of sending a tx |
| 9 | + -b, --broadcast-mode string Transaction broadcasting mode (sync|async) (default "sync") |
| 10 | + --chain-id string The network chain ID |
| 11 | + --dry-run ignore the --gas flag and perform a simulation of a transaction, but don't broadcast it (when enabled, the local Keybase is not accessible) |
| 12 | + --fee-granter string Fee granter grants fees for the transaction |
| 13 | + --fee-payer string Fee payer pays fees for the transaction instead of deducting from the signer |
| 14 | + --fees string Fees to pay along with transaction; eg: 10uatom |
| 15 | + --from string Name or address of private key with which to sign |
| 16 | + --gas string gas limit to set per-transaction; set to "auto" to calculate sufficient gas automatically. Note: "auto" option doesn't always report accurate results. Set a valid coin value to adjust the result. Can be used instead of "fees". (default 200000) |
| 17 | + --gas-adjustment float adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored (default 1) |
| 18 | + --gas-prices string Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom) |
| 19 | + --generate-only Build an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name) |
| 20 | + -h, --help help for send |
| 21 | + --keyring-backend string Select keyring's backend (os|file|kwallet|pass|test|memory) (default "os") |
| 22 | + --keyring-dir string The client Keyring directory; if omitted, the default 'home' directory will be used |
| 23 | + --ledger Use a connected Ledger device |
| 24 | + --node string <host>:<port> to CometBFT rpc interface for this chain (default "tcp://localhost:26657") |
| 25 | + --note string Note to add a description to the transaction (previously --memo) |
| 26 | + --offline Offline mode (does not allow any online functionality) |
| 27 | + -o, --output string Output format (text|json) (default "json") |
| 28 | + -s, --sequence uint The sequence number of the signing account (offline mode only) |
| 29 | + --sign-mode string Choose sign mode (direct|amino-json|direct-aux|textual), this is an advanced feature |
| 30 | + --timeout-height uint DEPRECATED: Please use --timeout-timestamp instead. Set a block timeout height to prevent the tx from being committed past a certain height |
| 31 | + --timeout-timestamp int Set a block timeout timestamp to prevent the tx from being committed past a certain time |
| 32 | + --tip string Tip is the amount that is going to be transferred to the fee payer on the target chain. This flag is only valid when used with --aux, and is ignored if the target chain didn't enable the TipDecorator |
| 33 | + --unordered Enable unordered transaction delivery; must be used in conjunction with --timeout-timestamp |
| 34 | + -y, --yes Skip tx broadcasting prompt confirmation |
0 commit comments