Skip to content

Commit

Permalink
Fixes codeblocks to plain output.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymatthews committed Nov 7, 2024
1 parent 1dcfbf5 commit 805bf4c
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions content/reference/command-line-interface.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Follow these steps to install Entropy globally using NPM:

You can interact with Entropy quickly by giving single-line commands to the `entropy` executable.

```shell
```output
Usage: entropy [options] [command]
CLI interface for interacting with entropy.xyz.
Expand All @@ -125,7 +125,7 @@ Commands:
### `tui`
```shell
```output
Usage: entropy tui [options]
Text-based User Interface (interactive)
Expand All @@ -138,7 +138,7 @@ Options:
### `account`
```shell
```output
Usage: entropy account [options] [command]
Commands to work with accounts on the Entropy Network
Expand All @@ -156,7 +156,7 @@ Commands:
#### `create`
```shell
```output
Usage: entropy account create|new [options] <name>
Create a new entropy account from scratch. Output is JSON of form {name, address}
Expand All @@ -171,7 +171,7 @@ Options:
#### `import`
```shell
```output
Usage: entropy account import [options] <name> <seed>
Import an existing entropy account from seed. Output is JSON of form {name, address}
Expand All @@ -187,7 +187,7 @@ Options:
#### `list`
```shell
```output
Usage: entropy account list|ls [options]
List all accounts. Output is JSON of form [{ name, address, verifyingKeys }]
Expand All @@ -198,7 +198,7 @@ Options:
#### `register`
```shell
```output
Usage: entropy account register [options]
Register an entropy account with a program
Expand All @@ -211,7 +211,7 @@ Options:
### `sign`
```shell
```output
Usage: entropy sign [options] <msg>
Sign a message using the Entropy network. Output is a JSON { verifyingKey, signature }
Expand All @@ -227,7 +227,7 @@ Options:
### `balance`
```shell
```output
Usage: entropy balance [options] <account>
Command to retrieive the balance of an account on the Entropy Network
Expand All @@ -242,7 +242,7 @@ Options:
### `transfer`
```shell
```output
Usage: entropy transfer [options] <destination> <amount>
Transfer funds between two Entropy accounts.
Expand All @@ -259,7 +259,7 @@ Options:
### `program`
```shell
```output
Usage: entropy program [options] [command]
Commands for working with programs deployed to the Entropy Network
Expand All @@ -279,7 +279,7 @@ Commands:
#### `deploy`
```shell
```output
Usage: entropy program deploy [options] <bytecode> <configurationSchema> <auxillaryDataSchema>
Deploys a program to the Entropy network, returning a program pointer. Requires
Expand All @@ -298,7 +298,7 @@ Options:
#### `get`
```shell
```output
Usage: entropy program get [options] <programPointer>
Get a program interface by it's pointer.
Expand All @@ -314,7 +314,7 @@ Options:
#### `listDeployed`
```shell
```output
Usage: entropy program listDeployed [options]
Get a list of all programs the current account has deployed
Expand All @@ -327,7 +327,7 @@ Options:
#### `add`
```shell
```output
Usage: entropy program add [options] <programPointer> [programConfigPath]
Add a program to the current account
Expand All @@ -347,7 +347,7 @@ Options:
#### `remove`
```shell
```output
Usage: entropy program remove|rm [options] <programPointer>
Remove a program from an account (specified by a verifyingKey)
Expand All @@ -367,7 +367,7 @@ Options:
#### `list`
```shell
```output
Usage: entropy program list|ls [options] <verifyingKey>
List all the programs (an associated config) added to a particular
Expand Down

0 comments on commit 805bf4c

Please sign in to comment.