Skip to content
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

fix(docs): version in RPC guide #526

Merged
merged 3 commits into from
Jan 21, 2025
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
36 changes: 18 additions & 18 deletions docs/run-node/1-rpc-node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Clone the repository and run the `build.sh` script:
<TabItem value="songbird" label="Songbird Canary-Network">

```bash
git clone --branch v1.9.0.1 https://github.com/flare-foundation/go-flare.git
git clone --branch v1.9.1 https://github.com/flare-foundation/go-flare.git
cd go-flare/avalanchego
chmod +x scripts/build.sh
./scripts/build.sh
Expand All @@ -161,7 +161,7 @@ Clone the repository and run the `build.sh` script:
<TabItem value="coston" label="Songbird Testnet Coston">

```bash
git clone --branch v1.9.0.1 https://github.com/flare-foundation/go-flare.git
git clone --branch v1.9.1 https://github.com/flare-foundation/go-flare.git
cd go-flare/avalanchego
chmod +x scripts/build.sh
./scripts/build.sh
Expand Down Expand Up @@ -544,13 +544,13 @@ The node can be run using:
<Tabs groupId="network" block>
<TabItem value="flare" label="Flare Mainnet" default>

Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.0.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.
Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.

Download and start the container:

```bash
docker pull flarefoundation/go-flare:v1.9.0.1
docker run -d --name flare-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="flare" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://flare-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.0.1
docker pull flarefoundation/go-flare:v1.9.1
docker run -d --name flare-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="flare" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://flare-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.1
```

Confirm your container is running and inspect that logs are printing:
Expand All @@ -563,13 +563,13 @@ The node can be run using:
</TabItem>
<TabItem value="coston2" label="Flare Testnet Coston2">

Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.0.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.
Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.

Download and start the container:

```bash
docker pull flarefoundation/go-flare:v1.9.0.1
docker run -d --name coston2-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="costwo" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://coston2-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.0.1
docker pull flarefoundation/go-flare:v1.9.1
docker run -d --name coston2-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="costwo" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://coston2-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.1
```

Confirm your container is running and inspect that logs are printing:
Expand All @@ -582,13 +582,13 @@ The node can be run using:
</TabItem>
<TabItem value="songbird" label="Songbird Canary-Network">

Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.0.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.
Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.

Download and start the container:

```bash
docker pull flarefoundation/go-flare:v1.9.0.1
docker run -d --name songbird-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="songbird" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://songbird-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.0.1
docker pull flarefoundation/go-flare:v1.9.1
docker run -d --name songbird-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="songbird" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://songbird-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.1
```

Confirm your container is running and inspect that logs are printing:
Expand All @@ -601,13 +601,13 @@ The node can be run using:
</TabItem>
<TabItem value="coston" label="Songbird Testnet Coston">

Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.0.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.
Use the Docker image at [go-flare](https://hub.docker.com/layers/flarefoundation/go-flare/v1.9.1/images/sha256-ab193ed8862bf9ba82b309e00e892a81df1480f63c5b91981a2b4eb9c4847334?context=explore). The **Overview** tab in the repository linked explains the configurable parameters.

Download and start the container:

```bash
docker pull flarefoundation/go-flare:v1.9.0.1
docker run -d --name coston-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="coston" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://coston-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.0.1
docker pull flarefoundation/go-flare:v1.9.1
docker run -d --name coston-observer -e AUTOCONFIGURE_BOOTSTRAP="1" -e NETWORK_ID="coston" -e AUTOCONFIGURE_PUBLIC_IP="1" -e AUTOCONFIGURE_BOOTSTRAP_ENDPOINT="https://coston-bootstrap.flare.network/ext/info" -v /mnt/db:/app/db -v /opt/flare/conf:/app/conf/C -v /opt/flare/logs:/app/logs -p 0.0.0.0:9650:9650 -p 0.0.0.0:9651:9651 flarefoundation/go-flare:v1.9.1
```

Confirm your container is running and inspect that logs are printing:
Expand Down Expand Up @@ -712,7 +712,7 @@ Create the `docker-compose.yaml` file:
services:
observer:
container_name: flare-observer
image: flarefoundation/go-flare:v1.9.0.1
image: flarefoundation/go-flare:v1.9.1
restart: on-failure
environment:
- AUTOCONFIGURE_BOOTSTRAP=1
Expand All @@ -737,7 +737,7 @@ Create the `docker-compose.yaml` file:
services:
observer:
container_name: coston2-observer
image: flarefoundation/go-flare:v1.9.0.1
image: flarefoundation/go-flare:v1.9.1
restart: on-failure
environment:
- AUTOCONFIGURE_BOOTSTRAP=1
Expand All @@ -762,7 +762,7 @@ Create the `docker-compose.yaml` file:
services:
observer:
container_name: songbird-observer
image: flarefoundation/go-flare:v1.9.0.1
image: flarefoundation/go-flare:v1.9.1
restart: on-failure
environment:
- AUTOCONFIGURE_BOOTSTRAP=1
Expand All @@ -787,7 +787,7 @@ Create the `docker-compose.yaml` file:
services:
observer:
container_name: coston-observer
image: flarefoundation/go-flare:v1.9.0.1
image: flarefoundation/go-flare:v1.9.1
restart: on-failure
environment:
- AUTOCONFIGURE_BOOTSTRAP=1
Expand Down
2 changes: 1 addition & 1 deletion docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const config: Config = {
},
sitemap: {
lastmod: "date",
ignorePatterns: ["/tags/**"],
ignorePatterns: ["/tags/**", "/**/*.pdf"],
},
} satisfies Preset.Options,
],
Expand Down
Loading