mirror of
https://github.com/sonr-io/sonr.git
synced 2026-09-17 07:26:25 +00:00
feat: migrate to blume docs
This commit is contained in:
@@ -3,8 +3,6 @@ title: snrd
|
||||
description: The Sonr blockchain daemon (server) command
|
||||
---
|
||||
|
||||
# snrd
|
||||
|
||||
The main command for running and interacting with the Sonr blockchain node.
|
||||
|
||||
## Usage
|
||||
@@ -40,61 +38,24 @@ snrd [command]
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction (e.g., 10aatom)" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "Adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g., 10aatom)" },
|
||||
"help": { type: "boolean", description: "Help for snrd" },
|
||||
"home": { type: "string", default: "~/.sonr", description: "Directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "boolean", description: "Disable colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "boolean", description: "Print out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -124,9 +85,9 @@ 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
|
||||
- [snrd auth](./snrd_auth) - User authentication with Passkeys
|
||||
- [snrd genesis](./snrd_genesis) - Genesis-related subcommands
|
||||
- [snrd init](./snrd_init) - Initialize node configuration
|
||||
- [snrd keys](./snrd_keys) - Manage application keys
|
||||
- [snrd query](./snrd_query) - Query blockchain state
|
||||
- [snrd tx](./snrd_tx) - Submit transactions
|
||||
|
||||
@@ -3,8 +3,6 @@ title: snrd auth
|
||||
description: User authentication with Passkeys
|
||||
---
|
||||
|
||||
# snrd auth
|
||||
|
||||
Manage user authentication using WebAuthn/Passkey technology for decentralized identity.
|
||||
|
||||
## Usage
|
||||
@@ -22,63 +20,31 @@ snrd auth [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="boolean">
|
||||
Help for auth
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "boolean", description: "Help for auth" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction (e.g., 10aatom)" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "Adjustment factor to be multiplied against the estimate returned by the tx simulation" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g., 10aatom)" },
|
||||
"home": { type: "string", default: "~/.sonr", description: "Directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled)" },
|
||||
"log_no_color": { type: "boolean", description: "Disable colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "Tendermint RPC interface for this chain" },
|
||||
"trace": { type: "boolean", description: "Print out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -96,5 +62,5 @@ 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
|
||||
- [snrd auth register](./snrd_auth_register) - Register a new identity using WebAuthn
|
||||
- [snrd auth login](./snrd_auth) - Login with WebAuthn authentication
|
||||
|
||||
@@ -3,8 +3,6 @@ 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:
|
||||
@@ -21,75 +19,34 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"username": { type: "string", required: true, description: "Username for the new identity" },
|
||||
"auto-vault": { type: "boolean", default: "true", description: "Automatically create vault for DID" },
|
||||
"webauthn": { type: "boolean", default: "true", description: "Use WebAuthn for registration" },
|
||||
"help": { type: "boolean", description: "Help for register" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction (e.g., 10aatom)" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "Adjustment factor to be multiplied against the estimate returned by the tx simulation" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g., 10aatom)" },
|
||||
"home": { type: "string", default: "~/.sonr", description: "Directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level" },
|
||||
"log_no_color": { type: "boolean", description: "Disable colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "Tendermint RPC interface for this chain" },
|
||||
"trace": { type: "boolean", description: "Print out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -113,5 +70,5 @@ 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
|
||||
- [snrd auth](./snrd_auth) - User authentication with Passkeys
|
||||
- [snrd auth login](./snrd_auth) - Login with WebAuthn authentication
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd genesis
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -29,63 +25,31 @@ snrd genesis [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for genesis" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -97,4 +61,4 @@ snrd genesis
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,99 +11,40 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"append": { type: "string", description: "the coins to an account already in the genesis.json file" },
|
||||
"grpc-addr": { type: "string", description: "the gRPC endpoint to use for this chain" },
|
||||
"grpc-insecure": { type: "string", description: "gRPC over insecure channels, if not the server must use TLS" },
|
||||
"height": { type: "integer", description: "Use a specific height to query state at (this can error if the node is pruning state)" },
|
||||
"help": { type: "string", description: "for add-genesis-account" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|kwallet|pass|test)" },
|
||||
"module-name": { type: "string", description: "module account name" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to CometBFT RPC interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"vesting-amount": { type: "string", description: "amount of coins for vesting accounts" },
|
||||
"vesting-end-time": { type: "integer", description: "schedule end time (unix epoch) for vesting accounts" },
|
||||
"vesting-start-time": { type: "integer", description: "schedule start time (unix epoch) for vesting accounts" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -119,4 +56,4 @@ snrd genesis add-genesis-account alice 1000000snr
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,8 +3,6 @@ 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
|
||||
@@ -15,67 +13,32 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"gentx-dir": { type: "string", description: "Override default \"gentx\" directory from which collect and execute genesis transactions; default [--home]/config/gentx/" },
|
||||
"help": { type: "boolean", description: "Help for collect-gentxs" },
|
||||
"home": { type: "string", default: "~/.sonr", description: "The application home directory" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction (e.g., 10aatom)" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "Adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g., 10aatom)" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "boolean", description: "Disable colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "boolean", description: "Print out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -93,6 +56,6 @@ 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
|
||||
- [snrd genesis](./snrd_genesis) - Genesis-related subcommands
|
||||
- [snrd genesis gentx](./snrd_genesis_gentx) - Generate a genesis tx carrying a self delegation
|
||||
- [snrd genesis add-genesis-account](./snrd_genesis_add-genesis-account) - Add a genesis account to genesis.json
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd genesis export
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis export
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -29,63 +25,31 @@ snrd genesis [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for genesis" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -97,4 +61,4 @@ snrd genesis export
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,187 +11,62 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"account-number": { type: "string", description: "The account number of the signing account (offline mode only)" },
|
||||
"amount": { type: "string", description: "Amount of coins to bond" },
|
||||
"aux": { type: "string", description: "aux signer data instead of sending a tx" },
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"commission-max-change-rate": { type: "string", description: "The maximum commission change rate percentage (per day)" },
|
||||
"commission-max-rate": { type: "string", description: "The maximum commission rate percentage" },
|
||||
"commission-rate": { type: "string", description: "The initial commission rate percentage" },
|
||||
"details": { type: "string", description: "The validator's (optional) details" },
|
||||
"dry-run": { type: "string", description: "the --gas flag and perform a simulation of a transaction, but don't broadcast it (when enabled, the local Keybase is not accessible)" },
|
||||
"fee-granter": { type: "string", description: "Fee granter grants fees for the transaction" },
|
||||
"fee-payer": { type: "string", description: "Fee payer pays fees for the transaction instead of deducting from the signer" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10uatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas": { type: "string", default: "200000", description: "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\"." },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices in decimal format to determine the transaction fee (e.g. 0.1uatom)" },
|
||||
"generate-only": { type: "string", description: "an unsigned transaction and write it to STDOUT (when enabled, the local Keybase only accessed when providing a key name)" },
|
||||
"help": { type: "string", description: "for gentx" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"identity": { type: "string", description: "The (optional) identity signature (ex. UPort or Keybase)" },
|
||||
"ip": { type: "string", default: "192.168.1.203", description: "The node's public P2P IP" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|kwallet|pass|test|memory)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"ledger": { type: "string", description: "a connected Ledger device" },
|
||||
"min-self-delegation": { type: "string", description: "The minimum self delegation required on the validator" },
|
||||
"moniker": { type: "string", description: "The validator's (optional) moniker" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to CometBFT rpc interface for this chain" },
|
||||
"node-id": { type: "string", description: "The node's NodeID" },
|
||||
"note": { type: "string", description: "Note to add a description to the transaction (previously --memo)" },
|
||||
"offline": { type: "string", description: "mode (does not allow any online functionality)" },
|
||||
"output-document": { type: "string", description: "Write the genesis transaction JSON document to the given file instead of the default location" },
|
||||
"p2p-port": { type: "string", default: "26656", description: "The node's public P2P port" },
|
||||
"pubkey": { type: "string", description: "The validator's Protobuf JSON encoded public key" },
|
||||
"security-contact": { type: "string", description: "The validator's (optional) security contact email" },
|
||||
"sequence": { type: "string", description: "The sequence number of the signing account (offline mode only)" },
|
||||
"sign-mode": { type: "string", description: "Choose sign mode (direct|amino-json|direct-aux|textual), this is an advanced feature" },
|
||||
"timeout-height": { type: "string", description: "Set a block timeout height to prevent the tx from being committed past a certain height" },
|
||||
"tip": { type: "string", description: "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" },
|
||||
"website": { type: "string", description: "The validator's (optional) website" },
|
||||
"yes": { type: "string", description: "tx broadcasting prompt confirmation" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -207,4 +78,4 @@ snrd genesis gentx alice 1000000snr --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd genesis init
|
||||
description: Application's genesis-related subcommands
|
||||
---
|
||||
|
||||
# snrd genesis init
|
||||
|
||||
Application's genesis-related subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -29,63 +25,31 @@ snrd genesis [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for genesis
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for genesis" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -97,4 +61,4 @@ snrd genesis init
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,71 +11,33 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "Override chain_id with this flag" },
|
||||
"genesis-time": { type: "string", description: "Override genesis_time with this flag" },
|
||||
"help": { type: "string", description: "for migrate" },
|
||||
"output-document": { type: "string", description: "Exported state is written to the given file instead of STDOUT" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd genesis migrate
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,63 +11,31 @@ snrd genesis validate [file] [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for validate
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for validate" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -83,4 +47,4 @@ snrd genesis validate
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd genesis](./snrd_genesis.mdx) - Parent command
|
||||
- [snrd genesis](./snrd_genesis) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,63 +11,31 @@ snrd help [command] [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for help
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for help" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -83,4 +47,4 @@ snrd help
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd init
|
||||
description: Initialize validators's and node's configuration files.
|
||||
---
|
||||
|
||||
# snrd init
|
||||
|
||||
Initialize validators's and node's configuration files.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -15,79 +11,35 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "genesis file chain-id, if left blank will be randomly created" },
|
||||
"default-denom": { type: "string", description: "genesis file default denomination, if left blank default value is 'stake'" },
|
||||
"help": { type: "string", description: "for init" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "node's home directory" },
|
||||
"initial-height": { type: "integer", default: "1", description: "specify the initial block height at genesis" },
|
||||
"overwrite": { type: "string", description: "the genesis.json file" },
|
||||
"recover": { type: "string", description: "seed phrase to recover existing key instead of creating" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -99,4 +51,4 @@ snrd init
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,71 +11,33 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for keys" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd keys
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,135 +11,49 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"account": { type: "integer", description: "Account number for HD derivation (less than equal 2147483647)" },
|
||||
"coin-type": { type: "integer", default: "60", description: "coin type number for HD derivation" },
|
||||
"dry-run": { type: "string", description: "action, but don't add key to local keystore" },
|
||||
"hd-path": { type: "string", description: "Manual HD Path derivation (overrides BIP44 config)" },
|
||||
"help": { type: "string", description: "for add" },
|
||||
"index": { type: "integer", description: "Address index number for HD derivation (less than equal 2147483647)" },
|
||||
"interactive": { type: "string", description: "prompt user for BIP39 passphrase and mnemonic" },
|
||||
"key-type": { type: "string", default: "eth_secp256k1", description: "Key signing algorithm to generate keys for" },
|
||||
"ledger": { type: "string", description: "a local reference to a private key on a Ledger device" },
|
||||
"multisig": { type: "string", description: "List of key names stored in keyring to construct a public legacy multisig key" },
|
||||
"multisig-threshold": { type: "integer", default: "1", description: "K out of N required signatures. For use in conjunction with --multisig" },
|
||||
"no-backup": { type: "string", description: "print out seed phrase (if others are watching the terminal)" },
|
||||
"nosort": { type: "string", description: "passed to --multisig are taken in the order they're supplied" },
|
||||
"pubkey": { type: "string", description: "Parse a public key in JSON format and saves key info to <name> file." },
|
||||
"pubkey-base64": { type: "string", description: "Parse a public key in base64 format and saves key info." },
|
||||
"recover": { type: "string", description: "seed phrase to recover existing key instead of creating" },
|
||||
"source": { type: "string", description: "Import mnemonic from a file (only usable when recover or interactive is passed)" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -155,4 +65,4 @@ snrd keys add alice
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd keys delete
|
||||
description: Delete keys from the Keybase backend.
|
||||
---
|
||||
|
||||
# snrd keys delete
|
||||
|
||||
Delete keys from the Keybase backend.
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -15,79 +11,35 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"force": { type: "string", description: "the key unconditionally without asking for the passphrase. Deprecated." },
|
||||
"help": { type: "string", description: "for delete" },
|
||||
"yes": { type: "string", description: "confirmation prompt when deleting offline or ledger key references" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -99,4 +51,4 @@ snrd keys delete
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,79 +11,35 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for export" },
|
||||
"unarmored-hex": { type: "string", description: "unarmored hex privkey. Requires --unsafe." },
|
||||
"unsafe": { type: "string", description: "unsafe operations. This flag must be switched on along with all unsafe operation-specific options." },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -99,4 +51,4 @@ snrd keys export
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,71 +11,33 @@ snrd keys import <name> <keyfile> [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for import
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for import" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd keys import
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,75 +11,34 @@ snrd keys list [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for list
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="list-names" type="string">
|
||||
names only
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for list" },
|
||||
"list-names": { type: "string", description: "names only" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +50,4 @@ snrd keys list
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,71 +11,33 @@ snrd keys migrate [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for migrate
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for migrate" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd keys migrate
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,71 +11,33 @@ snrd keys parse <hex-or-bech32-address> [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for parse
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for parse" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd keys parse
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,91 +11,38 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"address": { type: "string", description: "the address only (cannot be used with --output)" },
|
||||
"bech": { type: "string", default: "acc", description: "The Bech32 prefix encoding for a key (acc|val|cons)" },
|
||||
"device": { type: "string", description: "the address in a ledger device (cannot be used with --pubkey)" },
|
||||
"help": { type: "string", description: "for show" },
|
||||
"multisig-threshold": { type: "integer", default: "1", description: "K out of N required signatures" },
|
||||
"pubkey": { type: "string", description: "the public key only (cannot be used with --output)" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend (os|file|test)" },
|
||||
"keyring-dir": { type: "string", description: "The client Keyring directory; if omitted, the default 'home' directory will be used" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -111,4 +54,4 @@ snrd keys show
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd keys](./snrd_keys.mdx) - Parent command
|
||||
- [snrd keys](./snrd_keys) - Parent command
|
||||
|
||||
@@ -3,8 +3,6 @@ title: snrd migrate
|
||||
description: unknown command "migrate" for "snrd"
|
||||
---
|
||||
|
||||
# snrd migrate
|
||||
|
||||
unknown command "migrate" for "snrd"
|
||||
|
||||
## Examples
|
||||
@@ -17,4 +15,4 @@ snrd migrate
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,8 +3,6 @@ title: snrd node
|
||||
description: unknown command "node" for "snrd"
|
||||
---
|
||||
|
||||
# snrd node
|
||||
|
||||
unknown command "node" for "snrd"
|
||||
|
||||
## Examples
|
||||
@@ -17,4 +15,4 @@ snrd node
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,75 +11,34 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"app-db-backend": { type: "string", description: "The type of database for application and snapshots databases" },
|
||||
"help": { type: "string", description: "for prune" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
"pruning-interval": { type: "string", description: "Height interval at which pruned heights are removed from disk (ignored if pruning is not 'custom')," },
|
||||
"pruning-keep-recent": { type: "string", description: "Number of recent heights to keep on disk (ignored if pruning is not 'custom')" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +50,4 @@ snrd prune
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -60,63 +56,31 @@ snrd query [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for query" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -128,4 +92,4 @@ snrd query
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query account
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query account
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -60,63 +56,31 @@ snrd query [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for query" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -128,4 +92,4 @@ snrd query account
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query accounts
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query accounts
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -60,63 +56,31 @@ snrd query [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for query" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -128,4 +92,4 @@ snrd query accounts
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query auth
|
||||
description: Querying commands for the auth module
|
||||
---
|
||||
|
||||
# snrd query auth
|
||||
|
||||
Querying commands for the auth module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -34,63 +30,31 @@ snrd query auth [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for auth
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for auth" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -102,4 +66,4 @@ snrd query auth
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query bank
|
||||
description: Querying commands for the bank module
|
||||
---
|
||||
|
||||
# snrd query bank
|
||||
|
||||
Querying commands for the bank module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -36,63 +32,31 @@ snrd query bank [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for bank
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for bank" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -104,4 +68,4 @@ snrd query bank
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query consensus
|
||||
description: Querying commands for the consensus module
|
||||
---
|
||||
|
||||
# snrd query consensus
|
||||
|
||||
Querying commands for the consensus module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -26,63 +22,31 @@ snrd query consensus [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for consensus
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for consensus" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -94,4 +58,4 @@ snrd query consensus
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query delegation
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query delegation
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -60,63 +56,31 @@ snrd query [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for query" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -128,4 +92,4 @@ snrd query delegation
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query did
|
||||
description: Querying commands for the did module
|
||||
---
|
||||
|
||||
# snrd query did
|
||||
|
||||
Querying commands for the did module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -34,63 +30,31 @@ snrd query did [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for did
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for did" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -102,4 +66,4 @@ snrd query did
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query distribution
|
||||
description: Querying commands for the distribution module
|
||||
---
|
||||
|
||||
# snrd query distribution
|
||||
|
||||
Querying commands for the distribution module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -34,63 +30,31 @@ snrd query distribution [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for distribution
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for distribution" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -102,4 +66,4 @@ snrd query distribution
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query dwn
|
||||
description: Querying commands for the dwn module
|
||||
---
|
||||
|
||||
# snrd query dwn
|
||||
|
||||
Querying commands for the dwn module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -37,63 +33,31 @@ snrd query dwn [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for dwn
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for dwn" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -105,4 +69,4 @@ snrd query dwn
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query feegrant
|
||||
description: Querying commands for the feegrant module
|
||||
---
|
||||
|
||||
# snrd query feegrant
|
||||
|
||||
Querying commands for the feegrant module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -27,63 +23,31 @@ snrd query feegrant [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for feegrant
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for feegrant" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +59,4 @@ snrd query feegrant
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query gov
|
||||
description: Querying commands for the gov module
|
||||
---
|
||||
|
||||
# snrd query gov
|
||||
|
||||
Querying commands for the gov module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -33,63 +29,31 @@ snrd query gov [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for gov
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for gov" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -101,4 +65,4 @@ snrd query gov
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query slashing
|
||||
description: Querying commands for the slashing module
|
||||
---
|
||||
|
||||
# snrd query slashing
|
||||
|
||||
Querying commands for the slashing module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -27,63 +23,31 @@ snrd query slashing [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for slashing
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for slashing" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +59,4 @@ snrd query slashing
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query staking
|
||||
description: Querying commands for the staking module
|
||||
---
|
||||
|
||||
# snrd query staking
|
||||
|
||||
Querying commands for the staking module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -38,63 +34,31 @@ snrd query staking [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for staking
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for staking" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -106,4 +70,4 @@ snrd query staking
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query svc
|
||||
description: Querying commands for the svc module
|
||||
---
|
||||
|
||||
# snrd query svc
|
||||
|
||||
Querying commands for the svc module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -29,63 +25,31 @@ snrd query svc [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for svc
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for svc" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -97,4 +61,4 @@ snrd query svc
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd query tendermint
|
||||
description: Querying subcommands
|
||||
---
|
||||
|
||||
# snrd query tendermint
|
||||
|
||||
Querying subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -60,63 +56,31 @@ snrd query [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for query
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for query" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -128,4 +92,4 @@ snrd query tendermint
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,8 +3,6 @@ title: snrd query tx
|
||||
description: Query for a transaction by hash or address/sequence combination
|
||||
---
|
||||
|
||||
# snrd query tx
|
||||
|
||||
Example:
|
||||
|
||||
## Usage
|
||||
@@ -15,83 +13,36 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"grpc-addr": { type: "string", description: "the gRPC endpoint to use for this chain" },
|
||||
"grpc-insecure": { type: "string", description: "gRPC over insecure channels, if not the server must use TLS" },
|
||||
"height": { type: "integer", description: "Use a specific height to query state at (this can error if the node is pruning state)" },
|
||||
"help": { type: "string", description: "for tx" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to CometBFT RPC interface for this chain" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
"type": { type: "string", default: "hash", description: "The type to be used when querying tx, can be one of \"hash\", \"acc_seq\", \"signature\"" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -103,4 +54,4 @@ snrd query tx
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd query](./snrd_query.mdx) - Parent command
|
||||
- [snrd query](./snrd_query) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -15,67 +11,32 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"hard": { type: "string", description: "last block as well as state" },
|
||||
"help": { type: "string", description: "for rollback" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "The application home directory" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -87,4 +48,4 @@ snrd rollback
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd status
|
||||
description: Query remote node for status
|
||||
---
|
||||
|
||||
# snrd status
|
||||
|
||||
Query remote node for status
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -15,67 +11,32 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for status" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "Node to connect to" },
|
||||
"output": { type: "string", default: "json", description: "Output format (text|json)" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -87,4 +48,4 @@ snrd status
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tendermint
|
||||
description: CometBFT subcommands
|
||||
---
|
||||
|
||||
# snrd tendermint
|
||||
|
||||
CometBFT subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -27,63 +23,31 @@ snrd comet [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for comet
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for comet" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +59,4 @@ snrd tendermint
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx
|
||||
description: Transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx
|
||||
|
||||
Transactions subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -64,63 +60,31 @@ snrd tx [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="chain-id" type="string">
|
||||
The network chain ID
|
||||
</ParamField>
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for tx
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"help": { type: "string", description: "for tx" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -132,4 +96,4 @@ snrd tx --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx bank
|
||||
description: Bank transaction subcommands
|
||||
---
|
||||
|
||||
# snrd tx bank
|
||||
|
||||
Bank transaction subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -26,63 +22,31 @@ snrd tx bank [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for bank
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for bank" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -94,4 +58,4 @@ snrd tx bank --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx consensus
|
||||
description: Transactions commands for the consensus module
|
||||
---
|
||||
|
||||
# snrd tx consensus
|
||||
|
||||
Transactions commands for the consensus module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -15,63 +11,31 @@ snrd tx consensus [flags]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for consensus
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for consensus" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -83,4 +47,4 @@ snrd tx consensus --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx crisis
|
||||
description: Transactions commands for the crisis module
|
||||
---
|
||||
|
||||
# snrd tx crisis
|
||||
|
||||
Transactions commands for the crisis module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -25,63 +21,31 @@ snrd tx crisis [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for crisis
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for crisis" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -93,4 +57,4 @@ snrd tx crisis --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx did
|
||||
description: Transactions commands for the did module
|
||||
---
|
||||
|
||||
# snrd tx did
|
||||
|
||||
Transactions commands for the did module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -36,63 +32,31 @@ snrd tx did [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for did
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for did" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -104,4 +68,4 @@ snrd tx did --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx distribution
|
||||
description: Distribution transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx distribution
|
||||
|
||||
Distribution transactions subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -29,63 +25,31 @@ snrd tx distribution [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for distribution
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for distribution" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -97,4 +61,4 @@ snrd tx distribution --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx dwn
|
||||
description: Transactions commands for the dwn module
|
||||
---
|
||||
|
||||
# snrd tx dwn
|
||||
|
||||
Transactions commands for the dwn module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -31,63 +27,31 @@ snrd tx dwn [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for dwn
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for dwn" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -99,4 +63,4 @@ snrd tx dwn --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ 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
|
||||
@@ -27,63 +23,31 @@ snrd tx feegrant [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for feegrant
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for feegrant" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -95,4 +59,4 @@ snrd tx feegrant --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx gov
|
||||
description: Governance transactions subcommands
|
||||
---
|
||||
|
||||
# snrd tx gov
|
||||
|
||||
Governance transactions subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -31,63 +27,31 @@ snrd tx gov [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for gov
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for gov" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -99,4 +63,4 @@ snrd tx gov --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx slashing
|
||||
description: Transactions commands for the slashing module
|
||||
---
|
||||
|
||||
# snrd tx slashing
|
||||
|
||||
Transactions commands for the slashing module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -25,63 +21,31 @@ snrd tx slashing [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for slashing
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for slashing" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -93,4 +57,4 @@ snrd tx slashing --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx staking
|
||||
description: Staking transaction subcommands
|
||||
---
|
||||
|
||||
# snrd tx staking
|
||||
|
||||
Staking transaction subcommands
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -30,63 +26,31 @@ snrd tx staking [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for staking
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for staking" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -98,4 +62,4 @@ snrd tx staking --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd tx svc
|
||||
description: Transactions commands for the svc module
|
||||
---
|
||||
|
||||
# snrd tx svc
|
||||
|
||||
Transactions commands for the svc module
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -28,63 +24,31 @@ snrd tx svc [command]
|
||||
|
||||
## Flags
|
||||
|
||||
<ParamField path="help" type="string">
|
||||
for svc
|
||||
</ParamField>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for svc" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "The network chain ID" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -96,4 +60,4 @@ snrd tx svc --from alice --chain-id sonrtest_1-1
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd tx](./snrd_tx.mdx) - Parent command
|
||||
- [snrd tx](./snrd_tx) - Parent command
|
||||
|
||||
@@ -3,10 +3,6 @@ title: snrd version
|
||||
description: Print the application binary version information
|
||||
---
|
||||
|
||||
# snrd version
|
||||
|
||||
Print the application binary version information
|
||||
|
||||
## Usage
|
||||
|
||||
```shell
|
||||
@@ -15,71 +11,33 @@ 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"help": { type: "string", description: "for version" },
|
||||
"long": { type: "string", description: "long version information" },
|
||||
"output": { type: "string", default: "text", description: "Output format (text|json)" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## 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>
|
||||
<TypeTable
|
||||
type={{
|
||||
"broadcast-mode": { type: "string", default: "sync", description: "Transaction broadcasting mode (sync|async)" },
|
||||
"chain-id": { type: "string", description: "Specify Chain ID for sending Tx" },
|
||||
"fees": { type: "string", description: "Fees to pay along with transaction; eg: 10aatom" },
|
||||
"from": { type: "string", description: "Name or address of private key with which to sign" },
|
||||
"gas-adjustment": { type: "float", default: "1", description: "adjustment factor to be multiplied against the estimate returned by the tx simulation; if the gas limit is set manually this flag is ignored" },
|
||||
"gas-prices": { type: "string", description: "Gas prices to determine the transaction fee (e.g. 10aatom)" },
|
||||
"home": { type: "string", default: "/Users/prad/.sonr", description: "directory for config and data" },
|
||||
"keyring-backend": { type: "string", default: "os", description: "Select keyring's backend" },
|
||||
"log_format": { type: "string", default: "plain", description: "The logging format (json|plain)" },
|
||||
"log_level": { type: "string", default: "info", description: "The logging level (trace|debug|info|warn|error|fatal|panic|disabled or '*:<level>,<key>:<level>')" },
|
||||
"log_no_color": { type: "string", description: "colored logs" },
|
||||
"node": { type: "string", default: "tcp://localhost:26657", description: "<host>:<port> to tendermint rpc interface for this chain" },
|
||||
"trace": { type: "string", description: "out full stack trace on errors" },
|
||||
}}
|
||||
/>
|
||||
|
||||
## Examples
|
||||
|
||||
@@ -91,4 +49,4 @@ snrd version
|
||||
|
||||
## See Also
|
||||
|
||||
- [snrd](./snrd.mdx) - Parent command
|
||||
- [snrd](./snrd) - Parent command
|
||||
|
||||
@@ -1,12 +1,11 @@
|
||||
---
|
||||
title: "Motr WASM Light-Node"
|
||||
sidebarTitle: "Motr Overview"
|
||||
description: "Learn how to use the Motor WASM plugin as an MPC-based UCAN source for decentralized token operations"
|
||||
icon: "play"
|
||||
sidebar:
|
||||
label: "Motr Overview"
|
||||
---
|
||||
|
||||
# Motor WASM Plugin: UCAN Source
|
||||
|
||||
The Motor WASM plugin is a WebAssembly-based plugin that provides Multi-Party Computation (MPC) powered UCAN (User-Controlled Authorization Networks) token generation and management.
|
||||
|
||||
## Overview
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
---
|
||||
title: The Blockchain for Self-Sovereign Identity
|
||||
sidebarTitle: Sonr Overview
|
||||
description: A deep dive into Sonr's novel approach to personal data ownership and control.
|
||||
icon: play
|
||||
sidebar:
|
||||
label: Sonr Overview
|
||||
---
|
||||
|
||||
In a world rapidly approaching the era of quantum computing, traditional cryptographic methods face unprecedented challenges. The burden of securing digital identity can no longer rest solely on the user. Sonr is designed to simplify the user experience while providing far greater security over personal data. We achieve this by incorporating the following concepts into our identity primitive.
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
---
|
||||
title: $SNR Economics
|
||||
description: "The role of tokenomics in the Sonr ecosystem is twofold: it provides a medium of exchange and serves as a reward mechanism for validators. The platform's native tokens are used to facilitate transactions, secure network integrity, and incentivize behaviors that contribute to the network's longevity and reliability."
|
||||
sidebarTitle: "Design Model"
|
||||
icon: "star"
|
||||
sidebar:
|
||||
label: "Design Model"
|
||||
---
|
||||
|
||||
<Note>
|
||||
:::note
|
||||
The Sonr platform has implemented a sophisticated token handling and treasury process designed to ensure the stability and sustainability of the SNR token. This process is critical in managing the economics of the Sonr ecosystem and ensuring its long-term viability.
|
||||
</Note>
|
||||
:::
|
||||
|
||||
## Key Economic Processes
|
||||
|
||||
@@ -50,10 +51,6 @@ The Sonr platform has implemented a sophisticated token handling and treasury pr
|
||||
</CardGroup>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## Validator Incentives
|
||||
|
||||
Validators play a pivotal role in the network, responsible for processing authentication requests and maintaining the blockchain's integrity. They are incentivized through a task claiming process based on a first-come-first-serve mechanism and are remunerated via transaction fees and token rewards. This incentive structure ensures the high performance and reliability of services within the network.
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/ProvideLiquidity
|
||||
title: Provide Liquidity to Pool
|
||||
description: Add liquidity to DEX pools and earn LP tokens
|
||||
og:title: Add Liquidity to Cross-Chain Pools
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Add Liquidity to Cross-Chain Pools"
|
||||
---
|
||||
|
||||
<Info>
|
||||
LP tokens represent your proportional share of the pool and accrue trading fees.
|
||||
</Info>
|
||||
:::info
|
||||
LP tokens represent your proportional share of the pool and accrue trading fees.
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Impermanent loss may occur when providing liquidity. Research the risks before proceeding.
|
||||
</Note>
|
||||
:::note
|
||||
Impermanent loss may occur when providing liquidity. Research the risks before proceeding.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/CancelOrder
|
||||
title: Cancel Limit Order
|
||||
description: Cancel active orders on remote DEX chains
|
||||
og:title: Cancel Cross-Chain Orders
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Cancel Cross-Chain Orders"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Order cancellation is not instant. There's a small window where the order
|
||||
might still be filled before cancellation is processed.
|
||||
</Warning>
|
||||
:::warning
|
||||
Order cancellation is not instant. There's a small window where the order
|
||||
might still be filled before cancellation is processed.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Monitor the IBC packet acknowledgment to confirm successful cancellation.
|
||||
</Tip>
|
||||
:::tip
|
||||
Monitor the IBC packet acknowledgment to confirm successful cancellation.
|
||||
:::
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/RegisterDEXAccount
|
||||
title: Register Interchain DEX Account
|
||||
description: Create a new ICA account for cross-chain trading operations
|
||||
og:title: Setup Cross-Chain Trading Account
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Setup Cross-Chain Trading Account"
|
||||
---
|
||||
|
||||
<Note>
|
||||
Account creation is asynchronous. Monitor the IBC packet acknowledgment to confirm the account address.
|
||||
</Note>
|
||||
:::note
|
||||
Account creation is asynchronous. Monitor the IBC packet acknowledgment to confirm the account address.
|
||||
:::
|
||||
|
||||
<Warning>
|
||||
Each DID is limited to a maximum number of DEX accounts as configured in module parameters.
|
||||
</Warning>
|
||||
:::warning
|
||||
Each DID is limited to a maximum number of DEX accounts as configured in module parameters.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/CreateLimitOrder
|
||||
title: Create Limit Order
|
||||
description: Place limit orders on remote DEX chains
|
||||
og:title: Place Cross-Chain Limit Orders
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Place Cross-Chain Limit Orders"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Limit orders allow you to specify the exact price at which you want to trade,
|
||||
providing better control over execution prices.
|
||||
</Info>
|
||||
:::info
|
||||
Limit orders allow you to specify the exact price at which you want to trade,
|
||||
providing better control over execution prices.
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Orders are subject to maker fees on most DEXs. Check the specific DEX documentation
|
||||
for fee structures.
|
||||
</Note>
|
||||
:::note
|
||||
Orders are subject to maker fees on most DEXs. Check the specific DEX documentation
|
||||
for fee structures.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/ExecuteSwap
|
||||
title: Execute Cross-Chain Swap
|
||||
description: Perform token swaps on remote DEX chains with slippage protection
|
||||
og:title: Cross-Chain Token Swap
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Cross-Chain Token Swap"
|
||||
---
|
||||
|
||||
<Tip>
|
||||
For better execution prices, consider breaking large swaps into smaller transactions
|
||||
or using the multi-hop routing feature.
|
||||
</Tip>
|
||||
:::tip
|
||||
For better execution prices, consider breaking large swaps into smaller transactions
|
||||
or using the multi-hop routing feature.
|
||||
:::
|
||||
|
||||
<Warning>
|
||||
Platform fees apply to all swaps. Check the current fee structure in module parameters.
|
||||
</Warning>
|
||||
:::warning
|
||||
Platform fees apply to all swaps. Check the current fee structure in module parameters.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
---
|
||||
openapi: post /dex.v1.Msg/RemoveLiquidity
|
||||
title: Remove Liquidity from Pool
|
||||
description: Withdraw assets from DEX pools by burning LP tokens
|
||||
og:title: Withdraw Liquidity from Cross-Chain Pools
|
||||
tag: x/dex
|
||||
sidebar:
|
||||
badge: x/dex
|
||||
seo:
|
||||
title: "Withdraw Liquidity from Cross-Chain Pools"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Removing liquidity during high volatility may result in receiving different asset ratios
|
||||
than initially provided.
|
||||
</Warning>
|
||||
:::warning
|
||||
Removing liquidity during high volatility may result in receiving different asset ratios
|
||||
than initially provided.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Set appropriate minimum amounts to protect against unfavorable price movements.
|
||||
</Tip>
|
||||
:::tip
|
||||
Set appropriate minimum amounts to protect against unfavorable price movements.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/AddService
|
||||
title: Add Service Endpoint
|
||||
description: Associate services and interaction endpoints with your DID
|
||||
og:title: Add DID Service
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Add DID Service"
|
||||
---
|
||||
|
||||
<Tip>
|
||||
Service endpoints enable others to discover how to interact with
|
||||
your DID for specific purposes (messaging, data exchange, etc.).
|
||||
</Tip>
|
||||
:::tip
|
||||
Service endpoints enable others to discover how to interact with
|
||||
your DID for specific purposes (messaging, data exchange, etc.).
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Service URLs should use HTTPS for security. Consider using
|
||||
decentralized storage for resilience.
|
||||
</Note>
|
||||
:::note
|
||||
Service URLs should use HTTPS for security. Consider using
|
||||
decentralized storage for resilience.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/AddVerificationMethod
|
||||
title: Add Verification Method
|
||||
description: Add cryptographic keys and authentication methods to your DID
|
||||
og:title: Enhance DID Security
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Enhance DID Security"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Adding multiple verification methods provides redundancy and enables
|
||||
different use cases (signing, encryption, authentication).
|
||||
</Info>
|
||||
:::info
|
||||
Adding multiple verification methods provides redundancy and enables
|
||||
different use cases (signing, encryption, authentication).
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Best practice: Add at least one backup verification method to prevent
|
||||
lockout if your primary method becomes unavailable.
|
||||
</Tip>
|
||||
:::tip
|
||||
Best practice: Add at least one backup verification method to prevent
|
||||
lockout if your primary method becomes unavailable.
|
||||
:::
|
||||
|
||||
@@ -1,15 +1,16 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/CreateDID
|
||||
title: Create W3C DID Document
|
||||
description: Create a new decentralized identifier with verification methods and services
|
||||
og:title: Create Decentralized Identity
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Create Decentralized Identity"
|
||||
---
|
||||
|
||||
<Note>
|
||||
DID creation requires an existing account with tokens unless using gasless WebAuthn registration.
|
||||
</Note>
|
||||
:::note
|
||||
DID creation requires an existing account with tokens unless using gasless WebAuthn registration.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Enable auto-vault creation to automatically set up secure credential storage.
|
||||
</Tip>
|
||||
:::tip
|
||||
Enable auto-vault creation to automatically set up secure credential storage.
|
||||
:::
|
||||
|
||||
@@ -1,18 +1,19 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/DeactivateDID
|
||||
title: Deactivate DID Document
|
||||
description: Permanently disable a decentralized identifier
|
||||
og:title: Deactivate Digital Identity
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Deactivate Digital Identity"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
**This operation is PERMANENT and IRREVERSIBLE.**
|
||||
Deactivated DIDs cannot be reactivated. Ensure you have migrated
|
||||
any necessary data before deactivation.
|
||||
</Warning>
|
||||
:::warning
|
||||
**This operation is PERMANENT and IRREVERSIBLE.**
|
||||
Deactivated DIDs cannot be reactivated. Ensure you have migrated
|
||||
any necessary data before deactivation.
|
||||
:::
|
||||
|
||||
<Info>
|
||||
Deactivation is useful for key compromise scenarios or when
|
||||
transitioning to a new identity.
|
||||
</Info>
|
||||
:::info
|
||||
Deactivation is useful for key compromise scenarios or when
|
||||
transitioning to a new identity.
|
||||
:::
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/IssueVerifiableCredential
|
||||
title: Issue W3C Verifiable Credential
|
||||
description: Create cryptographically signed credentials for identity claims
|
||||
og:title: Issue Digital Credentials
|
||||
seo:
|
||||
title: "Issue Digital Credentials"
|
||||
---
|
||||
|
||||
<Note>
|
||||
Only DIDs with appropriate verification methods can issue credentials.
|
||||
The issuer's reputation affects credential trustworthiness.
|
||||
</Note>
|
||||
:::note
|
||||
Only DIDs with appropriate verification methods can issue credentials.
|
||||
The issuer's reputation affects credential trustworthiness.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Set reasonable expiration dates for credentials that represent
|
||||
time-bound claims (e.g., memberships, certifications).
|
||||
</Tip>
|
||||
:::tip
|
||||
Set reasonable expiration dates for credentials that represent
|
||||
time-bound claims (e.g., memberships, certifications).
|
||||
:::
|
||||
|
||||
<Warning>
|
||||
Issued credentials cannot be modified. To update claims,
|
||||
revoke the old credential and issue a new one.
|
||||
</Warning>
|
||||
:::warning
|
||||
Issued credentials cannot be modified. To update claims,
|
||||
revoke the old credential and issue a new one.
|
||||
:::
|
||||
|
||||
@@ -1,22 +1,23 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/LinkExternalWallet
|
||||
title: Link External Wallet to DID
|
||||
description: Connect MetaMask, Keplr, or other wallets to your decentralized identity
|
||||
og:title: External Wallet Integration
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "External Wallet Integration"
|
||||
---
|
||||
|
||||
<Note>
|
||||
Each wallet can only be linked to one DID. Attempting to link the same wallet
|
||||
to multiple DIDs will fail.
|
||||
</Note>
|
||||
:::note
|
||||
Each wallet can only be linked to one DID. Attempting to link the same wallet
|
||||
to multiple DIDs will fail.
|
||||
:::
|
||||
|
||||
<Warning>
|
||||
Ensure you have control of the wallet before linking. Lost wallet access
|
||||
means losing this verification method.
|
||||
</Warning>
|
||||
:::warning
|
||||
Ensure you have control of the wallet before linking. Lost wallet access
|
||||
means losing this verification method.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
After linking, you can use your external wallet to sign transactions
|
||||
and authenticate operations on behalf of your DID.
|
||||
</Tip>
|
||||
:::tip
|
||||
After linking, you can use your external wallet to sign transactions
|
||||
and authenticate operations on behalf of your DID.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,17 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/RemoveService
|
||||
title: Remove Service Endpoint
|
||||
description: Remove service associations from your DID
|
||||
og:title: Remove DID Service
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Remove DID Service"
|
||||
---
|
||||
|
||||
<Note>
|
||||
Removing a service doesn't delete the actual service,
|
||||
only its association with the DID.
|
||||
</Note>
|
||||
:::note
|
||||
Removing a service doesn't delete the actual service,
|
||||
only its association with the DID.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Consider deprecation notices before removing widely-used services.
|
||||
</Tip>
|
||||
:::tip
|
||||
Consider deprecation notices before removing widely-used services.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/RemoveVerificationMethod
|
||||
title: Remove Verification Method
|
||||
description: Remove keys and authentication methods from your DID
|
||||
og:title: Remove DID Verification Method
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Remove DID Verification Method"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Ensure you have alternative verification methods before removing.
|
||||
Removing all methods locks you out of your DID.
|
||||
</Warning>
|
||||
:::warning
|
||||
Ensure you have alternative verification methods before removing.
|
||||
Removing all methods locks you out of your DID.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Best practice: Add new verification methods before removing old ones
|
||||
to maintain continuous access.
|
||||
</Tip>
|
||||
:::tip
|
||||
Best practice: Add new verification methods before removing old ones
|
||||
to maintain continuous access.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/RevokeVerifiableCredential
|
||||
title: Revoke Verifiable Credential
|
||||
description: Permanently invalidate an issued credential
|
||||
og:title: Revoke Digital Credential
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Revoke Digital Credential"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Revocation is permanent. Revoked credentials cannot be reinstated.
|
||||
To restore credentials, issue a new one with updated information.
|
||||
</Warning>
|
||||
:::warning
|
||||
Revocation is permanent. Revoked credentials cannot be reinstated.
|
||||
To restore credentials, issue a new one with updated information.
|
||||
:::
|
||||
|
||||
<Info>
|
||||
Always provide a clear revocation reason for transparency and
|
||||
audit trail purposes.
|
||||
</Info>
|
||||
:::info
|
||||
Always provide a clear revocation reason for transparency and
|
||||
audit trail purposes.
|
||||
:::
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
---
|
||||
openapi: post /did.v1.Msg/UpdateDID
|
||||
title: Update DID Document
|
||||
description: Modify verification methods, services, and controllers of your DID
|
||||
og:title: Update Decentralized Identity
|
||||
tag: x/did
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Update Decentralized Identity"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Updates are permanent and create a new version. Previous versions
|
||||
remain accessible for historical reference.
|
||||
</Warning>
|
||||
:::warning
|
||||
Updates are permanent and create a new version. Previous versions
|
||||
remain accessible for historical reference.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Use specific add/remove operations for individual changes rather
|
||||
than full document updates when possible.
|
||||
</Tip>
|
||||
:::tip
|
||||
Use specific add/remove operations for individual changes rather
|
||||
than full document updates when possible.
|
||||
:::
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
---
|
||||
title: Update DID Module Parameters
|
||||
description: Modify module parameters for decentralized identifier operations
|
||||
og:title: Update DID Module Parameters
|
||||
tag: x/did
|
||||
openapi: post /did.v1.Msg/UpdateParams
|
||||
sidebar:
|
||||
badge: x/did
|
||||
seo:
|
||||
title: "Update DID Module Parameters"
|
||||
---
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/ProtocolsConfigure
|
||||
title: Configure DWN Protocol
|
||||
description: Define structured data models and access patterns for interoperable applications
|
||||
og:title: DWN Protocol Configuration
|
||||
seo:
|
||||
title: "DWN Protocol Configuration"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Protocols are the foundation of data interoperability in DWN, enabling applications to share and understand structured data.
|
||||
</Info>
|
||||
:::info
|
||||
Protocols are the foundation of data interoperability in DWN, enabling applications to share and understand structured data.
|
||||
:::
|
||||
|
||||
## Protocol Architecture
|
||||
|
||||
@@ -44,9 +44,9 @@ og:title: DWN Protocol Configuration
|
||||
|
||||
## Publishing Protocols
|
||||
|
||||
<Tip>
|
||||
Set `published: true` to make your protocol discoverable and reusable by the community.
|
||||
</Tip>
|
||||
:::tip
|
||||
Set `published: true` to make your protocol discoverable and reusable by the community.
|
||||
:::
|
||||
|
||||
### Benefits of Published Protocols
|
||||
- **Discoverability**: Others can find and adopt your protocol
|
||||
@@ -70,6 +70,6 @@ og:title: DWN Protocol Configuration
|
||||
- Time-series organization
|
||||
- Aggregation rules
|
||||
|
||||
<Warning>
|
||||
Protocol URIs must be unique. Consider using versioned URIs (e.g., `/v1`, `/v2`) for upgrades.
|
||||
</Warning>
|
||||
:::warning
|
||||
Protocol URIs must be unique. Consider using versioned URIs (e.g., `/v1`, `/v2`) for upgrades.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/RecordsDelete
|
||||
title: Delete DWN Record
|
||||
description: Remove records from your personal data vault with optional cascading deletion
|
||||
og:title: DWN Record Deletion
|
||||
seo:
|
||||
title: "DWN Record Deletion"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Record deletion is **permanent** and cannot be undone. Ensure you have backups if needed.
|
||||
</Warning>
|
||||
:::warning
|
||||
Record deletion is **permanent** and cannot be undone. Ensure you have backups if needed.
|
||||
:::
|
||||
|
||||
## Deletion Options
|
||||
|
||||
@@ -28,15 +28,15 @@ You must have one of the following:
|
||||
- **Permission**: Have explicit delete permission
|
||||
- **Protocol Authority**: Have protocol-level delete rights
|
||||
|
||||
<Note>
|
||||
The `deletedCount` in the response includes all pruned child records.
|
||||
</Note>
|
||||
:::note
|
||||
The `deletedCount` in the response includes all pruned child records.
|
||||
:::
|
||||
|
||||
## Safety Considerations
|
||||
|
||||
<Tip>
|
||||
Query child records before pruning to understand the impact:
|
||||
```bash
|
||||
snrd query dwn records-query --parent-id <record_id>
|
||||
```
|
||||
</Tip>
|
||||
:::tip
|
||||
Query child records before pruning to understand the impact:
|
||||
```bash
|
||||
snrd query dwn records-query --parent-id <record_id>
|
||||
```
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/PermissionsGrant
|
||||
title: Grant DWN Access Permission
|
||||
description: Authorize other users to access your data with fine-grained control
|
||||
og:title: DWN Permission Management
|
||||
seo:
|
||||
title: "DWN Permission Management"
|
||||
---
|
||||
|
||||
<Info>
|
||||
DWN permissions enable secure data sharing with granular access control down to individual records.
|
||||
</Info>
|
||||
:::info
|
||||
DWN permissions enable secure data sharing with granular access control down to individual records.
|
||||
:::
|
||||
|
||||
## Permission Scopes
|
||||
|
||||
@@ -44,9 +44,9 @@ Grant access to specific records:
|
||||
|
||||
## Conditional Permissions
|
||||
|
||||
<Tip>
|
||||
Use conditions to create dynamic access rules that adapt to context.
|
||||
</Tip>
|
||||
:::tip
|
||||
Use conditions to create dynamic access rules that adapt to context.
|
||||
:::
|
||||
|
||||
### Time-Based Conditions
|
||||
```json
|
||||
@@ -77,9 +77,9 @@ Grant access to specific records:
|
||||
|
||||
## Security Best Practices
|
||||
|
||||
<Warning>
|
||||
Always set expiration times for permissions to limit exposure window.
|
||||
</Warning>
|
||||
:::warning
|
||||
Always set expiration times for permissions to limit exposure window.
|
||||
:::
|
||||
|
||||
1. **Principle of Least Privilege**: Grant minimum necessary access
|
||||
2. **Time Limits**: Use `expiresAt` for temporary access
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/PermissionsRevoke
|
||||
title: Revoke DWN Permission
|
||||
description: Immediately remove access rights previously granted to other users
|
||||
og:title: DWN Permission Revocation
|
||||
seo:
|
||||
title: "DWN Permission Revocation"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Permission revocation takes effect **immediately**. Active sessions using the permission will be terminated.
|
||||
</Warning>
|
||||
:::warning
|
||||
Permission revocation takes effect **immediately**. Active sessions using the permission will be terminated.
|
||||
:::
|
||||
|
||||
## Revocation Process
|
||||
|
||||
@@ -24,12 +24,12 @@ og:title: DWN Permission Revocation
|
||||
|
||||
## Finding Permissions to Revoke
|
||||
|
||||
<Tip>
|
||||
Query your active permissions before revoking:
|
||||
```bash
|
||||
snrd query dwn permissions-request --grantor <your_did>
|
||||
```
|
||||
</Tip>
|
||||
:::tip
|
||||
Query your active permissions before revoking:
|
||||
```bash
|
||||
snrd query dwn permissions-request --grantor <your_did>
|
||||
```
|
||||
:::
|
||||
|
||||
## Authorization Requirements
|
||||
|
||||
@@ -57,6 +57,6 @@ snrd tx dwn permissions-revoke --permission-id <team_permission>
|
||||
snrd tx dwn permissions-revoke --permission-id <unused_permission>
|
||||
```
|
||||
|
||||
<Note>
|
||||
Consider notifying affected users before revoking permissions to avoid disruption.
|
||||
</Note>
|
||||
:::note
|
||||
Consider notifying affected users before revoking permissions to avoid disruption.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/RotateVaultKeys
|
||||
title: Rotate Vault Encryption Keys
|
||||
description: Perform cryptographic key rotation for enhanced vault security
|
||||
og:title: DWN Vault Key Rotation
|
||||
seo:
|
||||
title: "DWN Vault Key Rotation"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
Key rotation is a **critical security operation** that requires validator consensus or governance approval.
|
||||
</Warning>
|
||||
:::warning
|
||||
Key rotation is a **critical security operation** that requires validator consensus or governance approval.
|
||||
:::
|
||||
|
||||
## Key Rotation Architecture
|
||||
|
||||
@@ -43,9 +43,9 @@ og:title: DWN Vault Key Rotation
|
||||
|
||||
## Rotation Process
|
||||
|
||||
<Info>
|
||||
The rotation process is designed to be seamless with zero downtime for users.
|
||||
</Info>
|
||||
:::info
|
||||
The rotation process is designed to be seamless with zero downtime for users.
|
||||
:::
|
||||
|
||||
### Phase 1: Preparation
|
||||
1. Generate new key material in enclave
|
||||
@@ -65,9 +65,9 @@ og:title: DWN Vault Key Rotation
|
||||
## Security Considerations
|
||||
|
||||
### Single-Node Fallback
|
||||
<Note>
|
||||
In development mode with `singleNodeFallback: true`, rotation uses local key generation.
|
||||
</Note>
|
||||
:::note
|
||||
In development mode with `singleNodeFallback: true`, rotation uses local key generation.
|
||||
:::
|
||||
|
||||
### Production Requirements
|
||||
- Minimum validator participation (67% default)
|
||||
@@ -83,13 +83,13 @@ og:title: DWN Vault Key Rotation
|
||||
- New encryptions use latest keys
|
||||
|
||||
### Performance
|
||||
- Slight latency during rotation (< 1s)
|
||||
- Slight latency during rotation (< 1s)
|
||||
- Background re-encryption process
|
||||
- No data availability impact
|
||||
|
||||
<Tip>
|
||||
Monitor rotation events via:
|
||||
```bash
|
||||
snrd query dwn vault-status --vault-id <id>
|
||||
```
|
||||
</Tip>
|
||||
:::tip
|
||||
Monitor rotation events via:
|
||||
```bash
|
||||
snrd query dwn vault-status --vault-id <id>
|
||||
```
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/UpdateParams
|
||||
title: Update DWN Module Parameters
|
||||
description: Configure module-wide settings for data storage, protocols, and security policies
|
||||
og:title: DWN Module Governance
|
||||
seo:
|
||||
title: "DWN Module Governance"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
This operation requires **governance approval** and is typically executed through on-chain proposals.
|
||||
</Warning>
|
||||
:::warning
|
||||
This operation requires **governance approval** and is typically executed through on-chain proposals.
|
||||
:::
|
||||
|
||||
## Parameter Categories
|
||||
|
||||
@@ -27,6 +27,6 @@ og:title: DWN Module Governance
|
||||
- **encryptedProtocols**: Protocol URIs requiring mandatory encryption
|
||||
- **encryptedSchemas**: Schema URIs requiring mandatory encryption
|
||||
|
||||
<Note>
|
||||
Changes to these parameters affect all DWN operations network-wide.
|
||||
</Note>
|
||||
:::note
|
||||
Changes to these parameters affect all DWN operations network-wide.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /dwn.v1.Msg/RecordsWrite
|
||||
title: Write Data Record to DWN
|
||||
description: Store structured data in your personal data vault with encryption and access control
|
||||
og:title: DWN Record Storage
|
||||
seo:
|
||||
title: "DWN Record Storage"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Records are the fundamental unit of data storage in DWN, supporting any data type with optional encryption.
|
||||
</Info>
|
||||
:::info
|
||||
Records are the fundamental unit of data storage in DWN, supporting any data type with optional encryption.
|
||||
:::
|
||||
|
||||
## Key Features
|
||||
|
||||
@@ -27,9 +27,9 @@ og:title: DWN Record Storage
|
||||
- **Social Content**: Share public posts or media
|
||||
- **Health Records**: Store sensitive medical data with encryption
|
||||
|
||||
<Tip>
|
||||
Use protocol definitions to ensure data interoperability across applications.
|
||||
</Tip>
|
||||
:::tip
|
||||
Use protocol definitions to ensure data interoperability across applications.
|
||||
:::
|
||||
|
||||
## Example Record Types
|
||||
|
||||
@@ -43,6 +43,6 @@ og:title: DWN Record Storage
|
||||
}
|
||||
```
|
||||
|
||||
<Warning>
|
||||
Records exceeding `maxRecordSize` will be rejected. Large files should be stored in IPFS with only metadata on-chain.
|
||||
</Warning>
|
||||
:::warning
|
||||
Records exceeding `maxRecordSize` will be rejected. Large files should be stored in IPFS with only metadata on-chain.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /svc.v1.Msg/VerifyDomain
|
||||
title: Complete Domain Verification
|
||||
description: Validate DNS TXT record to prove domain ownership
|
||||
og:title: Finalize Domain Ownership
|
||||
seo:
|
||||
title: "Finalize Domain Ownership"
|
||||
---
|
||||
|
||||
<Info>
|
||||
This endpoint validates the DNS TXT record to permanently bind the domain to your address.
|
||||
</Info>
|
||||
:::info
|
||||
This endpoint validates the DNS TXT record to permanently bind the domain to your address.
|
||||
:::
|
||||
|
||||
## Prerequisites
|
||||
|
||||
@@ -32,12 +32,12 @@ The system performs these checks:
|
||||
### Common Issues
|
||||
|
||||
#### DNS Not Propagated
|
||||
<Tip>
|
||||
Wait 5-30 minutes after adding the TXT record. Check propagation:
|
||||
```bash
|
||||
dig TXT example.com +short
|
||||
```
|
||||
</Tip>
|
||||
:::tip
|
||||
Wait 5-30 minutes after adding the TXT record. Check propagation:
|
||||
```bash
|
||||
dig TXT example.com +short
|
||||
```
|
||||
:::
|
||||
|
||||
#### Token Mismatch
|
||||
- Ensure exact token from initiation response
|
||||
@@ -57,9 +57,9 @@ Once verified:
|
||||
- **Trust Established**: Domain ownership proven
|
||||
- **No Re-verification**: One-time process per domain
|
||||
|
||||
<Warning>
|
||||
Domain ownership is permanent. Ensure you're verifying with the correct address.
|
||||
</Warning>
|
||||
:::warning
|
||||
Domain ownership is permanent. Ensure you're verifying with the correct address.
|
||||
:::
|
||||
|
||||
## Next Steps
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /svc.v1.Msg/InitiateDomainVerification
|
||||
title: Start Domain Verification
|
||||
description: Generate DNS TXT record token for domain ownership proof
|
||||
og:title: Domain Ownership Verification
|
||||
seo:
|
||||
title: "Domain Ownership Verification"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Domain verification ensures only legitimate domain owners can register services, establishing trust in the ecosystem.
|
||||
</Info>
|
||||
:::info
|
||||
Domain verification ensures only legitimate domain owners can register services, establishing trust in the ecosystem.
|
||||
:::
|
||||
|
||||
## Verification Process
|
||||
|
||||
@@ -37,22 +37,22 @@ snrd tx svc verify-domain example.com --from alice
|
||||
### Cloudflare
|
||||
1. Go to DNS settings
|
||||
2. Add record → Type: TXT
|
||||
3. Name: @ → Value: sonr-verification=<token>
|
||||
3. Name: @ → Value: sonr-verification=<token>
|
||||
4. Save and wait for propagation
|
||||
|
||||
### Route53 (AWS)
|
||||
1. Navigate to Hosted zones
|
||||
2. Create record → Type: TXT
|
||||
3. Record name: (leave blank for root)
|
||||
4. Value: "sonr-verification=<token>"
|
||||
4. Value: "sonr-verification=<token>"
|
||||
|
||||
<Tip>
|
||||
Use DNS lookup tools to verify your TXT record is propagated before completing verification:
|
||||
```bash
|
||||
dig TXT example.com
|
||||
nslookup -type=TXT example.com
|
||||
```
|
||||
</Tip>
|
||||
:::tip
|
||||
Use DNS lookup tools to verify your TXT record is propagated before completing verification:
|
||||
```bash
|
||||
dig TXT example.com
|
||||
nslookup -type=TXT example.com
|
||||
```
|
||||
:::
|
||||
|
||||
## Requirements
|
||||
|
||||
@@ -61,6 +61,6 @@ snrd tx svc verify-domain example.com --from alice
|
||||
- **Unique Ownership**: Each domain can only have one owner
|
||||
- **Time Limit**: Complete within 7 days of initiation
|
||||
|
||||
<Warning>
|
||||
Verification tokens expire after 7 days. If expired, you must initiate a new verification.
|
||||
</Warning>
|
||||
:::warning
|
||||
Verification tokens expire after 7 days. If expired, you must initiate a new verification.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /svc.v1.Msg/RegisterService
|
||||
title: Register Decentralized Service
|
||||
description: Create a new service with domain binding and UCAN permissions
|
||||
og:title: Service Registration
|
||||
seo:
|
||||
title: "Service Registration"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Services are the foundation of decentralized applications in Sonr, providing trusted interaction points through verified domains.
|
||||
</Info>
|
||||
:::info
|
||||
Services are the foundation of decentralized applications in Sonr, providing trusted interaction points through verified domains.
|
||||
:::
|
||||
|
||||
## Prerequisites
|
||||
|
||||
@@ -68,9 +68,9 @@ Services request permissions users must grant:
|
||||
}
|
||||
```
|
||||
|
||||
<Tip>
|
||||
Request only necessary permissions. Users are more likely to grant minimal permission sets.
|
||||
</Tip>
|
||||
:::tip
|
||||
Request only necessary permissions. Users are more likely to grant minimal permission sets.
|
||||
:::
|
||||
|
||||
## UCAN Integration
|
||||
|
||||
@@ -116,9 +116,9 @@ Provide existing UCAN chain for pre-authorized capabilities.
|
||||
- **Clear Purpose**: Document why each permission
|
||||
- **Future Growth**: Design for expansion
|
||||
|
||||
<Warning>
|
||||
Service registration is permanent. Choose your service ID carefully as it cannot be changed.
|
||||
</Warning>
|
||||
:::warning
|
||||
Service registration is permanent. Choose your service ID carefully as it cannot be changed.
|
||||
:::
|
||||
|
||||
## Post-Registration
|
||||
|
||||
@@ -134,6 +134,6 @@ snrd query svc services-by-domain example.com
|
||||
ipfs cat <root_capability_cid>
|
||||
```
|
||||
|
||||
<Note>
|
||||
Services become immediately discoverable after registration. Ensure your application is ready to handle user interactions.
|
||||
</Note>
|
||||
:::note
|
||||
Services become immediately discoverable after registration. Ensure your application is ready to handle user interactions.
|
||||
:::
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
---
|
||||
openapi: post /svc.v1.Msg/UpdateParams
|
||||
title: Update SVC Module Parameters
|
||||
description: Configure service registration limits, domain verification, and UCAN settings
|
||||
og:title: SVC Module Governance
|
||||
seo:
|
||||
title: "SVC Module Governance"
|
||||
---
|
||||
|
||||
<Warning>
|
||||
This operation requires **governance approval** and is typically executed through on-chain proposals.
|
||||
</Warning>
|
||||
:::warning
|
||||
This operation requires **governance approval** and is typically executed through on-chain proposals.
|
||||
:::
|
||||
|
||||
## Parameter Categories
|
||||
|
||||
@@ -31,6 +31,6 @@ og:title: SVC Module Governance
|
||||
- **domainVerificationFee**: Fee for domain verification
|
||||
- **minServiceStake**: Minimum stake to maintain service
|
||||
|
||||
<Note>
|
||||
Changes affect all service operations network-wide. Plan parameter updates carefully.
|
||||
</Note>
|
||||
:::note
|
||||
Changes affect all service operations network-wide. Plan parameter updates carefully.
|
||||
:::
|
||||
|
||||
@@ -1,24 +1,17 @@
|
||||
---
|
||||
title: "Decentralized Exchange (x/dex)"
|
||||
sidebarTitle: "Interchain Exchange"
|
||||
icon: "coins"
|
||||
tag: "x/dex"
|
||||
description: "Cross-chain trading through IBC Interchain Accounts with DID-based authorization"
|
||||
sidebar:
|
||||
label: "Interchain Exchange"
|
||||
badge: "x/dex"
|
||||
---
|
||||
|
||||
import { Card, CardGrid } from '@/components/mdx'
|
||||
import { Tabs, Tab } from '@/components/mdx'
|
||||
import { Accordion, AccordionItem } from '@/components/mdx'
|
||||
import { CodeGroup } from '@/components/mdx'
|
||||
import { Info } from '@/components/mdx'
|
||||
|
||||
# Sonr DEX Module
|
||||
|
||||
The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain trading infrastructure that enables seamless, secure, and self-sovereign trading across the Cosmos ecosystem.
|
||||
|
||||
## Overview
|
||||
|
||||
<CardGrid>
|
||||
<CardGroup>
|
||||
<Card title="Cross-Chain Trading" icon="swap">
|
||||
Execute swaps on remote DEX chains via Interchain Accounts (ICA)
|
||||
</Card>
|
||||
@@ -31,7 +24,7 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
<Card title="Multi-DEX Support" icon="globe">
|
||||
Connect to multiple DEX chains simultaneously
|
||||
</Card>
|
||||
</CardGrid>
|
||||
</CardGroup>
|
||||
|
||||
## Core Concepts
|
||||
|
||||
@@ -51,7 +44,7 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
|
||||
## Trading Operations
|
||||
|
||||
<Tabs>
|
||||
<Tabs inline>
|
||||
<Tab title="Swaps">
|
||||
<CodeGroup>
|
||||
```bash
|
||||
@@ -68,9 +61,9 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
```
|
||||
</CodeGroup>
|
||||
|
||||
<Info>
|
||||
<Callout type="info">
|
||||
Swap operations are protected against slippage with `min-amount-out` parameter.
|
||||
</Info>
|
||||
</Callout>
|
||||
</Tab>
|
||||
|
||||
<Tab title="Liquidity">
|
||||
@@ -88,9 +81,9 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
```
|
||||
</CodeGroup>
|
||||
|
||||
<Info>
|
||||
<Callout type="info">
|
||||
Liquidity providers receive LP tokens proportional to their contribution.
|
||||
</Info>
|
||||
</Callout>
|
||||
</Tab>
|
||||
|
||||
<Tab title="Orders">
|
||||
@@ -110,15 +103,15 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
```
|
||||
</CodeGroup>
|
||||
|
||||
<Info>
|
||||
<Callout type="info">
|
||||
Limit orders can be created with precise price and expiration settings.
|
||||
</Info>
|
||||
</Callout>
|
||||
</Tab>
|
||||
</Tabs>
|
||||
|
||||
## Security and Performance
|
||||
|
||||
<CardGrid>
|
||||
<CardGroup>
|
||||
<Card title="DID Authentication" icon="shield">
|
||||
All operations require valid DID signatures
|
||||
</Card>
|
||||
@@ -131,7 +124,7 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
<Card title="Batch Operations" icon="rocket">
|
||||
Multiple operations can be executed in a single transaction
|
||||
</Card>
|
||||
</CardGrid>
|
||||
</CardGroup>
|
||||
|
||||
## Supported DEX Chains
|
||||
|
||||
@@ -165,7 +158,7 @@ The Sonr Decentralized Exchange (DEX) module provides a powerful cross-chain tra
|
||||
|
||||
## Technical Details
|
||||
|
||||
<Tabs>
|
||||
<Tabs inline>
|
||||
<Tab title="Protobuf Definitions">
|
||||
```protobuf
|
||||
message MsgExecuteSwap {
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
---
|
||||
title: "Decentralized Identity"
|
||||
sidebarTitle: "Universal Identifiers"
|
||||
description: "Sonr's Decentralized Identifier (DID) Module: W3C-Compliant Identity Management"
|
||||
icon: "fingerprint"
|
||||
tag: "x/did"
|
||||
sidebar:
|
||||
label: "Universal Identifiers"
|
||||
badge: "x/did"
|
||||
---
|
||||
|
||||
# Decentralized Identifier (DID) Module
|
||||
|
||||
The Sonr DID module implements a comprehensive W3C DID specification, providing a decentralized identity layer that enables self-sovereign identity management across the Sonr blockchain ecosystem.
|
||||
|
||||
## Key Features
|
||||
@@ -122,4 +121,4 @@ Link external wallets like MetaMask and Keplr directly to your DID, enabling cro
|
||||
|
||||
## Documentation and Examples
|
||||
|
||||
Refer to the [Blockchain Documentation](/blockchain/) for detailed guides, API references, and integration tutorials.
|
||||
Refer to the [Blockchain Documentation](/reference/concepts/sonr) for detailed guides, API references, and integration tutorials.
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
---
|
||||
title: "Decentralized Web Node (x/dwn)"
|
||||
sidebarTitle: "Smart Wallets"
|
||||
description: "Decentralized Web Node (DWN) Module: Personal Data Stores, Protocols, and Secure Vaults"
|
||||
icon: "wallet"
|
||||
tag: "x/dwn"
|
||||
sidebar:
|
||||
label: "Smart Wallets"
|
||||
badge: "x/dwn"
|
||||
---
|
||||
|
||||
# Decentralized Web Node (DWN) Module
|
||||
|
||||
The `x/dwn` module is the foundational engine of the Sonr ecosystem. It provides a comprehensive **Decentralized Web Node (DWN)** implementation that serves as the backbone for user-controlled data storage, protocol management, and secure vault operations. The module enables users to maintain sovereign control over their data while participating in a decentralized ecosystem.
|
||||
|
||||
## Overview
|
||||
|
||||
@@ -1,13 +1,12 @@
|
||||
---
|
||||
title: "On-Chain Authorization (x/svc)"
|
||||
sidebarTitle: "Web Service Registry"
|
||||
description: "Service registration and management with domain verification and UCAN integration"
|
||||
icon: "factory"
|
||||
tag: "x/svc"
|
||||
sidebar:
|
||||
label: "Web Service Registry"
|
||||
badge: "x/svc"
|
||||
---
|
||||
|
||||
# Sonr Service (SVC) Module
|
||||
|
||||
The Service (SVC) module manages the registration and operation of decentralized services within the Sonr ecosystem. It provides a comprehensive framework for services to register with verified domains, define their permission requirements, and integrate with the broader Sonr authorization system through UCAN capabilities.
|
||||
|
||||
## Key Capabilities
|
||||
@@ -20,20 +19,20 @@ The Service (SVC) module manages the registration and operation of decentralized
|
||||
|
||||
## System Architecture
|
||||
|
||||
<Mermaid
|
||||
chart={`graph TB
|
||||
```mermaid
|
||||
graph TB
|
||||
subgraph "Client Layer"
|
||||
U[User]
|
||||
B[Browser]
|
||||
WA[WebAuthn API]
|
||||
end
|
||||
|
||||
|
||||
subgraph "Application Layer"
|
||||
APP[App Frontend]
|
||||
SDK[Sonr SDK]
|
||||
SVC_SDK[Service SDK]
|
||||
end
|
||||
|
||||
|
||||
subgraph "Blockchain Layer"
|
||||
BC[Sonr Blockchain]
|
||||
subgraph "Modules"
|
||||
@@ -43,12 +42,12 @@ The Service (SVC) module manages the registration and operation of decentralized
|
||||
SVC[x/svc]
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
subgraph "Storage Layer"
|
||||
IPFS[IPFS Network]
|
||||
VAULT[Vault Storage]
|
||||
end
|
||||
|
||||
|
||||
U --> B
|
||||
B --> WA
|
||||
B --> APP
|
||||
@@ -62,34 +61,33 @@ The Service (SVC) module manages the registration and operation of decentralized
|
||||
BC --> SVC
|
||||
DWN --> IPFS
|
||||
DWN --> VAULT
|
||||
`}
|
||||
/>
|
||||
```
|
||||
|
||||
## Trust Model
|
||||
|
||||
<Mermaid
|
||||
chart={`graph LR
|
||||
```mermaid
|
||||
graph LR
|
||||
subgraph "Trust Anchors"
|
||||
WA[WebAuthn<br/>Hardware]
|
||||
BC[Blockchain<br/>Consensus]
|
||||
DNS[DNS<br/>Domain Verification]
|
||||
end
|
||||
|
||||
|
||||
subgraph "Identity Layer"
|
||||
DID[DID Documents]
|
||||
CRED[WebAuthn Credentials]
|
||||
end
|
||||
|
||||
|
||||
subgraph "Authorization Layer"
|
||||
UCAN[UCAN Tokens]
|
||||
CAP[Capabilities]
|
||||
end
|
||||
|
||||
|
||||
subgraph "Service Layer"
|
||||
SVC[Service Records]
|
||||
PERM[Permissions]
|
||||
end
|
||||
|
||||
|
||||
WA --> CRED
|
||||
BC --> DID
|
||||
DNS --> SVC
|
||||
@@ -98,8 +96,7 @@ The Service (SVC) module manages the registration and operation of decentralized
|
||||
UCAN --> CAP
|
||||
CAP --> PERM
|
||||
SVC --> PERM
|
||||
`}
|
||||
/>
|
||||
```
|
||||
|
||||
## Core Concepts
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/account/{did}/{connectionId}
|
||||
title: Query DEX Account Details
|
||||
description: Get information about a specific Interchain Account for DEX operations
|
||||
og:title: DEX Account Information
|
||||
seo:
|
||||
title: "DEX Account Information"
|
||||
---
|
||||
|
||||
<Note>
|
||||
Account addresses are only available after successful IBC acknowledgment.
|
||||
Pending accounts will have an empty address field.
|
||||
</Note>
|
||||
:::note
|
||||
Account addresses are only available after successful IBC acknowledgment.
|
||||
Pending accounts will have an empty address field.
|
||||
:::
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/params
|
||||
title: DEX Module Parameters
|
||||
description: Retrieve current configuration and operational limits for the DEX module
|
||||
og:title: Query DEX Module Configuration
|
||||
seo:
|
||||
title: "Query DEX Module Configuration"
|
||||
---
|
||||
|
||||
<Tip>
|
||||
Cache parameter responses client-side as they change infrequently.
|
||||
Refresh periodically or after governance proposals.
|
||||
</Tip>
|
||||
:::tip
|
||||
Cache parameter responses client-side as they change infrequently.
|
||||
Refresh periodically or after governance proposals.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/pool/{connectionId}/{poolId}
|
||||
title: Query Liquidity Pool Details
|
||||
description: Get comprehensive information about DEX liquidity pools
|
||||
og:title: Liquidity Pool Information
|
||||
seo:
|
||||
title: "Liquidity Pool Information"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Pool information is essential for calculating optimal liquidity provision
|
||||
amounts and understanding potential returns.
|
||||
</Info>
|
||||
:::info
|
||||
Pool information is essential for calculating optimal liquidity provision
|
||||
amounts and understanding potential returns.
|
||||
:::
|
||||
|
||||
<Warning>
|
||||
Pool compositions can change rapidly. Always fetch current data
|
||||
before providing liquidity.
|
||||
</Warning>
|
||||
:::warning
|
||||
Pool compositions can change rapidly. Always fetch current data
|
||||
before providing liquidity.
|
||||
:::
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/balance/{did}/{connectionId}
|
||||
title: Query Remote Chain Balances
|
||||
description: Check token balances in your ICA account on remote chains
|
||||
og:title: Cross-Chain Balance Query
|
||||
seo:
|
||||
title: "Cross-Chain Balance Query"
|
||||
---
|
||||
|
||||
<Tip>
|
||||
Use the optional `denom` parameter to check specific token balances
|
||||
without fetching the entire balance list.
|
||||
</Tip>
|
||||
:::tip
|
||||
Use the optional `denom` parameter to check specific token balances
|
||||
without fetching the entire balance list.
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Balances are fetched in real-time from the remote chain via IBC queries.
|
||||
</Note>
|
||||
:::note
|
||||
Balances are fetched in real-time from the remote chain via IBC queries.
|
||||
:::
|
||||
|
||||
@@ -1,21 +1,21 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/history/{did}
|
||||
title: Query Trading History
|
||||
description: Access complete cross-chain trading history for a DID
|
||||
og:title: DEX Transaction History
|
||||
seo:
|
||||
title: "DEX Transaction History"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Transaction history is stored permanently on the Sonr chain,
|
||||
providing a complete audit trail of all DEX operations.
|
||||
</Info>
|
||||
:::info
|
||||
Transaction history is stored permanently on the Sonr chain,
|
||||
providing a complete audit trail of all DEX operations.
|
||||
:::
|
||||
|
||||
<Tip>
|
||||
Export historical data regularly for tax reporting and portfolio analysis.
|
||||
Use filters to focus on specific time periods or operation types.
|
||||
</Tip>
|
||||
:::tip
|
||||
Export historical data regularly for tax reporting and portfolio analysis.
|
||||
Use filters to focus on specific time periods or operation types.
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Large histories may require multiple paginated requests.
|
||||
Use the pagination key for efficient retrieval.
|
||||
</Note>
|
||||
:::note
|
||||
Large histories may require multiple paginated requests.
|
||||
Use the pagination key for efficient retrieval.
|
||||
:::
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/accounts/{did}
|
||||
title: List User's DEX Accounts
|
||||
description: Retrieve all Interchain Accounts associated with a DID
|
||||
og:title: List Cross-Chain Trading Accounts
|
||||
seo:
|
||||
title: "List Cross-Chain Trading Accounts"
|
||||
---
|
||||
|
||||
<Info>
|
||||
Each DID can have multiple accounts across different chains,
|
||||
subject to the `maxAccountsPerDid` parameter limit.
|
||||
</Info>
|
||||
:::info
|
||||
Each DID can have multiple accounts across different chains,
|
||||
subject to the `maxAccountsPerDid` parameter limit.
|
||||
:::
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
---
|
||||
openapi: get /sonr/dex/v1/orders/{did}/{connectionId}
|
||||
title: List User Orders
|
||||
description: Retrieve limit orders for a DID on specific DEX chains
|
||||
og:title: Query Cross-Chain Orders
|
||||
seo:
|
||||
title: "Query Cross-Chain Orders"
|
||||
---
|
||||
|
||||
<Tip>
|
||||
Use the `status` filter to query only active orders for portfolio management
|
||||
or historical orders for tax reporting.
|
||||
</Tip>
|
||||
:::tip
|
||||
Use the `status` filter to query only active orders for portfolio management
|
||||
or historical orders for tax reporting.
|
||||
:::
|
||||
|
||||
<Note>
|
||||
Order history is retained for a limited time on most DEXs.
|
||||
Archive important order data locally.
|
||||
</Note>
|
||||
:::note
|
||||
Order history is retained for a limited time on most DEXs.
|
||||
Archive important order data locally.
|
||||
:::
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user