Skip to content

Commit 403b363

Browse files
JuArceentropidelic
andauthored
docs: update to v0.10.0 (#1301)
Co-authored-by: Mariano A. Nicolini <[email protected]>
1 parent 468fed9 commit 403b363

File tree

6 files changed

+63
-5
lines changed

6 files changed

+63
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ OS := $(shell uname -s)
66
CONFIG_FILE?=config-files/config.yaml
77
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
88

9-
OPERATOR_VERSION=v0.9.2
9+
OPERATOR_VERSION=v0.10.0
1010

1111
ifeq ($(OS),Linux)
1212
BUILD_ALL_FFI = $(MAKE) build_all_ffi_linux

config-files/config-operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ bls:
2222
## Operator Configurations
2323
operator:
2424
aggregator_rpc_server_ip_port_address: aggregator.alignedlayer.com:8090
25-
operator_tracker_ip_port_address: https://holesky.tracker.alignedlayer.com
25+
operator_tracker_ip_port_address: https://holesky.telemetry.alignedlayer.com
2626
address: '<operator_address>'
2727
earnings_receiver_address: '<earnings_receiver_address>' #Can be the same as the operator.
2828
delegation_approver_address: '0x0000000000000000000000000000000000000000'

docs/3_guides/1_SDK_how_to.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To use this SDK in your Rust project, add the following to your `Cargo.toml`:
1212

1313
```toml
1414
[dependencies]
15-
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.9.2" }
15+
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.10.0" }
1616
```
1717

1818
To find the latest release tag go to [releases](https://github.com/yetanotherco/aligned_layer/releases) and copy the

docs/SUMMARY.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
* [Operator FAQ](operator_guides/1_operator_FAQ.md)
4141
* [Troubleshooting](operator_guides/2_troubleshooting.md)
4242
* Upgrading Guides
43+
* [Upgrading to v0.10.0](operator_guides/upgrading_guides/v0_10_0.md)
4344
* [Upgrading to v0.9.2](operator_guides/upgrading_guides/v0_9_2.md)
4445

4546
## Useful links

docs/operator_guides/0_running_an_operator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Register as an Aligned operator in testnet
22

33
> **CURRENT VERSION:**
4-
> Aligned Operator [v0.9.2](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.9.2)
4+
> Aligned Operator [v0.10.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.10.0)
55
66
> **IMPORTANT:**
77
> You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator.
@@ -26,7 +26,7 @@ Minimum hardware requirements:
2626
To start with, clone the Aligned repository and move inside it
2727

2828
```bash
29-
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.9.2
29+
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.10.0
3030
cd aligned_layer
3131
```
3232

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# Upgrading to v0.10.0
2+
3+
This guide will walk you through the process of upgrading your Aligned Operator to v0.10.0.
4+
5+
## Changes
6+
7+
### New Features
8+
9+
* feat(telemetry): Add url data to operator updates on telemetry service in [#1136](https://github.com/yetanotherco/aligned_layer/pull/1136)
10+
* fix: add panic catch on operator calling FFI in [#1196](https://github.com/yetanotherco/aligned_layer/pull/1196)
11+
12+
13+
## How to upgrade
14+
15+
### Step 1 - Update the configuration for your specific Operator
16+
17+
This version requires update the operator configuration file changing the following field:
18+
19+
```yaml
20+
## Operator Configurations
21+
operator:
22+
operator_tracker_ip_port_address: https://holesky.telemetry.alignedlayer.com
23+
```
24+
25+
{% hint style="info" %}
26+
27+
Previous URL of operator_tracker_ip_port_address. Now it sends data to a telemetry server with better tracking and error handling
28+
29+
{% endhint %}
30+
31+
### Step 2 - Update the Operator
32+
33+
Inside the Aligned repository, run:
34+
35+
```bash
36+
make update_operator
37+
```
38+
39+
This will recompile the binaries. You can then proceed to restart the operator.
40+
41+
### Step 3 - Check the Operator Version
42+
43+
To see the operator version, run:
44+
45+
```bash
46+
./operator/build/aligned-operator --version
47+
```
48+
49+
This will display the current version of the operator binary.
50+
51+
```
52+
Aligned Layer Node Operator version v0.10.0
53+
```
54+
55+
### Step 4 - Restart the Operator
56+
57+
Restart the operator based on your system config

0 commit comments

Comments
 (0)