mirror of
https://github.com/sonr-io/sonr.git
synced 2026-09-16 23:16:25 +00:00
100 lines
4.1 KiB
Plaintext
100 lines
4.1 KiB
Plaintext
---
|
|
title: snrd tx
|
|
description: Transactions subcommands
|
|
---
|
|
|
|
## Usage
|
|
|
|
```shell
|
|
snrd tx [flags]
|
|
```
|
|
|
|
```shell
|
|
snrd tx [command]
|
|
```
|
|
|
|
## Available Commands
|
|
|
|
| Command | Description |
|
|
|---------|-------------|
|
|
| `auth` | Transactions commands for the auth module |
|
|
| `authz` | Authorization transactions subcommands |
|
|
| `bank` | Bank transaction subcommands |
|
|
| `broadcast` | Broadcast transactions generated offline |
|
|
| `circuit` | Transactions commands for the circuit module |
|
|
| `consensus` | Transactions commands for the consensus module |
|
|
| `crisis` | Transactions commands for the crisis module |
|
|
| `decode` | Decode a binary encoded transaction string |
|
|
| `dex` | dex transactions subcommands |
|
|
| `did` | Transactions commands for the did module |
|
|
| `distribution` | Distribution transactions subcommands |
|
|
| `dwn` | Transactions commands for the dwn module |
|
|
| `encode` | Encode transactions generated offline |
|
|
| `erc20` | erc20 subcommands |
|
|
| `evidence` | Evidence transaction subcommands |
|
|
| `evm` | evm subcommands |
|
|
| `feegrant` | Feegrant transactions sub-commands |
|
|
| `feemarket` | Transactions commands for the feemarket module |
|
|
| `gov` | Governance transactions subcommands |
|
|
| `group` | Group transaction subcommands |
|
|
| `ibc` | IBC transaction subcommands |
|
|
| `ibc-fee` | IBC relayer incentivization transaction subcommands |
|
|
| `ibc-transfer` | IBC fungible token transfer transaction subcommands |
|
|
| `ibc-wasm` | IBC wasm manager module transaction subcommands |
|
|
| `interchain-accounts` | IBC interchain accounts transaction subcommands |
|
|
| `mint` | Transactions commands for the mint module |
|
|
| `multi-sign` | Generate multisig signatures for transactions generated offline |
|
|
| `multisign-batch` | Assemble multisig transactions in batch from batch signatures |
|
|
| `nft` | Transactions commands for the nft module |
|
|
| `ratelimit` | Transactions commands for the ratelimit module |
|
|
| `sign` | Sign a transaction generated offline |
|
|
| `sign-batch` | Sign transaction batch files |
|
|
| `simulate` | Simulate the gas usage of a transaction |
|
|
| `slashing` | Transactions commands for the slashing module |
|
|
| `staking` | Staking transaction subcommands |
|
|
| `svc` | Transactions commands for the svc module |
|
|
| `tokenfactory` | tokenfactory transactions subcommands |
|
|
| `upgrade` | Upgrade transaction subcommands |
|
|
| `validate-signatures` | validate transactions signatures |
|
|
| `vesting` | Vesting transaction subcommands |
|
|
|
|
## Flags
|
|
|
|
<TypeTable
|
|
type={{
|
|
"chain-id": { type: "string", description: "The network chain ID" },
|
|
"help": { type: "string", description: "for tx" },
|
|
}}
|
|
/>
|
|
|
|
## Global Flags
|
|
|
|
<TypeTable
|
|
type={{
|
|
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
|
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
|
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
|
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
|
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
|
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
|
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
|
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
|
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
|
"log_no_color": { type: "string", description: "colored logs" },
|
|
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
|
"trace": { type: "string", description: "out full stack trace on errors" },
|
|
}}
|
|
/>
|
|
|
|
## Examples
|
|
|
|
### Submit transaction
|
|
|
|
```shell
|
|
snrd tx --from alice --chain-id sonrtest_1-1
|
|
```
|
|
|
|
## See Also
|
|
|
|
- [snrd](./snrd) - Parent command
|