mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
@@ -0,0 +1,132 @@
|
||||
---
|
||||
title: snrd
|
||||
description: The Sonr blockchain daemon (server) command
|
||||
---
|
||||
|
||||
# snrd
|
||||
|
||||
The main command for running and interacting with the Sonr blockchain node.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | User authentication with Passkeys |
|
||||
| `comet` | CometBFT subcommands |
|
||||
| `config` | Utilities for managing application configuration |
|
||||
| `debug` | Tool for helping with debugging your application |
|
||||
| `export` | Export state to JSON |
|
||||
| `genesis` | Application's genesis-related subcommands |
|
||||
| `gov` | Governance utilities |
|
||||
| `help` | Help about any command |
|
||||
| `index-eth-tx` | Index historical eth txs |
|
||||
| `init` | Initialize private validator, p2p, genesis, and application configuration files |
|
||||
| `keys` | Manage your application's keys |
|
||||
| `prune` | Prune app history states by keeping the recent heights and deleting old heights |
|
||||
| `query` | Querying subcommands |
|
||||
| `rollback` | Rollback Cosmos SDK and CometBFT state by one height |
|
||||
| `snapshots` | Manage local snapshots |
|
||||
| `start` | Run the full node |
|
||||
| `status` | Query remote node for status |
|
||||
| `tx` | Transactions subcommands |
|
||||
| `version` | Print the application binary version information |
|
||||
| `wallet` | Wallet operations |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
Adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="boolean">
|
||||
Help for snrd
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="~/.sonr">
|
||||
Directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="boolean">
|
||||
Disable colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="boolean">
|
||||
Print out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Start a node
|
||||
|
||||
```shell
|
||||
snrd start
|
||||
```
|
||||
|
||||
### Query node status
|
||||
|
||||
```shell
|
||||
snrd status
|
||||
```
|
||||
|
||||
### Initialize a new node
|
||||
|
||||
```shell
|
||||
snrd init my-node --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
### Get help for any command
|
||||
|
||||
```shell
|
||||
snrd [command] --help
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd auth](./snrd_auth.mdx) - User authentication with Passkeys
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Genesis-related subcommands
|
||||
- [snrd init](./snrd_init.mdx) - Initialize node configuration
|
||||
- [snrd keys](./snrd_keys.mdx) - Manage application keys
|
||||
- [snrd query](./snrd_query.mdx) - Query blockchain state
|
||||
- [snrd tx](./snrd_tx.mdx) - Submit transactions
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd auth
|
||||
description: User authentication with Passkeys
|
||||
---
|
||||
|
||||
# snrd auth
|
||||
|
||||
Manage user authentication using WebAuthn/Passkey technology for decentralized identity.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd auth [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `login` | Login with WebAuthn authentication |
|
||||
| `register` | Register a new identity using WebAuthn |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="boolean">
|
||||
Help for auth
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
Adjustment factor to be multiplied against the estimate returned by the tx simulation
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="~/.sonr">
|
||||
Directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="boolean">
|
||||
Disable colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
Tendermint RPC interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="boolean">
|
||||
Print out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Register a new identity
|
||||
|
||||
```shell
|
||||
snrd auth register --username alice
|
||||
```
|
||||
|
||||
### Login with existing identity
|
||||
|
||||
```shell
|
||||
snrd auth login --username alice
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd auth register](./snrd_auth_register.mdx) - Register a new identity using WebAuthn
|
||||
- [snrd auth login](./snrd_auth_login.mdx) - Login with WebAuthn authentication
|
||||
@@ -0,0 +1,117 @@
|
||||
---
|
||||
title: snrd auth register
|
||||
description: Register a new decentralized identity using WebAuthn/Passkey authentication
|
||||
---
|
||||
|
||||
# snrd auth register
|
||||
|
||||
Register a new decentralized identity using WebAuthn/Passkey authentication.
|
||||
|
||||
This command will:
|
||||
1. Start a local auth server
|
||||
2. Open your browser for WebAuthn credential creation
|
||||
3. Create a DID document with your WebAuthn credential
|
||||
4. Auto-create a DWN vault for data storage
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd auth register [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="username" type="string" required>
|
||||
Username for the new identity
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="auto-vault" type="boolean" default="true">
|
||||
Automatically create vault for DID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="webauthn" type="boolean" default="true">
|
||||
Use WebAuthn for registration
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="boolean">
|
||||
Help for register
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
Adjustment factor to be multiplied against the estimate returned by the tx simulation
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="~/.sonr">
|
||||
Directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="boolean">
|
||||
Disable colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
Tendermint RPC interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="boolean">
|
||||
Print out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic registration
|
||||
|
||||
```shell
|
||||
snrd auth register --username alice
|
||||
```
|
||||
|
||||
### Registration without auto vault creation
|
||||
|
||||
```shell
|
||||
snrd auth register --username alice --auto-vault=false
|
||||
```
|
||||
|
||||
### Registration with custom chain ID
|
||||
|
||||
```shell
|
||||
snrd auth register --username alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd auth](./snrd_auth.mdx) - User authentication with Passkeys
|
||||
- [snrd auth login](./snrd_auth_login.mdx) - Login with WebAuthn authentication
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd genesis
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd genesis [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `add-genesis-account` | Add a genesis account to genesis.json |
|
||||
| `collect-gentxs` | Collect genesis txs and output a genesis.json file |
|
||||
| `gentx` | Generate a genesis tx carrying a self delegation |
|
||||
| `migrate` | Migrate genesis to a specified target version |
|
||||
| `validate` | Validates the genesis file at the default location or at the location passed as an arg |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd genesis
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,122 @@
|
||||
---
|
||||
title: snrd genesis add-genesis-account
|
||||
description: Add a genesis account to genesis.json. The provided account must specify
|
||||
---
|
||||
|
||||
# snrd genesis add-genesis-account
|
||||
|
||||
Add a genesis account to genesis.json. The provided account must specify
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis add-genesis-account [address_or_key_name] [coin][,[coin]] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="append" type="string">
|
||||
the coins to an account already in the genesis.json file
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="grpc-addr" type="string">
|
||||
the gRPC endpoint to use for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="grpc-insecure" type="string">
|
||||
gRPC over insecure channels, if not the server must use TLS
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="height" type="integer">
|
||||
Use a specific height to query state at (this can error if the node is pruning state)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for add-genesis-account
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|kwallet|pass|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="module-name" type="string">
|
||||
module account name
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to CometBFT RPC interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="vesting-amount" type="string">
|
||||
amount of coins for vesting accounts
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="vesting-end-time" type="integer">
|
||||
schedule end time (unix epoch) for vesting accounts
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="vesting-start-time" type="integer">
|
||||
schedule start time (unix epoch) for vesting accounts
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Add account with initial coins
|
||||
|
||||
```shell
|
||||
snrd genesis add-genesis-account alice 1000000snr
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd genesis collect-gentxs
|
||||
description: Collect genesis txs and output a genesis.json file
|
||||
---
|
||||
|
||||
# snrd genesis collect-gentxs
|
||||
|
||||
Collect genesis txs and output a genesis.json file. This command iterates over all genesis transactions in the gentx directory and merges them into the genesis.json file.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis collect-gentxs [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="gentx-dir" type="string">
|
||||
Override default "gentx" directory from which collect and execute genesis transactions; default [--home]/config/gentx/
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="boolean">
|
||||
Help for collect-gentxs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="~/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
Adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g., 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="boolean">
|
||||
Disable colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="boolean">
|
||||
Print out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Collect genesis transactions
|
||||
|
||||
```shell
|
||||
snrd genesis collect-gentxs
|
||||
```
|
||||
|
||||
### Collect from custom directory
|
||||
|
||||
```shell
|
||||
snrd genesis collect-gentxs --gentx-dir ./custom-gentx/
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Genesis-related subcommands
|
||||
- [snrd genesis gentx](./snrd_genesis_gentx.mdx) - Generate a genesis tx carrying a self delegation
|
||||
- [snrd genesis add-genesis-account](./snrd_genesis_add-genesis-account.mdx) - Add a genesis account to genesis.json
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd genesis export
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis export
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd genesis [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `add-genesis-account` | Add a genesis account to genesis.json |
|
||||
| `collect-gentxs` | Collect genesis txs and output a genesis.json file |
|
||||
| `gentx` | Generate a genesis tx carrying a self delegation |
|
||||
| `migrate` | Migrate genesis to a specified target version |
|
||||
| `validate` | Validates the genesis file at the default location or at the location passed as an arg |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd genesis export
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,210 @@
|
||||
---
|
||||
title: snrd genesis gentx
|
||||
description: Generate a genesis transaction that creates a validator with a self-delegation,
|
||||
---
|
||||
|
||||
# snrd genesis gentx
|
||||
|
||||
Generate a genesis transaction that creates a validator with a self-delegation,
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis gentx [key_name] [amount] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="account-number" type="string">
|
||||
The account number of the signing account (offline mode only)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="amount" type="string">
|
||||
Amount of coins to bond
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="aux" type="string">
|
||||
aux signer data instead of sending a tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="commission-max-change-rate" type="string">
|
||||
The maximum commission change rate percentage (per day)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="commission-max-rate" type="string">
|
||||
The maximum commission rate percentage
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="commission-rate" type="string">
|
||||
The initial commission rate percentage
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="details" type="string">
|
||||
The validator's (optional) details
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="dry-run" type="string">
|
||||
the --gas flag and perform a simulation of a transaction, but don't broadcast it (when enabled, the local Keybase is not accessible)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fee-granter" type="string">
|
||||
Fee granter grants fees for the transaction
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fee-payer" type="string">
|
||||
Fee payer pays fees for the transaction instead of deducting from the signer
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10uatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas" type="string" default="200000">
|
||||
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".
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="generate-only" type="string">
|
||||
an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for gentx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="identity" type="string">
|
||||
The (optional) identity signature (ex. UPort or Keybase)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="ip" type="string" default="192.168.1.203">
|
||||
The node's public P2P IP
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|kwallet|pass|test|memory)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="ledger" type="string">
|
||||
a connected Ledger device
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="min-self-delegation" type="string">
|
||||
The minimum self delegation required on the validator
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="moniker" type="string">
|
||||
The validator's (optional) moniker
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to CometBFT rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node-id" type="string">
|
||||
The node's NodeID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="note" type="string">
|
||||
Note to add a description to the transaction (previously --memo)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="offline" type="string">
|
||||
mode (does not allow any online functionality)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output-document" type="string">
|
||||
Write the genesis transaction JSON document to the given file instead of the default location
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="p2p-port" type="string" default="26656">
|
||||
The node's public P2P port
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pubkey" type="string">
|
||||
The validator's Protobuf JSON encoded public key
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="security-contact" type="string">
|
||||
The validator's (optional) security contact email
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="sequence" type="string">
|
||||
The sequence number of the signing account (offline mode only)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="sign-mode" type="string">
|
||||
Choose sign mode (direct|amino-json|direct-aux|textual), this is an advanced feature
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="timeout-height" type="string">
|
||||
Set a block timeout height to prevent the tx from being committed past a certain height
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="tip" type="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
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="website" type="string">
|
||||
The validator's (optional) website
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="yes" type="string">
|
||||
tx broadcasting prompt confirmation
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Generate genesis transaction
|
||||
|
||||
```shell
|
||||
snrd genesis gentx alice 1000000snr --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd genesis init
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis init
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd genesis [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `add-genesis-account` | Add a genesis account to genesis.json |
|
||||
| `collect-gentxs` | Collect genesis txs and output a genesis.json file |
|
||||
| `gentx` | Generate a genesis tx carrying a self delegation |
|
||||
| `migrate` | Migrate genesis to a specified target version |
|
||||
| `validate` | Validates the genesis file at the default location or at the location passed as an arg |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd genesis init
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd genesis migrate
|
||||
description: Migrate the source genesis into the target version and print to STDOUT
|
||||
---
|
||||
|
||||
# snrd genesis migrate
|
||||
|
||||
Migrate the source genesis into the target version and print to STDOUT
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis migrate [target-version] [genesis-file] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Override chain_id with this flag
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="genesis-time" type="string">
|
||||
Override genesis_time with this flag
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for migrate
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output-document" type="string">
|
||||
Exported state is written to the given file instead of STDOUT
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd genesis migrate
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: snrd genesis validate
|
||||
description: Validates the genesis file at the default location or at the location passed as an arg
|
||||
---
|
||||
|
||||
# snrd genesis validate
|
||||
|
||||
Validates the genesis file at the default location or at the location passed as an arg
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd genesis validate [file] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for validate
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd genesis validate
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: snrd help
|
||||
description: Help provides help for any command in the application.
|
||||
---
|
||||
|
||||
# snrd help
|
||||
|
||||
Help provides help for any command in the application.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd help [command] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for help
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd help
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: snrd init
|
||||
description: Initialize validators's and node's configuration files.
|
||||
---
|
||||
|
||||
# snrd init
|
||||
|
||||
Initialize validators's and node's configuration files.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd init [moniker] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
genesis file chain-id, if left blank will be randomly created
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="default-denom" type="string">
|
||||
genesis file default denomination, if left blank default value is 'stake'
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for init
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
node's home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="initial-height" type="integer" default="1">
|
||||
specify the initial block height at genesis
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="overwrite" type="string">
|
||||
the genesis.json file
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="recover" type="string">
|
||||
seed phrase to recover existing key instead of creating
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd init
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd keys
|
||||
description: Keyring management commands. These keys may be in any format supported by the
|
||||
---
|
||||
|
||||
# snrd keys
|
||||
|
||||
Keyring management commands. These keys may be in any format supported by the
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys [command]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for keys
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,158 @@
|
||||
---
|
||||
title: snrd keys add
|
||||
description: Derive a new private key and encrypt to disk.
|
||||
---
|
||||
|
||||
# snrd keys add
|
||||
|
||||
Derive a new private key and encrypt to disk.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys add <name> [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="account" type="integer">
|
||||
Account number for HD derivation (less than equal 2147483647)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="coin-type" type="integer" default="60">
|
||||
coin type number for HD derivation
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="dry-run" type="string">
|
||||
action, but don't add key to local keystore
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="hd-path" type="string">
|
||||
Manual HD Path derivation (overrides BIP44 config)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for add
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="index" type="integer">
|
||||
Address index number for HD derivation (less than equal 2147483647)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="interactive" type="string">
|
||||
prompt user for BIP39 passphrase and mnemonic
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="key-type" type="string" default="eth_secp256k1">
|
||||
Key signing algorithm to generate keys for
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="ledger" type="string">
|
||||
a local reference to a private key on a Ledger device
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="multisig" type="string">
|
||||
List of key names stored in keyring to construct a public legacy multisig key
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="multisig-threshold" type="integer" default="1">
|
||||
K out of N required signatures. For use in conjunction with --multisig
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="no-backup" type="string">
|
||||
print out seed phrase (if others are watching the terminal)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="nosort" type="string">
|
||||
passed to --multisig are taken in the order they're supplied
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pubkey" type="string">
|
||||
Parse a public key in JSON format and saves key info to <name> file.
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pubkey-base64" type="string">
|
||||
Parse a public key in base64 format and saves key info.
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="recover" type="string">
|
||||
seed phrase to recover existing key instead of creating
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="source" type="string">
|
||||
Import mnemonic from a file (only usable when recover or interactive is passed)
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Add new key
|
||||
|
||||
```shell
|
||||
snrd keys add alice
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: snrd keys delete
|
||||
description: Delete keys from the Keybase backend.
|
||||
---
|
||||
|
||||
# snrd keys delete
|
||||
|
||||
Delete keys from the Keybase backend.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys delete <name>... [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="force" type="string">
|
||||
the key unconditionally without asking for the passphrase. Deprecated.
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for delete
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="yes" type="string">
|
||||
confirmation prompt when deleting offline or ledger key references
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys delete
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: snrd keys export
|
||||
description: Export a private key from the local keyring in ASCII-armored encrypted format.
|
||||
---
|
||||
|
||||
# snrd keys export
|
||||
|
||||
Export a private key from the local keyring in ASCII-armored encrypted format.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys export <name> [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for export
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="unarmored-hex" type="string">
|
||||
unarmored hex privkey. Requires --unsafe.
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="unsafe" type="string">
|
||||
unsafe operations. This flag must be switched on along with all unsafe operation-specific options.
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys export
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd keys import
|
||||
description: Import a ASCII armored private key into the local keybase.
|
||||
---
|
||||
|
||||
# snrd keys import
|
||||
|
||||
Import a ASCII armored private key into the local keybase.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys import <name> <keyfile> [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for import
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys import
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd keys list
|
||||
description: Return a list of all public keys stored by this key manager
|
||||
---
|
||||
|
||||
# snrd keys list
|
||||
|
||||
Return a list of all public keys stored by this key manager
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys list [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for list
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="list-names" type="string">
|
||||
names only
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### List all keys
|
||||
|
||||
```shell
|
||||
snrd keys list
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd keys migrate
|
||||
description: Migrate keys from Amino to Protocol Buffers records.
|
||||
---
|
||||
|
||||
# snrd keys migrate
|
||||
|
||||
Migrate keys from Amino to Protocol Buffers records.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys migrate [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for migrate
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys migrate
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd keys parse
|
||||
description: Convert and print to stdout key addresses and fingerprints from
|
||||
---
|
||||
|
||||
# snrd keys parse
|
||||
|
||||
Convert and print to stdout key addresses and fingerprints from
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys parse <hex-or-bech32-address> [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for parse
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys parse
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,114 @@
|
||||
---
|
||||
title: snrd keys show
|
||||
description: Display keys details. If multiple names or addresses are provided,
|
||||
---
|
||||
|
||||
# snrd keys show
|
||||
|
||||
Display keys details. If multiple names or addresses are provided,
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd keys show [name_or_address [name_or_address...]] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="address" type="string">
|
||||
the address only (cannot be used with --output)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="bech" type="string" default="acc">
|
||||
The Bech32 prefix encoding for a key (acc|val|cons)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="device" type="string">
|
||||
the address in a ledger device (cannot be used with --pubkey)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for show
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="multisig-threshold" type="integer" default="1">
|
||||
K out of N required signatures
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pubkey" type="string">
|
||||
the public key only (cannot be used with --output)
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend (os|file|test)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-dir" type="string">
|
||||
The client Keyring directory; if omitted, the default 'home' directory will be used
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd keys show
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: snrd migrate
|
||||
description: unknown command "migrate" for "snrd"
|
||||
---
|
||||
|
||||
# snrd migrate
|
||||
|
||||
unknown command "migrate" for "snrd"
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd migrate
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,20 @@
|
||||
---
|
||||
title: snrd node
|
||||
description: unknown command "node" for "snrd"
|
||||
---
|
||||
|
||||
# snrd node
|
||||
|
||||
unknown command "node" for "snrd"
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd node
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd prune
|
||||
description: Prune app history states by keeping the recent heights and deleting old heights.
|
||||
---
|
||||
|
||||
# snrd prune
|
||||
|
||||
Prune app history states by keeping the recent heights and deleting old heights.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd prune [pruning-method] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="app-db-backend" type="string">
|
||||
The type of database for application and snapshots databases
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for prune
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pruning-interval" type="string">
|
||||
Height interval at which pruned heights are removed from disk (ignored if pruning is not 'custom'),
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="pruning-keep-recent" type="string">
|
||||
Number of recent heights to keep on disk (ignored if pruning is not 'custom')
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd prune
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,131 @@
|
||||
---
|
||||
title: snrd query
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | Querying commands for the auth module |
|
||||
| `authz` | Querying commands for the authz module |
|
||||
| `bank` | Querying commands for the bank module |
|
||||
| `block-results` | Query for a committed block's results by height |
|
||||
| `blocks` | Query for paginated blocks that match a set of events |
|
||||
| `circuit` | Querying commands for the circuit module |
|
||||
| `comet-validator-set` | Get the full CometBFT validator set at given height |
|
||||
| `consensus` | Querying commands for the consensus module |
|
||||
| `dex` | Querying commands for the dex module |
|
||||
| `did` | Querying commands for the did module |
|
||||
| `distribution` | Querying commands for the distribution module |
|
||||
| `dwn` | Querying commands for the dwn module |
|
||||
| `erc20` | Querying commands for the erc20 module |
|
||||
| `evidence` | Querying commands for the evidence module |
|
||||
| `evm` | Querying commands for the evm module |
|
||||
| `feegrant` | Querying commands for the feegrant module |
|
||||
| `feemarket` | Querying commands for the fee market module |
|
||||
| `gov` | Querying commands for the gov module |
|
||||
| `group` | Querying commands for the group module |
|
||||
| `ibc` | Querying commands for the IBC module |
|
||||
| `ibc-fee` | IBC relayer incentivization query subcommands |
|
||||
| `ibc-transfer` | IBC fungible token transfer query subcommands |
|
||||
| `ibc-wasm` | IBC wasm manager module query subcommands |
|
||||
| `interchain-accounts` | IBC interchain accounts query subcommands |
|
||||
| `mint` | Querying commands for the mint module |
|
||||
| `nft` | Querying commands for the nft module |
|
||||
| `params` | Querying commands for the params module |
|
||||
| `ratelimit` | Querying commands for the ratelimit module |
|
||||
| `slashing` | Querying commands for the slashing module |
|
||||
| `staking` | Querying commands for the staking module |
|
||||
| `svc` | Querying commands for the svc module |
|
||||
| `tokenfactory` | Querying commands for the tokenfactory module |
|
||||
| `tx` | Query for a transaction by hash, "addr/seq" combination or comma-separated signatures in a committed block |
|
||||
| `txs` | Query for paginated transactions that match a set of events |
|
||||
| `upgrade` | Querying commands for the upgrade module |
|
||||
| `wait-tx` | Wait for a transaction to be included in a block |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,131 @@
|
||||
---
|
||||
title: snrd query account
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query account
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | Querying commands for the auth module |
|
||||
| `authz` | Querying commands for the authz module |
|
||||
| `bank` | Querying commands for the bank module |
|
||||
| `block-results` | Query for a committed block's results by height |
|
||||
| `blocks` | Query for paginated blocks that match a set of events |
|
||||
| `circuit` | Querying commands for the circuit module |
|
||||
| `comet-validator-set` | Get the full CometBFT validator set at given height |
|
||||
| `consensus` | Querying commands for the consensus module |
|
||||
| `dex` | Querying commands for the dex module |
|
||||
| `did` | Querying commands for the did module |
|
||||
| `distribution` | Querying commands for the distribution module |
|
||||
| `dwn` | Querying commands for the dwn module |
|
||||
| `erc20` | Querying commands for the erc20 module |
|
||||
| `evidence` | Querying commands for the evidence module |
|
||||
| `evm` | Querying commands for the evm module |
|
||||
| `feegrant` | Querying commands for the feegrant module |
|
||||
| `feemarket` | Querying commands for the fee market module |
|
||||
| `gov` | Querying commands for the gov module |
|
||||
| `group` | Querying commands for the group module |
|
||||
| `ibc` | Querying commands for the IBC module |
|
||||
| `ibc-fee` | IBC relayer incentivization query subcommands |
|
||||
| `ibc-transfer` | IBC fungible token transfer query subcommands |
|
||||
| `ibc-wasm` | IBC wasm manager module query subcommands |
|
||||
| `interchain-accounts` | IBC interchain accounts query subcommands |
|
||||
| `mint` | Querying commands for the mint module |
|
||||
| `nft` | Querying commands for the nft module |
|
||||
| `params` | Querying commands for the params module |
|
||||
| `ratelimit` | Querying commands for the ratelimit module |
|
||||
| `slashing` | Querying commands for the slashing module |
|
||||
| `staking` | Querying commands for the staking module |
|
||||
| `svc` | Querying commands for the svc module |
|
||||
| `tokenfactory` | Querying commands for the tokenfactory module |
|
||||
| `tx` | Query for a transaction by hash, "addr/seq" combination or comma-separated signatures in a committed block |
|
||||
| `txs` | Query for paginated transactions that match a set of events |
|
||||
| `upgrade` | Querying commands for the upgrade module |
|
||||
| `wait-tx` | Wait for a transaction to be included in a block |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query account
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,131 @@
|
||||
---
|
||||
title: snrd query accounts
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query accounts
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | Querying commands for the auth module |
|
||||
| `authz` | Querying commands for the authz module |
|
||||
| `bank` | Querying commands for the bank module |
|
||||
| `block-results` | Query for a committed block's results by height |
|
||||
| `blocks` | Query for paginated blocks that match a set of events |
|
||||
| `circuit` | Querying commands for the circuit module |
|
||||
| `comet-validator-set` | Get the full CometBFT validator set at given height |
|
||||
| `consensus` | Querying commands for the consensus module |
|
||||
| `dex` | Querying commands for the dex module |
|
||||
| `did` | Querying commands for the did module |
|
||||
| `distribution` | Querying commands for the distribution module |
|
||||
| `dwn` | Querying commands for the dwn module |
|
||||
| `erc20` | Querying commands for the erc20 module |
|
||||
| `evidence` | Querying commands for the evidence module |
|
||||
| `evm` | Querying commands for the evm module |
|
||||
| `feegrant` | Querying commands for the feegrant module |
|
||||
| `feemarket` | Querying commands for the fee market module |
|
||||
| `gov` | Querying commands for the gov module |
|
||||
| `group` | Querying commands for the group module |
|
||||
| `ibc` | Querying commands for the IBC module |
|
||||
| `ibc-fee` | IBC relayer incentivization query subcommands |
|
||||
| `ibc-transfer` | IBC fungible token transfer query subcommands |
|
||||
| `ibc-wasm` | IBC wasm manager module query subcommands |
|
||||
| `interchain-accounts` | IBC interchain accounts query subcommands |
|
||||
| `mint` | Querying commands for the mint module |
|
||||
| `nft` | Querying commands for the nft module |
|
||||
| `params` | Querying commands for the params module |
|
||||
| `ratelimit` | Querying commands for the ratelimit module |
|
||||
| `slashing` | Querying commands for the slashing module |
|
||||
| `staking` | Querying commands for the staking module |
|
||||
| `svc` | Querying commands for the svc module |
|
||||
| `tokenfactory` | Querying commands for the tokenfactory module |
|
||||
| `tx` | Query for a transaction by hash, "addr/seq" combination or comma-separated signatures in a committed block |
|
||||
| `txs` | Query for paginated transactions that match a set of events |
|
||||
| `upgrade` | Querying commands for the upgrade module |
|
||||
| `wait-tx` | Wait for a transaction to be included in a block |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query accounts
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
title: snrd query auth
|
||||
description: Querying commands for the auth module
|
||||
---
|
||||
|
||||
# snrd query auth
|
||||
|
||||
Querying commands for the auth module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query auth [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query auth [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `account` | Query account by address |
|
||||
| `account-info` | Query account info which is common to all account types. |
|
||||
| `accounts` | Query all the accounts |
|
||||
| `address-by-acc-num` | Query account address by account number |
|
||||
| `address-bytes-to-string` | Transform an address bytes to string |
|
||||
| `address-string-to-bytes` | Transform an address string to bytes |
|
||||
| `bech32-prefix` | Query the chain bech32 prefix (if applicable) |
|
||||
| `module-account` | Query module account info by module name |
|
||||
| `module-accounts` | Query all module accounts |
|
||||
| `params` | Query the current auth parameters |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for auth
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query auth
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,107 @@
|
||||
---
|
||||
title: snrd query bank
|
||||
description: Querying commands for the bank module
|
||||
---
|
||||
|
||||
# snrd query bank
|
||||
|
||||
Querying commands for the bank module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query bank [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query bank [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `balance` | Query an account balance by address and denom |
|
||||
| `balances` | Query for account balances by address |
|
||||
| `denom-metadata` | Query the client metadata of a given coin denomination |
|
||||
| `denom-metadata-by-query-string` | Execute the DenomMetadataByQueryString RPC method |
|
||||
| `denom-owners` | Query for all account addresses that own a particular token denomination. |
|
||||
| `denoms-metadata` | Query the client metadata for all registered coin denominations |
|
||||
| `params` | Query the current bank parameters |
|
||||
| `send-enabled` | Query for send enabled entries |
|
||||
| `spendable-balance` | Query the spendable balance of a single denom for a single account. |
|
||||
| `spendable-balances` | Query for account spendable balances by address |
|
||||
| `total-supply` | Query the total supply of coins of the chain |
|
||||
| `total-supply-of` | Query the supply of a single coin denom |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for bank
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query bank
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,97 @@
|
||||
---
|
||||
title: snrd query consensus
|
||||
description: Querying commands for the consensus module
|
||||
---
|
||||
|
||||
# snrd query consensus
|
||||
|
||||
Querying commands for the consensus module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query consensus [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query consensus [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `comet` | Querying commands for the cosmos.base.tendermint.v1beta1.Service service |
|
||||
| `params` | Query the current consensus parameters |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for consensus
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query consensus
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,131 @@
|
||||
---
|
||||
title: snrd query delegation
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query delegation
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | Querying commands for the auth module |
|
||||
| `authz` | Querying commands for the authz module |
|
||||
| `bank` | Querying commands for the bank module |
|
||||
| `block-results` | Query for a committed block's results by height |
|
||||
| `blocks` | Query for paginated blocks that match a set of events |
|
||||
| `circuit` | Querying commands for the circuit module |
|
||||
| `comet-validator-set` | Get the full CometBFT validator set at given height |
|
||||
| `consensus` | Querying commands for the consensus module |
|
||||
| `dex` | Querying commands for the dex module |
|
||||
| `did` | Querying commands for the did module |
|
||||
| `distribution` | Querying commands for the distribution module |
|
||||
| `dwn` | Querying commands for the dwn module |
|
||||
| `erc20` | Querying commands for the erc20 module |
|
||||
| `evidence` | Querying commands for the evidence module |
|
||||
| `evm` | Querying commands for the evm module |
|
||||
| `feegrant` | Querying commands for the feegrant module |
|
||||
| `feemarket` | Querying commands for the fee market module |
|
||||
| `gov` | Querying commands for the gov module |
|
||||
| `group` | Querying commands for the group module |
|
||||
| `ibc` | Querying commands for the IBC module |
|
||||
| `ibc-fee` | IBC relayer incentivization query subcommands |
|
||||
| `ibc-transfer` | IBC fungible token transfer query subcommands |
|
||||
| `ibc-wasm` | IBC wasm manager module query subcommands |
|
||||
| `interchain-accounts` | IBC interchain accounts query subcommands |
|
||||
| `mint` | Querying commands for the mint module |
|
||||
| `nft` | Querying commands for the nft module |
|
||||
| `params` | Querying commands for the params module |
|
||||
| `ratelimit` | Querying commands for the ratelimit module |
|
||||
| `slashing` | Querying commands for the slashing module |
|
||||
| `staking` | Querying commands for the staking module |
|
||||
| `svc` | Querying commands for the svc module |
|
||||
| `tokenfactory` | Querying commands for the tokenfactory module |
|
||||
| `tx` | Query for a transaction by hash, "addr/seq" combination or comma-separated signatures in a committed block |
|
||||
| `txs` | Query for paginated transactions that match a set of events |
|
||||
| `upgrade` | Querying commands for the upgrade module |
|
||||
| `wait-tx` | Wait for a transaction to be included in a block |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query delegation
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
title: snrd query did
|
||||
description: Querying commands for the did module
|
||||
---
|
||||
|
||||
# snrd query did
|
||||
|
||||
Querying commands for the did module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query did [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query did [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `credential` | Get a W3C verifiable credential |
|
||||
| `credentials` | List all W3C verifiable credentials |
|
||||
| `credentials-by-did` | Get all credentials (verifiable and WebAuthn) associated with a DID |
|
||||
| `document` | Get a W3C DID document by DID |
|
||||
| `documents` | List all W3C DID documents |
|
||||
| `documents-by-controller` | Get W3C DID documents by controller |
|
||||
| `params` | Query the current consensus parameters |
|
||||
| `resolve` | Resolve a DID to its document |
|
||||
| `service` | Get a service endpoint from a DID document |
|
||||
| `verification-method` | Get a verification method from a DID document |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for did
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query did
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,105 @@
|
||||
---
|
||||
title: snrd query distribution
|
||||
description: Querying commands for the distribution module
|
||||
---
|
||||
|
||||
# snrd query distribution
|
||||
|
||||
Querying commands for the distribution module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query distribution [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query distribution [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `commission` | Query distribution validator commission |
|
||||
| `community-pool` | Query the amount of coins in the community pool |
|
||||
| `delegator-validators` | Execute the DelegatorValidators RPC method |
|
||||
| `delegator-withdraw-address` | Execute the DelegatorWithdrawAddress RPC method |
|
||||
| `params` | Query the current distribution parameters. |
|
||||
| `rewards` | Query all distribution delegator rewards |
|
||||
| `rewards-by-validator` | Query all distribution delegator from a particular validator |
|
||||
| `slashes` | Query distribution validator slashes |
|
||||
| `validator-distribution-info` | Query validator distribution info |
|
||||
| `validator-outstanding-rewards` | Query distribution outstanding (un-withdrawn) rewards for a validator and all their delegations |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for distribution
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query distribution
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,108 @@
|
||||
---
|
||||
title: snrd query dwn
|
||||
description: Querying commands for the dwn module
|
||||
---
|
||||
|
||||
# snrd query dwn
|
||||
|
||||
Querying commands for the dwn module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query dwn [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query dwn [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `cid` | Execute the CID RPC method |
|
||||
| `encrypted-record` | Execute the EncryptedRecord RPC method |
|
||||
| `encryption-status` | Execute the EncryptionStatus RPC method |
|
||||
| `ipfs` | Execute the IPFS RPC method |
|
||||
| `params` | Query the current consensus parameters |
|
||||
| `permissions` | Query DWN permissions for a target |
|
||||
| `protocol` | Query a specific DWN protocol |
|
||||
| `protocols` | Query DWN protocols for a target |
|
||||
| `record` | Query a specific DWN record |
|
||||
| `records` | Query DWN records for a target |
|
||||
| `vault` | Query a specific vault |
|
||||
| `vaults` | Query vaults by owner |
|
||||
| `vrf-contributions` | Execute the VRFContributions RPC method |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for dwn
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query dwn
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd query feegrant
|
||||
description: Querying commands for the feegrant module
|
||||
---
|
||||
|
||||
# snrd query feegrant
|
||||
|
||||
Querying commands for the feegrant module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query feegrant [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query feegrant [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `grant` | Query details of a single grant |
|
||||
| `grants-by-grantee` | Query all grants of a grantee |
|
||||
| `grants-by-granter` | Query all grants by a granter |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for feegrant
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query feegrant
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,104 @@
|
||||
---
|
||||
title: snrd query gov
|
||||
description: Querying commands for the gov module
|
||||
---
|
||||
|
||||
# snrd query gov
|
||||
|
||||
Querying commands for the gov module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query gov [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query gov [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `constitution` | Query the current chain constitution |
|
||||
| `deposit` | Query details of a deposit |
|
||||
| `deposits` | Query deposits on a proposal |
|
||||
| `params` | Query the parameters of the governance process |
|
||||
| `proposal` | Query details of a single proposal |
|
||||
| `proposals` | Query proposals with optional filters |
|
||||
| `tally` | Query the tally of a proposal vote |
|
||||
| `vote` | Query details of a single vote |
|
||||
| `votes` | Query votes of a single proposal |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for gov
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query gov
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd query slashing
|
||||
description: Querying commands for the slashing module
|
||||
---
|
||||
|
||||
# snrd query slashing
|
||||
|
||||
Querying commands for the slashing module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query slashing [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query slashing [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `params` | Query the current slashing parameters |
|
||||
| `signing-info` | Query a validator's signing information |
|
||||
| `signing-infos` | Query signing information of all validators |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for slashing
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query slashing
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,109 @@
|
||||
---
|
||||
title: snrd query staking
|
||||
description: Querying commands for the staking module
|
||||
---
|
||||
|
||||
# snrd query staking
|
||||
|
||||
Querying commands for the staking module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query staking [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query staking [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `delegation` | Query a delegation based on address and validator address |
|
||||
| `delegations` | Query all delegations made by one delegator |
|
||||
| `delegations-to` | Query all delegations made to one validator |
|
||||
| `delegator-validator` | Query validator info for given delegator validator pair |
|
||||
| `delegator-validators` | Query all validators info for given delegator address |
|
||||
| `historical-info` | Query historical info at given height |
|
||||
| `params` | Query the current staking parameters information |
|
||||
| `pool` | Query the current staking pool values |
|
||||
| `redelegation` | Query a redelegation record based on delegator and a source and destination validator address |
|
||||
| `unbonding-delegation` | Query an unbonding-delegation record based on delegator and validator address |
|
||||
| `unbonding-delegations` | Query all unbonding-delegations records for one delegator |
|
||||
| `unbonding-delegations-from` | Query all unbonding delegatations from a validator |
|
||||
| `validator` | Query a validator |
|
||||
| `validators` | Query for all validators |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for staking
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query staking
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd query svc
|
||||
description: Querying commands for the svc module
|
||||
---
|
||||
|
||||
# snrd query svc
|
||||
|
||||
Querying commands for the svc module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query svc [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query svc [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `domain-verification` | Query domain verification status |
|
||||
| `params` | Query the current consensus parameters |
|
||||
| `service` | Query service information by ID |
|
||||
| `services-by-domain` | Query services bound to a specific domain |
|
||||
| `services-by-owner` | Query all services owned by an address |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for svc
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query svc
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,131 @@
|
||||
---
|
||||
title: snrd query tendermint
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query tendermint
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd query [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `auth` | Querying commands for the auth module |
|
||||
| `authz` | Querying commands for the authz module |
|
||||
| `bank` | Querying commands for the bank module |
|
||||
| `block-results` | Query for a committed block's results by height |
|
||||
| `blocks` | Query for paginated blocks that match a set of events |
|
||||
| `circuit` | Querying commands for the circuit module |
|
||||
| `comet-validator-set` | Get the full CometBFT validator set at given height |
|
||||
| `consensus` | Querying commands for the consensus module |
|
||||
| `dex` | Querying commands for the dex module |
|
||||
| `did` | Querying commands for the did module |
|
||||
| `distribution` | Querying commands for the distribution module |
|
||||
| `dwn` | Querying commands for the dwn module |
|
||||
| `erc20` | Querying commands for the erc20 module |
|
||||
| `evidence` | Querying commands for the evidence module |
|
||||
| `evm` | Querying commands for the evm module |
|
||||
| `feegrant` | Querying commands for the feegrant module |
|
||||
| `feemarket` | Querying commands for the fee market module |
|
||||
| `gov` | Querying commands for the gov module |
|
||||
| `group` | Querying commands for the group module |
|
||||
| `ibc` | Querying commands for the IBC module |
|
||||
| `ibc-fee` | IBC relayer incentivization query subcommands |
|
||||
| `ibc-transfer` | IBC fungible token transfer query subcommands |
|
||||
| `ibc-wasm` | IBC wasm manager module query subcommands |
|
||||
| `interchain-accounts` | IBC interchain accounts query subcommands |
|
||||
| `mint` | Querying commands for the mint module |
|
||||
| `nft` | Querying commands for the nft module |
|
||||
| `params` | Querying commands for the params module |
|
||||
| `ratelimit` | Querying commands for the ratelimit module |
|
||||
| `slashing` | Querying commands for the slashing module |
|
||||
| `staking` | Querying commands for the staking module |
|
||||
| `svc` | Querying commands for the svc module |
|
||||
| `tokenfactory` | Querying commands for the tokenfactory module |
|
||||
| `tx` | Query for a transaction by hash, "addr/seq" combination or comma-separated signatures in a committed block |
|
||||
| `txs` | Query for paginated transactions that match a set of events |
|
||||
| `upgrade` | Querying commands for the upgrade module |
|
||||
| `wait-tx` | Wait for a transaction to be included in a block |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query tendermint
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,106 @@
|
||||
---
|
||||
title: snrd query tx
|
||||
description: Query for a transaction by hash or address/sequence combination
|
||||
---
|
||||
|
||||
# snrd query tx
|
||||
|
||||
Example:
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd query tx --type=[hash|acc_seq|signature] [hash|acc_seq|signature] [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="grpc-addr" type="string">
|
||||
the gRPC endpoint to use for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="grpc-insecure" type="string">
|
||||
gRPC over insecure channels, if not the server must use TLS
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="height" type="integer">
|
||||
Use a specific height to query state at (this can error if the node is pruning state)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to CometBFT RPC interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="type" type="string" default="hash">
|
||||
The type to be used when querying tx, can be one of "hash", "acc_seq", "signature"
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic query
|
||||
|
||||
```shell
|
||||
snrd query tx
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
title: snrd rollback
|
||||
description: A state rollback is performed to recover from an incorrect application state transition,
|
||||
---
|
||||
|
||||
# snrd rollback
|
||||
|
||||
A state rollback is performed to recover from an incorrect application state transition,
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd rollback [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="hard" type="string">
|
||||
last block as well as state
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for rollback
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
The application home directory
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd rollback
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,90 @@
|
||||
---
|
||||
title: snrd status
|
||||
description: Query remote node for status
|
||||
---
|
||||
|
||||
# snrd status
|
||||
|
||||
Query remote node for status
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd status [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for status
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
Node to connect to
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="json">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd status
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd tendermint
|
||||
description: CometBFT subcommands
|
||||
---
|
||||
|
||||
# snrd tendermint
|
||||
|
||||
CometBFT subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd comet [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `bootstrap-state` | Bootstrap CometBFT state at an arbitrary block height using a light client |
|
||||
| `reset-state` | Remove all the data and WAL |
|
||||
| `show-address` | Shows this node's CometBFT validator consensus address |
|
||||
| `show-node-id` | Show this node's ID |
|
||||
| `show-validator` | Show this node's CometBFT validator info |
|
||||
| `unsafe-reset-all` | (unsafe) Remove all the data and WAL, reset this node's validator to genesis state |
|
||||
| `version` | Print CometBFT libraries' version |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for comet
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd tendermint
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,135 @@
|
||||
---
|
||||
title: snrd tx
|
||||
description: Transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx
|
||||
|
||||
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
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for tx
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
@@ -0,0 +1,97 @@
|
||||
---
|
||||
title: snrd tx bank
|
||||
description: Bank transaction subcommands
|
||||
---
|
||||
|
||||
# snrd tx bank
|
||||
|
||||
Bank transaction subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx bank [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx bank [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `multi-send` | Send funds from one account to two or more accounts. |
|
||||
| `send` | Send funds from one account to another. |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for bank
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx bank --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,86 @@
|
||||
---
|
||||
title: snrd tx consensus
|
||||
description: Transactions commands for the consensus module
|
||||
---
|
||||
|
||||
# snrd tx consensus
|
||||
|
||||
Transactions commands for the consensus module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx consensus [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for consensus
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx consensus --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,96 @@
|
||||
---
|
||||
title: snrd tx crisis
|
||||
description: Transactions commands for the crisis module
|
||||
---
|
||||
|
||||
# snrd tx crisis
|
||||
|
||||
Transactions commands for the crisis module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx crisis [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx crisis [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `invariant-broken` | Submit proof that an invariant broken |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for crisis
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx crisis --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,107 @@
|
||||
---
|
||||
title: snrd tx did
|
||||
description: Transactions commands for the did module
|
||||
---
|
||||
|
||||
# snrd tx did
|
||||
|
||||
Transactions commands for the did module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx did [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx did [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `add-service` | Add a service endpoint to a DID document |
|
||||
| `add-verification-method` | Add a verification method to a DID document |
|
||||
| `create-did` | Create a new DID document |
|
||||
| `deactivate-did` | Deactivate a DID document |
|
||||
| `issue-credential` | Issue a W3C verifiable credential |
|
||||
| `link-external-wallet` | Execute the LinkExternalWallet RPC method |
|
||||
| `register-web-authn-credential` | Execute the RegisterWebAuthnCredential RPC method |
|
||||
| `remove-service` | Remove a service endpoint from a DID document |
|
||||
| `remove-verification-method` | Remove a verification method from a DID document |
|
||||
| `revoke-credential` | Revoke a W3C verifiable credential |
|
||||
| `update-did` | Update an existing DID document |
|
||||
| `update-params` | Execute the UpdateParams RPC method |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for did
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx did --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,100 @@
|
||||
---
|
||||
title: snrd tx distribution
|
||||
description: Distribution transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx distribution
|
||||
|
||||
Distribution transactions subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx distribution [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx distribution [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `fund-community-pool` | Funds the community pool with the specified amount |
|
||||
| `fund-validator-rewards-pool` | Fund the validator rewards pool with the specified amount |
|
||||
| `set-withdraw-addr` | change the default withdraw address for rewards associated with an address |
|
||||
| `withdraw-all-rewards` | withdraw all delegations rewards for a delegator |
|
||||
| `withdraw-rewards` | Withdraw rewards from a given delegation address, and optionally withdraw validator commission if the delegation address given is a validator operator |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for distribution
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx distribution --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: snrd tx dwn
|
||||
description: Transactions commands for the dwn module
|
||||
---
|
||||
|
||||
# snrd tx dwn
|
||||
|
||||
Transactions commands for the dwn module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx dwn [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx dwn [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `permissions-grant` | Grants permissions in the DWN |
|
||||
| `permissions-revoke` | Revokes permissions in the DWN |
|
||||
| `protocols-configure` | Configures a protocol in the DWN |
|
||||
| `records-delete` | Deletes a record from the DWN |
|
||||
| `records-write` | Creates or updates a record in the DWN |
|
||||
| `rotate-vault-keys` | Execute the RotateVaultKeys RPC method |
|
||||
| `update-params` | Execute the UpdateParams RPC method |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for dwn
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx dwn --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,98 @@
|
||||
---
|
||||
title: snrd tx feegrant
|
||||
description: Grant and revoke fee allowance for a grantee by a granter
|
||||
---
|
||||
|
||||
# snrd tx feegrant
|
||||
|
||||
Grant and revoke fee allowance for a grantee by a granter
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx feegrant [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx feegrant [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `grant` | Grant Fee allowance to an address |
|
||||
| `prune` | Prune expired allowances |
|
||||
| `revoke` | Revoke a fee grant |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for feegrant
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx feegrant --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,102 @@
|
||||
---
|
||||
title: snrd tx gov
|
||||
description: Governance transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx gov
|
||||
|
||||
Governance transactions subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx gov [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx gov [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `cancel-proposal` | Cancel governance proposal before the voting period ends. Must be signed by the proposal creator. |
|
||||
| `deposit` | Deposit tokens for an active proposal |
|
||||
| `draft-proposal` | Generate a draft proposal json file. The generated proposal json contains only one message (skeleton). |
|
||||
| `submit-legacy-proposal` | Submit a legacy proposal along with an initial deposit |
|
||||
| `submit-proposal` | Submit a proposal along with some messages, metadata and deposit |
|
||||
| `vote` | Vote for an active proposal, options: yes/no/no_with_veto/abstain |
|
||||
| `weighted-vote` | Vote for an active proposal, options: yes/no/no_with_veto/abstain |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for gov
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx gov --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,96 @@
|
||||
---
|
||||
title: snrd tx slashing
|
||||
description: Transactions commands for the slashing module
|
||||
---
|
||||
|
||||
# snrd tx slashing
|
||||
|
||||
Transactions commands for the slashing module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx slashing [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx slashing [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `unjail` | Unjail a jailed validator |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for slashing
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx slashing --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,101 @@
|
||||
---
|
||||
title: snrd tx staking
|
||||
description: Staking transaction subcommands
|
||||
---
|
||||
|
||||
# snrd tx staking
|
||||
|
||||
Staking transaction subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx staking [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx staking [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `cancel-unbond` | Cancel unbonding delegation and delegate back to the validator |
|
||||
| `create-validator` | create new validator initialized with a self-delegation to it |
|
||||
| `delegate` | Delegate liquid tokens to a validator |
|
||||
| `edit-validator` | edit an existing validator account |
|
||||
| `redelegate` | Redelegate illiquid tokens from one validator to another |
|
||||
| `unbond` | Unbond shares from a validator |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for staking
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx staking --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,99 @@
|
||||
---
|
||||
title: snrd tx svc
|
||||
description: Transactions commands for the svc module
|
||||
---
|
||||
|
||||
# snrd tx svc
|
||||
|
||||
Transactions commands for the svc module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd tx svc [flags]
|
||||
```
|
||||
|
||||
```shell
|
||||
snrd tx svc [command]
|
||||
```
|
||||
|
||||
## Available Commands
|
||||
|
||||
| Command | Description |
|
||||
|---------|-------------|
|
||||
| `initiate-domain-verification` | Initiate domain verification by generating a DNS TXT record token |
|
||||
| `register-service` | Register a new service with the specified domain and permissions |
|
||||
| `update-params` | Execute the UpdateParams RPC method |
|
||||
| `verify-domain` | Verify domain ownership by checking DNS TXT records |
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for svc
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Submit transaction
|
||||
|
||||
```shell
|
||||
snrd tx svc --from alice --chain-id sonrtest_1-1
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
@@ -0,0 +1,94 @@
|
||||
---
|
||||
title: snrd version
|
||||
description: Print the application binary version information
|
||||
---
|
||||
|
||||
# snrd version
|
||||
|
||||
Print the application binary version information
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
snrd version [flags]
|
||||
```
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for version
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="long" type="string">
|
||||
long version information
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="output" type="string" default="text">
|
||||
Output format (text|json)
|
||||
</ParamField>
|
||||
|
||||
## Global Flags
|
||||
|
||||
<ParamField path="broadcast-mode" type="string" default="sync">
|
||||
Transaction broadcasting mode (sync|async)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
Specify Chain ID for sending Tx
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="fees" type="string">
|
||||
Fees to pay along with transaction; eg: 10aatom
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="from" type="string">
|
||||
Name or address of private key with which to sign
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-adjustment" type="float" default="1">
|
||||
adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="gas-prices" type="string">
|
||||
Gas prices to determine the transaction fee (e.g. 10aatom)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="home" type="string" default="/Users/prad/.sonr">
|
||||
directory for config and data
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="keyring-backend" type="string" default="os">
|
||||
Select keyring's backend
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_format" type="string" default="plain">
|
||||
The logging format (json|plain)
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_level" type="string" default="info">
|
||||
The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="log_no_color" type="string">
|
||||
colored logs
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="node" type="string" default="tcp://localhost:26657">
|
||||
<host>:<port> to tendermint rpc interface for this chain
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="trace" type="string">
|
||||
out full stack trace on errors
|
||||
</ParamField>
|
||||
|
||||
## Examples
|
||||
|
||||
### Basic usage
|
||||
|
||||
```shell
|
||||
snrd version
|
||||
```
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
Reference in New Issue
Block a user