Skip to content

docs: upgrade to arabica-9 #857

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2023
Merged
Show file tree
Hide file tree
Changes from all 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: 4 additions & 4 deletions docs/developers/keplr.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import TabItem from '@theme/TabItem';
export const ARABICA_PARAMS = {
chainId: `${constants.arabicaChainId}`,
chainName: 'Arabica Devnet',
rpc: 'https://consensus-full-arabica-8.celestia-arabica.com/',
rest: 'https://api-arabica-8.consensus.celestia-arabica.com/'
rpc: 'https://consensus-full-arabica-9.celestia-arabica.com/',
rest: 'https://api-arabica-9.consensus.celestia-arabica.com/'
}

export const MOCHA_PARAMS = {
Expand Down Expand Up @@ -217,8 +217,8 @@ import '@site/src/components/AddNetworkKeplr'<br/>
export const ARABICA_PARAMS = {`{
chainId: '${constants.arabicaChainId}',
chainName: 'Arabica Devnet',
rpc: 'https://consensus-full-arabica-8.celestia-arabica.com/',
rest: 'https://api-arabica-8.consensus.celestia-arabica.com/'
rpc: 'https://consensus-full-arabica-9.celestia-arabica.com/',
rest: 'https://api-arabica-9.consensus.celestia-arabica.com/'
}`}<br/>
<br/>
{`<AddNetworkKeplr params={ARABICA_PARAMS}/>`}
Expand Down
4 changes: 2 additions & 2 deletions docs/developers/node-tutorial.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ which ports are required to be open on your machine.
<TabItem value="arabica" label="Arabica 🏗️">

```sh
celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
celestia light start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
```

:::tip
Expand Down Expand Up @@ -1498,7 +1498,7 @@ It will output something like this:
“block”: “11”,
“app”: “1”
},
“chain_id”: “arabica-8”,
“chain_id”: “arabica-9”,
“height”: “1”,
“time”: “2023-05-30T15:06:21.9265Z”,
“last_block_id”: {
Expand Down
14 changes: 7 additions & 7 deletions docs/nodes/arabica-devnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Celestia network. The default port is 26657.

Below is a list of RPC endpoints you can use to connect to Arabica Devnet:

* `consensus-full-arabica-8.celestia-arabica.com`
* `consensus-full-arabica-9.celestia-arabica.com`

## API endpoints

Expand All @@ -71,8 +71,8 @@ as REST endpoints. This allows for communication with the node using REST
calls, which can be useful if the client does not support gRPC or HTTP2.
The default port is 1317.

* [https://api-arabica-8.consensus.celestia-arabica.com/](https://api-arabica-8.consensus.celestia-arabica.com/)
* [https://api-2-arabica-8.consensus.celestia-arabica.com/](https://api-2-arabica-8.consensus.celestia-arabica.com/)
* [https://api-arabica-9.consensus.celestia-arabica.com/](https://api-arabica-9.consensus.celestia-arabica.com/)
* [https://api-2-arabica-9.consensus.celestia-arabica.com/](https://api-2-arabica-9.consensus.celestia-arabica.com/)

## gRPC endpoints

Expand All @@ -81,8 +81,8 @@ gRPC, a modern open-source and high-performance RPC framework. The default
port is 9090. In the Cosmos SDK, gRPC is used to define state queries and
broadcast transactions.

* `grpc-arabica-8.consensus.celestia-arabica.com:443`
* `grpc-2-arabica-8.consensus.celestia-arabica.com:443`
* `grpc-arabica-9.consensus.celestia-arabica.com:443`
* `grpc-2-arabica-9.consensus.celestia-arabica.com:443`

## Arabica devnet faucet

Expand All @@ -106,13 +106,13 @@ Where `<CELESTIA-ADDRESS>` is a `celestia1******` generated address.

### Web

The web faucet is available at [https://faucet-arabica-8.celestia-arabica.com/](https://faucet-arabica-8.celestia-arabica.com/).
The web faucet is available at [https://faucet-arabica-9.celestia-arabica.com/](https://faucet-arabica-9.celestia-arabica.com/).

## Explorers

There is an explorer you can use for Arabica:

* [https://explorer-arabica-8.celestia-arabica.com/arabica-8](https://explorer-arabica-8.celestia-arabica.com/arabica-8)
* [https://explorer-arabica-9.celestia-arabica.com/arabica-9](https://explorer-arabica-9.celestia-arabica.com/arabica-9)

## Network upgrades

Expand Down
4 changes: 2 additions & 2 deletions docs/nodes/bridge-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ If you need a list of RPC endpoints to connect to, you can check from the list [
Here is an example of initializing the bridge node:

```sh
celestia bridge init --core.ip consensus-full-arabica-8.celestia-arabica.com --p2p.network arabica
celestia bridge init --core.ip consensus-full-arabica-9.celestia-arabica.com --p2p.network arabica
```

</TabItem>
Expand Down Expand Up @@ -291,7 +291,7 @@ If you need a list of RPC endpoints to connect to, you can check from the list [
Here is an example of starting the bridge node:

```sh
celestia bridge start --core.ip consensus-full-arabica-8.celestia-arabica.com --p2p.network arabica
celestia bridge start --core.ip consensus-full-arabica-9.celestia-arabica.com --p2p.network arabica
```

You can create your key for your node by following the `cel-key` instructions [here](../../developers/celestia-node-key)
Expand Down
6 changes: 3 additions & 3 deletions docs/nodes/docker-images.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ you can refer to the
Run the image from the command line:

<pre><code>
docker run -e NODE_TYPE=light -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
docker run -e NODE_TYPE=light -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia light start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
</code></pre>

:::tip
Expand Down Expand Up @@ -171,7 +171,7 @@ you can refer to the
Run the image from the command line:

<pre><code>
docker run -e NODE_TYPE=bridge -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia bridge start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
docker run -e NODE_TYPE=bridge -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia bridge start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
</code></pre>

:::tip
Expand Down Expand Up @@ -246,7 +246,7 @@ you can refer to the
Run the image from the command line:

<pre><code>
docker run -e NODE_TYPE=full -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia full start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
docker run -e NODE_TYPE=full -e P2P_NETWORK=arabica ghcr.io/celestiaorg/celestia-node:{arabicaVersions['node-latest-tag']} celestia full start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
</code></pre>

:::tip
Expand Down
2 changes: 1 addition & 1 deletion docs/nodes/light-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ If you need a list of RPC endpoints to connect to, you can check from the list [
For example, your command might look something like this:

```sh
celestia light start --core.ip consensus-full-arabica-8.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
celestia light start --core.ip consensus-full-arabica-9.celestia-arabica.com --gateway.deprecated-endpoints --gateway --gateway.addr 127.0.0.1 --gateway.port 26659 --p2p.network arabica
```

</TabItem>
Expand Down
2 changes: 1 addition & 1 deletion versions/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const constants = Object.freeze({
golangApp: "1.19.1",
golangCore: "1.19.1",
golang: "1.19.1",
arabicaChainId: "arabica-8",
arabicaChainId: "arabica-9",
bsrChainId: "blockspacerace-0",
mochaChainId: "mocha",
arabicaRollkitVersion: "v0.8.2-rc0",
Expand Down