Skip to content

Commit

Permalink
update faq and endpoint and link updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sambukowski committed Jun 4, 2024
1 parent 6245985 commit 9ad98db
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 119 deletions.
2 changes: 1 addition & 1 deletion docs/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function sidebar() {
{ text: 'Overview', link: '/community/1-overview' }
]
},
{ text: 'Dusknet FAQ', link: '/dusk-faq/1-information' }
{ text: 'Dusknet FAQ', link: '/dusk-faq/faq' }
]
}
]
Expand Down
6 changes: 3 additions & 3 deletions docs/components/_astria-go-cli-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
::: code-group

```bash [ARM Mac]
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.7.1/astria-go-v0.7.1-darwin-arm64.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.9.0/astria-go-v0.9.0-darwin-arm64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
```

```bash [X86_64 Mac]
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.7.1/astria-go-v0.7.1-darwin-amd64.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.9.0/astria-go-v0.9.0-darwin-amd64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
```

```bash [x86_64 Linux]
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.7.1/astria-go-v0.7.1-linux-amd64.tar.gz > astria-cli.tar.gz
curl -L https://github.com/astriaorg/astria-cli-go/releases/download/v0.9.0/astria-go-v0.9.0-linux-amd64.tar.gz > astria-cli.tar.gz
tar -xvzf astria-cli.tar.gz
mv astria-go /usr/local/bin/
astria-go version
Expand Down
8 changes: 0 additions & 8 deletions docs/components/_deployment-instructions-redirect.md

This file was deleted.

5 changes: 3 additions & 2 deletions docs/components/_remote-endpoints.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
The endpoints for the remote sequencer are:

| Name | Endpoint |
|---|---|
| EVM JSON RPC | [https://rpc.evm.dusk-7.devnet.astria.org](https://rpc.evm.dusk-7.devnet.astria.org) |
| EVM Block Explorer | [https://explorer.evm.dusk-7.devnet.astria.org](https://explorer.evm.dusk-7.devnet.astria.org) |
| EVM Faucet | [https://faucet.evm.dusk-7.devnet.astria.org](https://faucet.evm.dusk-7.devnet.astria.org) |
| Sequencer RPC | [https://rpc.sequencer.dusk-7.devnet.astria.org](https://rpc.sequencer.dusk-7.devnet.astria.org) |
| Sequencer gRPC | [https://grpc.sequencer.dusk-7.devnet.astria.org](https://grpc.sequencer.dusk-7.devnet.astria.org) |
| Sequencer Faucet | [https://faucet.sequencer.dusk-7.devnet.astria.org](https://faucet.sequencer.dusk-7.devnet.astria.org) |
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ For example, the default Astria Dusk dev net configuration is as follows:

```toml
[dusk]
sequencer_chain_id = 'astria-dusk-5'
sequencer_grpc = 'https://grpc.sequencer.dusk-5.devnet.astria.org/'
sequencer_rpc = 'https://rpc.sequencer.dusk-5.devnet.astria.org/'
sequencer_chain_id = 'astria-dusk-7'
sequencer_grpc = 'https://grpc.sequencer.dusk-7.devnet.astria.org/'
sequencer_rpc = 'https://rpc.sequencer.dusk-7.devnet.astria.org/'
rollup_name = ''
default_denom = 'nria'
```
Expand Down
2 changes: 1 addition & 1 deletion docs/developer/references/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
| Network | Sequencer RPC |
|---|---|
| local | <http://127.0.0.1:26657> |
| Dusk | <https://rpc.sequencer.dusk-5.devnet.astria.org/> |
| Dusk | <https://rpc.sequencer.dusk-7.devnet.astria.org/> |
101 changes: 0 additions & 101 deletions docs/dusk-faq/1-information.md

This file was deleted.

24 changes: 24 additions & 0 deletions docs/dusk-faq/faq.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# FAQ and Debugging

## Endpoints

<!--@include: ./../components/_remote-endpoints.md-->

## Software Versions

The latest Devnet (dusk-7) runs the following software versions:

- [conductor v0.16.0](https://github.com/astriaorg/astria/releases/tag/conductor-v0.16.0)
- [composer v0.7.0](https://github.com/astriaorg/astria/releases/tag/composer-v0.7.0)
- [sequencer-relayer v0.14.0](https://github.com/astriaorg/astria/releases/tag/sequencer-relayer-v0.14.0)
- [sequencer v0.13.0](https://github.com/astriaorg/astria/releases/tag/sequencer-v0.13.0)
- [Geth EVM v0.5.2](https://github.com/astriaorg/go-ethereum/releases/tag/geth1.13-v0.5.2)
- [CometBFT v0.38.6](https://github.com/cometbft/cometbft/releases/tag/v0.38.6)

## Install the latest Astria cli

<!--@include: ../components/_astria-go-cli-install.md-->

## `astria-go` CLI Commands

[View all the `astria-go` cli commands.](../developer/references/astria-go/cli-commands.md)

0 comments on commit 9ad98db

Please sign in to comment.