Skip to content
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
2 changes: 1 addition & 1 deletion charts/abstract-node/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords:
home: https://abs.xyz
sources:
- https://github.com/matter-labs/zksync-era
appVersion: "29.1.0"
appVersion: "29.1.1"

dependencies:
- name: common
Expand Down
2 changes: 1 addition & 1 deletion charts/abstract-node/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ image:
registry: docker.io
repository: matterlabs/external-node
pullPolicy: IfNotPresent
tag: "v29.1.0"
tag: "v29.1.1"

# This is for the secretes for pulling an image from a private repository more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
imagePullSecrets: []
Expand Down
2 changes: 1 addition & 1 deletion docker/.env.mainnet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Don't change these values unless you know what you're doing
NETWORK=mainnet
EN_VERSION=v29.1.0
EN_VERSION=v29.1.1
EN_MAIN_NODE_URL=https://api.mainnet.abs.xyz
EN_L1_CHAIN_ID=1
EN_L2_CHAIN_ID=2741
Expand Down
2 changes: 1 addition & 1 deletion docker/.env.testnet
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Don't change these values unless you know what you're doing
NETWORK=testnet
EN_VERSION=v29.1.0
EN_VERSION=v29.1.1
EN_MAIN_NODE_URL=https://api.testnet.abs.xyz
EN_L1_CHAIN_ID=11155111
EN_L2_CHAIN_ID=11124
Expand Down
4 changes: 2 additions & 2 deletions docker/external-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ services:
# Generation of consensus secrets.
# The secrets are generated iff the secrets file doesn't already exist.
generate-secrets:
image: "matterlabs/external-node:${EN_VERSION:-v29.1.0}"
image: "matterlabs/external-node:${EN_VERSION:-v29.1.1}"
entrypoint:
[
"/configs/generate_secrets.sh",
Expand All @@ -61,7 +61,7 @@ services:
volumes:
- ./configs:/configs
external-node:
image: "matterlabs/external-node:${EN_VERSION:-v29.1.0}"
image: "matterlabs/external-node:${EN_VERSION:-v29.1.1}"
entrypoint: ["/usr/bin/entrypoint.sh"]
restart: always
depends_on:
Expand Down