Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ function sidebarStart(): DefaultTheme.SidebarItem[] {
text: 'Iroha 2 vs. Iroha 1',
link: '/get-started/iroha-2',
},
{
text: 'Join Iroha 2 Public Testnet',
link: 'https://wiki.sora.org/running-a-sora-testnet-node.html',
},
],
},
]
Expand Down Expand Up @@ -349,6 +353,10 @@ function sidebarAPI(): DefaultTheme.SidebarItem[] {
text: 'Permissions',
link: '/reference/permissions.md',
},
{
text: 'Binaries',
link: '/reference/binaries.md',
},
],
},
]
Expand Down
2 changes: 1 addition & 1 deletion src/blockchain/triggers.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contains the necessary information:
The documentation on the `EventFilter` types is under construction, as
we are likely to make major changes to that particular architecture.
For now, suffice it to say that you can look at the
[source code](https://github.com/hyperledger-iroha/iroha/blob/main/data_model/src/events/data/filters.rs)
[source code](https://github.com/hyperledger-iroha/iroha/blob/main/crates/iroha_data_model/src/events/data/filters.rs)
in `iroha_data_model` and see a few particularly interesting
applications.

Expand Down
10 changes: 8 additions & 2 deletions src/get-started/install-iroha-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,24 @@ Check the [OpenSSL installation guide](https://github.com/openssl/openssl/blob/m
$ git clone https://github.com/hyperledger-iroha/iroha.git
```

4. Change directory to the cloned repository:

```bash
$ cd iroha
```

### 3. Install Iroha Binaries

To get started you need two of the binaries shipped with Iroha:

- `iroha`, the main command line tool for accessing the Iroha network as a user. It allows you to manage domains, accounts, and assets, and to query network status and events. To install `iroha` system-wide, use the following command:

```bash
$ cargo install --git https://github.com/hyperledger-iroha/iroha.git iroha_cli
$ cargo install --path crates/iroha_cli --locked
```

- `kagami`, the tool that generates cryotpgraphic keys, configuration files and other necessary data. To install `kagami` system-wide, use the following command:

```bash
$ cargo install --git https://github.com/hyperledger-iroha/iroha.git iroha_kagami
$ cargo install --path crates/iroha_kagami --locked
```
4 changes: 2 additions & 2 deletions src/get-started/launch-iroha-2.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ You can monitor blockchain events in the terminal where the network runs.

The following options are also available for local compilation:

- To test Iroha code quickly, use the `docker-compose-single.yml` network configuration file, which starts a container with a single peer.
- To test Iroha code in normal conditions, use the `docker-compose-local.yml` network configuration file, which starts four connected containers with peers.
- To test Iroha code quickly, use the `docker-compose.single.yml` network configuration file, which starts a container with a single peer.
- To test Iroha code in normal conditions, use the `docker-compose.local.yml` network configuration file, which starts four connected containers with peers.

::: tip Note

Expand Down
89 changes: 55 additions & 34 deletions src/get-started/launch-iroha.docker-compose-output.ansi

Large diffs are not rendered by default.

Loading