Skip to content

Commit 399dfc7

Browse files
JuArceMauroToscano
andauthored
pull fixes from testnet (#1977)
Co-authored-by: Mauro Toscano <[email protected]>
2 parents 13932a0 + d6c5ffd commit 399dfc7

File tree

9 files changed

+81
-32
lines changed

9 files changed

+81
-32
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ CONFIG_FILE?=config-files/config.yaml
1919
export OPERATOR_ADDRESS ?= $(shell yq -r '.operator.address' $(CONFIG_FILE))
2020
AGG_CONFIG_FILE?=config-files/config-aggregator.yaml
2121

22-
OPERATOR_VERSION=v0.16.0
22+
OPERATOR_VERSION=v0.16.1
2323
EIGEN_SDK_GO_VERSION_DEVNET=v0.2.0-beta.1
2424
EIGEN_SDK_GO_VERSION_TESTNET=v0.2.0-beta.1
2525
EIGEN_SDK_GO_VERSION_MAINNET=v0.2.0-beta.1

batcher/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.16.0" }
15+
aligned-sdk = { git = "https://github.com/yetanotherco/aligned_layer", tag="v0.16.1" }
1616
```
1717

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

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.16.0](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.16.0)
4+
> Aligned Operator [v0.16.1](https://github.com/yetanotherco/aligned_layer/releases/tag/v0.16.1)
55
66
> **IMPORTANT:**
77
> You must be [whitelisted](https://docs.google.com/forms/d/e/1FAIpQLSdH9sgfTz4v33lAvwj6BvYJGAeIshQia3FXz36PFfF-WQAWEQ/viewform) to become an Aligned operator.
@@ -30,7 +30,7 @@ The list of supported strategies can be found [here](../3_guides/7_contract_addr
3030
To start with, clone the Aligned repository and move inside it
3131

3232
```bash
33-
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.16.0
33+
git clone https://github.com/yetanotherco/aligned_layer.git --branch v0.16.1
3434
cd aligned_layer
3535
```
3636

examples/zkquiz/quiz/program/Cargo.lock

Lines changed: 72 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

explorer/.env.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ BATCH_TTL_MINUTES=5
3333
SCHEDULED_BATCH_INTERVAL_MINUTES=10
3434

3535
# Latest aligned release that operators should be running
36-
LATEST_RELEASE=v0.16.0
36+
LATEST_RELEASE=v0.16.1

explorer/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ BATCH_TTL_MINUTES=5
3131
SCHEDULED_BATCH_INTERVAL_MINUTES=360
3232

3333
# Latest aligned release that operators should be running
34-
LATEST_RELEASE=v0.16.0
34+
LATEST_RELEASE=v0.16.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "nightly-2024-04-17"
2+
channel = "stable"
33
components = ["llvm-tools", "rustc-dev", "rustfmt", "rust-src"]
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
[toolchain]
2+
channel = "stable"
23
components = ["llvm-tools", "rustc-dev", "rustfmt", "rust-src"]

0 commit comments

Comments
 (0)