Skip to content

Commit

Permalink
neutrond results
Browse files Browse the repository at this point in the history
  • Loading branch information
maxim-uvarov committed Oct 6, 2023
1 parent e77bba8 commit 7aa80f8
Show file tree
Hide file tree
Showing 229 changed files with 22,835 additions and 0 deletions.
34 changes: 34 additions & 0 deletions out/neutrond/commands-md-files/neutrond .md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
IntechainAdapteerd (daemon)

Usage:
neutrond [command]

Available Commands:
add-consumer-section ONLY FOR TESTING PURPOSES! Modifies genesis so that chain can be started locally with one node.
add-genesis-account Add a genesis account to genesis.json
add-wasm-message Wasm genesis subcommands
collect-gentxs Collect genesis txs and output a genesis.json file
config Create or query an application CLI configuration file
debug Tool for helping with debugging your application
export Export state to JSON
gentx Generate a genesis tx carrying a self delegation
help Help about any command
init Initialize private validator, p2p, genesis, and application configuration files
keys Manage your application's keys
query Querying subcommands
rollback rollback cosmos-sdk and tendermint state by one height
start Run the full node
status Query remote node for status
tendermint Tendermint subcommands
tx Transactions subcommands
validate-genesis validates the genesis file at the default location or at the location passed as an arg
version Print the application binary version information

Flags:
-h, --help help for neutrond
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors

Use "neutrond [command] --help" for more information about a command.
16 changes: 16 additions & 0 deletions out/neutrond/commands-md-files/neutrond add-consumer-section.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
ONLY FOR TESTING PURPOSES! Modifies genesis so that chain can be started locally with one node.

Usage:
neutrond add-consumer-section [flags]

Flags:
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for add-consumer-section
--home string The application home directory (default "/Users/user/.neutrond")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
23 changes: 23 additions & 0 deletions out/neutrond/commands-md-files/neutrond add-genesis-account.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Add a genesis account to genesis.json. The provided account must specify
the account address or key name and a list of initial coins. If a key name is given,
the address will be looked up in the local Keybase. The list of initial tokens must
contain valid denominations. Accounts may optionally be supplied with vesting parameters.

Usage:
neutrond add-genesis-account [address_or_key_name] [coin][,[coin]] [flags]

Flags:
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for add-genesis-account
--home string The application home directory (default "/Users/user/.neutrond")
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")
--vesting-amount string amount of coins for vesting accounts
--vesting-end-time int schedule end time (unix epoch) for vesting accounts
--vesting-start-time int schedule start time (unix epoch) for vesting accounts

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Execute a command on a wasm contract

Usage:
neutrond add-wasm-message execute [contract_addr_bech32] [json_encoded_send_args] --run-as [address] --amount [coins,optional] [flags]

Flags:
--amount string Coins to send to the contract along with command
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for execute
--home string The application home directory (default "/Users/user/.neutrond")
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")
--run-as string The address that pays the funds.

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Instantiate a wasm contract

Usage:
neutrond add-wasm-message instantiate-contract [code_id_int64] [json_encoded_init_args] --label [text] --run-as [address] --admin [address,optional] --amount [coins,optional] [flags]

Flags:
--admin string Address or key name of an admin
--amount string Coins to send to the contract during instantiation
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for instantiate-contract
--home string The application home directory (default "/Users/user/.neutrond")
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os")
--label string A human-readable name for this contract in lists
--no-admin You must set this explicitly if you don't want an admin
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")
--run-as string The address that pays the init funds. It is the creator of the contract.

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Lists all codes from genesis code dump and queued messages

Usage:
neutrond add-wasm-message list-codes [flags]

Flags:
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for list-codes
--home string The application home directory (default "/Users/user/.neutrond")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Lists all contracts from genesis contract dump and queued messages

Usage:
neutrond add-wasm-message list-contracts [flags]

Flags:
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for list-contracts
--home string The application home directory (default "/Users/user/.neutrond")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
22 changes: 22 additions & 0 deletions out/neutrond/commands-md-files/neutrond add-wasm-message store.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Upload a wasm binary

Usage:
neutrond add-wasm-message store [wasm file] --run-as [owner_address_or_key_name]", [flags]

Flags:
--height int Use a specific height to query state at (this can error if the node is pruning state)
-h, --help help for store
--home string The application home directory (default "/Users/user/.neutrond")
--instantiate-anyof-addresses strings Any of the addresses can instantiate a contract from the code, optional
--instantiate-everybody string Everybody can instantiate a contract from the code, optional
--instantiate-nobody string Nobody except the governance process can instantiate a contract from the code, optional
--instantiate-only-address string Only this address can instantiate a contract instance from the code, optional
--keyring-backend string Select keyring's backend (os|file|kwallet|pass|test) (default "os")
--node string <host>:<port> to Tendermint RPC interface for this chain (default "tcp://localhost:26657")
-o, --output string Output format (text|json) (default "text")
--run-as string The address that is stored as code creator

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
23 changes: 23 additions & 0 deletions out/neutrond/commands-md-files/neutrond add-wasm-message.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Wasm genesis subcommands

Usage:
neutrond add-wasm-message [flags]
neutrond add-wasm-message [command]

Available Commands:
execute Execute a command on a wasm contract
instantiate-contract Instantiate a wasm contract
list-codes Lists all codes from genesis code dump and queued messages
list-contracts Lists all contracts from genesis contract dump and queued messages
store Upload a wasm binary

Flags:
-h, --help help for add-wasm-message

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors

Use "neutrond add-wasm-message [command] --help" for more information about a command.
14 changes: 14 additions & 0 deletions out/neutrond/commands-md-files/neutrond collect-gentxs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Collect genesis txs and output a genesis.json file

Usage:
neutrond collect-gentxs [flags]

Flags:
--gentx-dir string override default "gentx" directory from which collect and execute genesis transactions; default [--home]/config/gentx/
-h, --help help for collect-gentxs
--home string The application home directory (default "/Users/user/.neutrond")

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
13 changes: 13 additions & 0 deletions out/neutrond/commands-md-files/neutrond config.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Create or query an application CLI configuration file

Usage:
neutrond config <key> [value] [flags]

Flags:
-h, --help help for config

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
16 changes: 16 additions & 0 deletions out/neutrond/commands-md-files/neutrond debug addr.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Convert an address between hex encoding and bech32.

Example:
$ neutrond debug addr cosmos1e0jnq2sun3dzjh8p2xq95kk0expwmd7shwjpfg

Usage:
neutrond debug addr [address] [flags]

Flags:
-h, --help help for addr

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Generates contract address for the given instance id and code id

Usage:
neutrond debug generate-contract-address [instance_id] [code_id] [flags]

Flags:
-h, --help help for generate-contract-address

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
16 changes: 16 additions & 0 deletions out/neutrond/commands-md-files/neutrond debug pubkey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Decode a pubkey from proto JSON and display it's address.

Example:
$ neutrond debug pubkey '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AurroA7jvfPd1AadmmOvWM2rJSwipXfRf8yD6pLbA2DJ"}'

Usage:
neutrond debug pubkey [pubkey] [flags]

Flags:
-h, --help help for pubkey

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
16 changes: 16 additions & 0 deletions out/neutrond/commands-md-files/neutrond debug raw-bytes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Convert raw-bytes to hex.

Example:
$ neutrond debug raw-bytes [72 101 108 108 111 44 32 112 108 97 121 103 114 111 117 110 100]

Usage:
neutrond debug raw-bytes [raw-bytes] [flags]

Flags:
-h, --help help for raw-bytes

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
22 changes: 22 additions & 0 deletions out/neutrond/commands-md-files/neutrond debug.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Tool for helping with debugging your application

Usage:
neutrond debug [flags]
neutrond debug [command]

Available Commands:
addr Convert an address between hex and bech32
generate-contract-address Generates contract address for the given instance id and code id
pubkey Decode a pubkey from proto JSON
raw-bytes Convert raw bytes output (eg. [10 21 13 255]) to hex

Flags:
-h, --help help for debug

Global Flags:
--home string directory for config and data (default "/Users/user/.neutrond")
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors

Use "neutrond debug [command] --help" for more information about a command.
16 changes: 16 additions & 0 deletions out/neutrond/commands-md-files/neutrond export.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Export state to JSON

Usage:
neutrond export [flags]

Flags:
--for-zero-height Export state to start at height zero (perform preproccessing)
--height int Export state from a particular height (-1 means latest height) (default -1)
-h, --help help for export
--home string The application home directory (default "/Users/user/.neutrond")
--jail-allowed-addrs strings Comma-separated list of operator addresses of jailed validators to unjail

Global Flags:
--log_format string The logging format (json|plain) (default "plain")
--log_level string The logging level (trace|debug|info|warn|error|fatal|panic) (default "info")
--trace print out full stack trace on errors
Loading

0 comments on commit 7aa80f8

Please sign in to comment.